@openui5/ts-types-esm 1.92.0 → 1.93.3

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.92.0
1
+ // For Library Version: 1.93.3
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -302,6 +302,31 @@ declare module "sap/ui/webc/fiori/Bar" {
302
302
  mSettings?: $BarSettings
303
303
  );
304
304
 
305
+ /**
306
+ * Creates a new subclass of class sap.ui.webc.fiori.Bar with name `sClassName` and enriches it with the
307
+ * information contained in `oClassInfo`.
308
+ *
309
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
310
+ */
311
+ static extend<T extends Record<string, unknown>>(
312
+ /**
313
+ * Name of the class being created
314
+ */
315
+ sClassName: string,
316
+ /**
317
+ * Object literal with information about the class
318
+ */
319
+ oClassInfo?: sap.ClassInfo<T, Bar>,
320
+ /**
321
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
322
+ * used by this class
323
+ */
324
+ FNMetaImpl?: Function
325
+ ): Function;
326
+ /**
327
+ * Returns a metadata object for class sap.ui.webc.fiori.Bar.
328
+ */
329
+ static getMetadata(): WebComponentMetadata;
305
330
  /**
306
331
  * Adds some endContent to the aggregation {@link #getEndContent endContent}.
307
332
  */
@@ -341,27 +366,6 @@ declare module "sap/ui/webc/fiori/Bar" {
341
366
  * Destroys all the startContent in the aggregation {@link #getStartContent startContent}.
342
367
  */
343
368
  destroyStartContent(): this;
344
- /**
345
- * Creates a new subclass of class sap.ui.webc.fiori.Bar with name `sClassName` and enriches it with the
346
- * information contained in `oClassInfo`.
347
- *
348
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
349
- */
350
- static extend<T extends Record<string, unknown>>(
351
- /**
352
- * Name of the class being created
353
- */
354
- sClassName: string,
355
- /**
356
- * Object literal with information about the class
357
- */
358
- oClassInfo?: sap.ClassInfo<T, Bar>,
359
- /**
360
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
361
- * used by this class
362
- */
363
- FNMetaImpl?: Function
364
- ): Function;
365
369
  /**
366
370
  * Gets current value of property {@link #getDesign design}.
367
371
  *
@@ -384,10 +388,6 @@ declare module "sap/ui/webc/fiori/Bar" {
384
388
  * Defines the content at the end of the bar
385
389
  */
386
390
  getEndContent(): Control[];
387
- /**
388
- * Returns a metadata object for class sap.ui.webc.fiori.Bar.
389
- */
390
- static getMetadata(): WebComponentMetadata;
391
391
  /**
392
392
  * Gets content of aggregation {@link #getMiddleContent middleContent}.
393
393
  *
@@ -680,6 +680,31 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
680
680
  mSettings?: $FlexibleColumnLayoutSettings
681
681
  );
682
682
 
683
+ /**
684
+ * Creates a new subclass of class sap.ui.webc.fiori.FlexibleColumnLayout with name `sClassName` and enriches
685
+ * it with the information contained in `oClassInfo`.
686
+ *
687
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
688
+ */
689
+ static extend<T extends Record<string, unknown>>(
690
+ /**
691
+ * Name of the class being created
692
+ */
693
+ sClassName: string,
694
+ /**
695
+ * Object literal with information about the class
696
+ */
697
+ oClassInfo?: sap.ClassInfo<T, FlexibleColumnLayout>,
698
+ /**
699
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
700
+ * used by this class
701
+ */
702
+ FNMetaImpl?: Function
703
+ ): Function;
704
+ /**
705
+ * Returns a metadata object for class sap.ui.webc.fiori.FlexibleColumnLayout.
706
+ */
707
+ static getMetadata(): WebComponentMetadata;
683
708
  /**
684
709
  * Attaches event handler `fnFunction` to the {@link #event:layoutChange layoutChange} event of this `sap.ui.webc.fiori.FlexibleColumnLayout`.
685
710
  *
@@ -752,27 +777,6 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
752
777
  */
753
778
  oListener?: object
754
779
  ): this;
755
- /**
756
- * Creates a new subclass of class sap.ui.webc.fiori.FlexibleColumnLayout with name `sClassName` and enriches
757
- * it with the information contained in `oClassInfo`.
758
- *
759
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
760
- */
761
- static extend<T extends Record<string, unknown>>(
762
- /**
763
- * Name of the class being created
764
- */
765
- sClassName: string,
766
- /**
767
- * Object literal with information about the class
768
- */
769
- oClassInfo?: sap.ClassInfo<T, FlexibleColumnLayout>,
770
- /**
771
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
772
- * used by this class
773
- */
774
- FNMetaImpl?: Function
775
- ): Function;
776
780
  /**
777
781
  * Fires event {@link #event:layoutChange layoutChange} to attached listeners.
778
782
  */
@@ -824,6 +828,8 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
824
828
  * right - `endArrowLeftText`: the text that the second arrow (between the `mid` and `end` columns) will
825
829
  * have when pointing to the left - `endArrowRightText`: the text that the second arrow (between the `mid`
826
830
  * and `end` columns) will have when pointing to the right
831
+ *
832
+ * Default value is `{}`.
827
833
  */
828
834
  getAccessibilityTexts(): object;
829
835
  /**
@@ -882,10 +888,6 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
882
888
  * Default value is `OneColumn`.
883
889
  */
884
890
  getLayout(): FCLLayout | keyof typeof FCLLayout;
885
- /**
886
- * Returns a metadata object for class sap.ui.webc.fiori.FlexibleColumnLayout.
887
- */
888
- static getMetadata(): WebComponentMetadata;
889
891
  /**
890
892
  * Gets content of aggregation {@link #getMidColumn midColumn}.
891
893
  *
@@ -931,12 +933,14 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
931
933
  * and `end` columns) will have when pointing to the right
932
934
  *
933
935
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
936
+ *
937
+ * Default value is `{}`.
934
938
  */
935
939
  setAccessibilityTexts(
936
940
  /**
937
941
  * New value for property `accessibilityTexts`
938
942
  */
939
- oAccessibilityTexts: object
943
+ oAccessibilityTexts?: object
940
944
  ): this;
941
945
  /**
942
946
  * Sets the aggregated {@link #getEndColumn endColumn}.
@@ -1111,7 +1115,7 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
1111
1115
  * Fired when the layout changes via user interaction by clicking the arrows or by changing the component
1112
1116
  * size due to resizing.
1113
1117
  */
1114
- layoutChange?: Function;
1118
+ layoutChange?: (oEvent: Event) => void;
1115
1119
  }
1116
1120
  }
1117
1121
 
@@ -1192,6 +1196,10 @@ declare module "sap/ui/webc/fiori/NotificationAction" {
1192
1196
  */
1193
1197
  FNMetaImpl?: Function
1194
1198
  ): Function;
1199
+ /**
1200
+ * Returns a metadata object for class sap.ui.webc.fiori.NotificationAction.
1201
+ */
1202
+ static getMetadata(): WebComponentMetadata;
1195
1203
  /**
1196
1204
  * Gets current value of property {@link #getDesign design}.
1197
1205
  *
@@ -1230,10 +1238,6 @@ declare module "sap/ui/webc/fiori/NotificationAction" {
1230
1238
  * Default value is `empty string`.
1231
1239
  */
1232
1240
  getIcon(): string;
1233
- /**
1234
- * Returns a metadata object for class sap.ui.webc.fiori.NotificationAction.
1235
- */
1236
- static getMetadata(): WebComponentMetadata;
1237
1241
  /**
1238
1242
  * Gets current value of property {@link #getText text}.
1239
1243
  *
@@ -1436,6 +1440,31 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
1436
1440
  mSettings?: $NotificationListGroupItemSettings
1437
1441
  );
1438
1442
 
1443
+ /**
1444
+ * Creates a new subclass of class sap.ui.webc.fiori.NotificationListGroupItem with name `sClassName` and
1445
+ * enriches it with the information contained in `oClassInfo`.
1446
+ *
1447
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
1448
+ */
1449
+ static extend<T extends Record<string, unknown>>(
1450
+ /**
1451
+ * Name of the class being created
1452
+ */
1453
+ sClassName: string,
1454
+ /**
1455
+ * Object literal with information about the class
1456
+ */
1457
+ oClassInfo?: sap.ClassInfo<T, NotificationListGroupItem>,
1458
+ /**
1459
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1460
+ * used by this class
1461
+ */
1462
+ FNMetaImpl?: Function
1463
+ ): Function;
1464
+ /**
1465
+ * Returns a metadata object for class sap.ui.webc.fiori.NotificationListGroupItem.
1466
+ */
1467
+ static getMetadata(): WebComponentMetadata;
1439
1468
  /**
1440
1469
  * Adds some action to the aggregation {@link #getActions actions}.
1441
1470
  */
@@ -1578,27 +1607,6 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
1578
1607
  */
1579
1608
  oListener?: object
1580
1609
  ): this;
1581
- /**
1582
- * Creates a new subclass of class sap.ui.webc.fiori.NotificationListGroupItem with name `sClassName` and
1583
- * enriches it with the information contained in `oClassInfo`.
1584
- *
1585
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
1586
- */
1587
- static extend<T extends Record<string, unknown>>(
1588
- /**
1589
- * Name of the class being created
1590
- */
1591
- sClassName: string,
1592
- /**
1593
- * Object literal with information about the class
1594
- */
1595
- oClassInfo?: sap.ClassInfo<T, NotificationListGroupItem>,
1596
- /**
1597
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1598
- * used by this class
1599
- */
1600
- FNMetaImpl?: Function
1601
- ): Function;
1602
1610
  /**
1603
1611
  * Fires event {@link #event:close close} to attached listeners.
1604
1612
  */
@@ -1656,10 +1664,6 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
1656
1664
  * items.
1657
1665
  */
1658
1666
  getItems(): INotificationListItem[];
1659
- /**
1660
- * Returns a metadata object for class sap.ui.webc.fiori.NotificationListGroupItem.
1661
- */
1662
- static getMetadata(): WebComponentMetadata;
1663
1667
  /**
1664
1668
  * Gets current value of property {@link #getPriority priority}.
1665
1669
  *
@@ -1956,12 +1960,12 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
1956
1960
  /**
1957
1961
  * Fired when the `Close` button is pressed.
1958
1962
  */
1959
- close?: Function;
1963
+ close?: (oEvent: Event) => void;
1960
1964
 
1961
1965
  /**
1962
1966
  * Fired when the `sap.ui.webc.fiori.NotificationListGroupItem` is expanded/collapsed by user interaction.
1963
1967
  */
1964
- toggle?: Function;
1968
+ toggle?: (oEvent: Event) => void;
1965
1969
  }
1966
1970
  }
1967
1971
 
@@ -2052,6 +2056,31 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
2052
2056
  mSettings?: $NotificationListItemSettings
2053
2057
  );
2054
2058
 
2059
+ /**
2060
+ * Creates a new subclass of class sap.ui.webc.fiori.NotificationListItem with name `sClassName` and enriches
2061
+ * it with the information contained in `oClassInfo`.
2062
+ *
2063
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
2064
+ */
2065
+ static extend<T extends Record<string, unknown>>(
2066
+ /**
2067
+ * Name of the class being created
2068
+ */
2069
+ sClassName: string,
2070
+ /**
2071
+ * Object literal with information about the class
2072
+ */
2073
+ oClassInfo?: sap.ClassInfo<T, NotificationListItem>,
2074
+ /**
2075
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2076
+ * used by this class
2077
+ */
2078
+ FNMetaImpl?: Function
2079
+ ): Function;
2080
+ /**
2081
+ * Returns a metadata object for class sap.ui.webc.fiori.NotificationListItem.
2082
+ */
2083
+ static getMetadata(): WebComponentMetadata;
2055
2084
  /**
2056
2085
  * Adds some action to the aggregation {@link #getActions actions}.
2057
2086
  */
@@ -2140,27 +2169,6 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
2140
2169
  */
2141
2170
  oListener?: object
2142
2171
  ): this;
2143
- /**
2144
- * Creates a new subclass of class sap.ui.webc.fiori.NotificationListItem with name `sClassName` and enriches
2145
- * it with the information contained in `oClassInfo`.
2146
- *
2147
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
2148
- */
2149
- static extend<T extends Record<string, unknown>>(
2150
- /**
2151
- * Name of the class being created
2152
- */
2153
- sClassName: string,
2154
- /**
2155
- * Object literal with information about the class
2156
- */
2157
- oClassInfo?: sap.ClassInfo<T, NotificationListItem>,
2158
- /**
2159
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2160
- * used by this class
2161
- */
2162
- FNMetaImpl?: Function
2163
- ): Function;
2164
2172
  /**
2165
2173
  * Fires event {@link #event:close close} to attached listeners.
2166
2174
  */
@@ -2221,10 +2229,6 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
2221
2229
  * Default value is `empty string`.
2222
2230
  */
2223
2231
  getHeading(): string;
2224
- /**
2225
- * Returns a metadata object for class sap.ui.webc.fiori.NotificationListItem.
2226
- */
2227
- static getMetadata(): WebComponentMetadata;
2228
2232
  /**
2229
2233
  * Gets current value of property {@link #getPriority priority}.
2230
2234
  *
@@ -2549,7 +2553,7 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
2549
2553
  /**
2550
2554
  * Fired when the `Close` button is pressed.
2551
2555
  */
2552
- close?: Function;
2556
+ close?: (oEvent: Event) => void;
2553
2557
  }
2554
2558
  }
2555
2559
 
@@ -2622,6 +2626,31 @@ declare module "sap/ui/webc/fiori/Page" {
2622
2626
  mSettings?: $PageSettings
2623
2627
  );
2624
2628
 
2629
+ /**
2630
+ * Creates a new subclass of class sap.ui.webc.fiori.Page with name `sClassName` and enriches it with the
2631
+ * information contained in `oClassInfo`.
2632
+ *
2633
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
2634
+ */
2635
+ static extend<T extends Record<string, unknown>>(
2636
+ /**
2637
+ * Name of the class being created
2638
+ */
2639
+ sClassName: string,
2640
+ /**
2641
+ * Object literal with information about the class
2642
+ */
2643
+ oClassInfo?: sap.ClassInfo<T, Page>,
2644
+ /**
2645
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2646
+ * used by this class
2647
+ */
2648
+ FNMetaImpl?: Function
2649
+ ): Function;
2650
+ /**
2651
+ * Returns a metadata object for class sap.ui.webc.fiori.Page.
2652
+ */
2653
+ static getMetadata(): WebComponentMetadata;
2625
2654
  /**
2626
2655
  * Adds some content to the aggregation {@link #getContent content}.
2627
2656
  */
@@ -2661,27 +2690,6 @@ declare module "sap/ui/webc/fiori/Page" {
2661
2690
  * Destroys all the header in the aggregation {@link #getHeader header}.
2662
2691
  */
2663
2692
  destroyHeader(): this;
2664
- /**
2665
- * Creates a new subclass of class sap.ui.webc.fiori.Page with name `sClassName` and enriches it with the
2666
- * information contained in `oClassInfo`.
2667
- *
2668
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
2669
- */
2670
- static extend<T extends Record<string, unknown>>(
2671
- /**
2672
- * Name of the class being created
2673
- */
2674
- sClassName: string,
2675
- /**
2676
- * Object literal with information about the class
2677
- */
2678
- oClassInfo?: sap.ClassInfo<T, Page>,
2679
- /**
2680
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2681
- * used by this class
2682
- */
2683
- FNMetaImpl?: Function
2684
- ): Function;
2685
2693
  /**
2686
2694
  * Gets current value of property {@link #getBackgroundDesign backgroundDesign}.
2687
2695
  *
@@ -2751,10 +2759,6 @@ declare module "sap/ui/webc/fiori/Page" {
2751
2759
  * Default value is `false`.
2752
2760
  */
2753
2761
  getHideFooter(): boolean;
2754
- /**
2755
- * Returns a metadata object for class sap.ui.webc.fiori.Page.
2756
- */
2757
- static getMetadata(): WebComponentMetadata;
2758
2762
  /**
2759
2763
  * Gets current value of property {@link #getWidth width}.
2760
2764
  *
@@ -3107,19 +3111,6 @@ declare module "sap/ui/webc/fiori/ProductSwitch" {
3107
3111
  mSettings?: $ProductSwitchSettings
3108
3112
  );
3109
3113
 
3110
- /**
3111
- * Adds some item to the aggregation {@link #getItems items}.
3112
- */
3113
- addItem(
3114
- /**
3115
- * The item to add; if empty, nothing is inserted
3116
- */
3117
- oItem: IProductSwitchItem
3118
- ): this;
3119
- /**
3120
- * Destroys all the items in the aggregation {@link #getItems items}.
3121
- */
3122
- destroyItems(): this;
3123
3114
  /**
3124
3115
  * Creates a new subclass of class sap.ui.webc.fiori.ProductSwitch with name `sClassName` and enriches it
3125
3116
  * with the information contained in `oClassInfo`.
@@ -3141,16 +3132,29 @@ declare module "sap/ui/webc/fiori/ProductSwitch" {
3141
3132
  */
3142
3133
  FNMetaImpl?: Function
3143
3134
  ): Function;
3135
+ /**
3136
+ * Returns a metadata object for class sap.ui.webc.fiori.ProductSwitch.
3137
+ */
3138
+ static getMetadata(): WebComponentMetadata;
3139
+ /**
3140
+ * Adds some item to the aggregation {@link #getItems items}.
3141
+ */
3142
+ addItem(
3143
+ /**
3144
+ * The item to add; if empty, nothing is inserted
3145
+ */
3146
+ oItem: IProductSwitchItem
3147
+ ): this;
3148
+ /**
3149
+ * Destroys all the items in the aggregation {@link #getItems items}.
3150
+ */
3151
+ destroyItems(): this;
3144
3152
  /**
3145
3153
  * Gets content of aggregation {@link #getItems items}.
3146
3154
  *
3147
3155
  * Defines the items of the `sap.ui.webc.fiori.ProductSwitch`.
3148
3156
  */
3149
3157
  getItems(): IProductSwitchItem[];
3150
- /**
3151
- * Returns a metadata object for class sap.ui.webc.fiori.ProductSwitch.
3152
- */
3153
- static getMetadata(): WebComponentMetadata;
3154
3158
  /**
3155
3159
  * Checks for the provided `sap.ui.webc.fiori.IProductSwitchItem` in the aggregation {@link #getItems items}.
3156
3160
  * and returns its index if found or -1 otherwise.
@@ -3269,6 +3273,31 @@ declare module "sap/ui/webc/fiori/ProductSwitchItem" {
3269
3273
  mSettings?: $ProductSwitchItemSettings
3270
3274
  );
3271
3275
 
3276
+ /**
3277
+ * Creates a new subclass of class sap.ui.webc.fiori.ProductSwitchItem with name `sClassName` and enriches
3278
+ * it with the information contained in `oClassInfo`.
3279
+ *
3280
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
3281
+ */
3282
+ static extend<T extends Record<string, unknown>>(
3283
+ /**
3284
+ * Name of the class being created
3285
+ */
3286
+ sClassName: string,
3287
+ /**
3288
+ * Object literal with information about the class
3289
+ */
3290
+ oClassInfo?: sap.ClassInfo<T, ProductSwitchItem>,
3291
+ /**
3292
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3293
+ * used by this class
3294
+ */
3295
+ FNMetaImpl?: Function
3296
+ ): Function;
3297
+ /**
3298
+ * Returns a metadata object for class sap.ui.webc.fiori.ProductSwitchItem.
3299
+ */
3300
+ static getMetadata(): WebComponentMetadata;
3272
3301
  /**
3273
3302
  * Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.webc.fiori.ProductSwitchItem`.
3274
3303
  *
@@ -3329,27 +3358,6 @@ declare module "sap/ui/webc/fiori/ProductSwitchItem" {
3329
3358
  */
3330
3359
  oListener?: object
3331
3360
  ): this;
3332
- /**
3333
- * Creates a new subclass of class sap.ui.webc.fiori.ProductSwitchItem with name `sClassName` and enriches
3334
- * it with the information contained in `oClassInfo`.
3335
- *
3336
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
3337
- */
3338
- static extend<T extends Record<string, unknown>>(
3339
- /**
3340
- * Name of the class being created
3341
- */
3342
- sClassName: string,
3343
- /**
3344
- * Object literal with information about the class
3345
- */
3346
- oClassInfo?: sap.ClassInfo<T, ProductSwitchItem>,
3347
- /**
3348
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3349
- * used by this class
3350
- */
3351
- FNMetaImpl?: Function
3352
- ): Function;
3353
3361
  /**
3354
3362
  * Fires event {@link #event:click click} to attached listeners.
3355
3363
  */
@@ -3375,10 +3383,6 @@ declare module "sap/ui/webc/fiori/ProductSwitchItem" {
3375
3383
  * Default value is `empty string`.
3376
3384
  */
3377
3385
  getIcon(): string;
3378
- /**
3379
- * Returns a metadata object for class sap.ui.webc.fiori.ProductSwitchItem.
3380
- */
3381
- static getMetadata(): WebComponentMetadata;
3382
3386
  /**
3383
3387
  * Gets current value of property {@link #getSubtitleText subtitleText}.
3384
3388
  *
@@ -3555,7 +3559,7 @@ declare module "sap/ui/webc/fiori/ProductSwitchItem" {
3555
3559
  * Fired when the `sap.ui.webc.fiori.ProductSwitchItem` is activated either with a click/tap or by using
3556
3560
  * the Enter or Space key.
3557
3561
  */
3558
- click?: Function;
3562
+ click?: (oEvent: Event) => void;
3559
3563
  }
3560
3564
  }
3561
3565
 
@@ -3647,6 +3651,31 @@ declare module "sap/ui/webc/fiori/ShellBar" {
3647
3651
  mSettings?: $ShellBarSettings
3648
3652
  );
3649
3653
 
3654
+ /**
3655
+ * Creates a new subclass of class sap.ui.webc.fiori.ShellBar with name `sClassName` and enriches it with
3656
+ * the information contained in `oClassInfo`.
3657
+ *
3658
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
3659
+ */
3660
+ static extend<T extends Record<string, unknown>>(
3661
+ /**
3662
+ * Name of the class being created
3663
+ */
3664
+ sClassName: string,
3665
+ /**
3666
+ * Object literal with information about the class
3667
+ */
3668
+ oClassInfo?: sap.ClassInfo<T, ShellBar>,
3669
+ /**
3670
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3671
+ * used by this class
3672
+ */
3673
+ FNMetaImpl?: Function
3674
+ ): Function;
3675
+ /**
3676
+ * Returns a metadata object for class sap.ui.webc.fiori.ShellBar.
3677
+ */
3678
+ static getMetadata(): WebComponentMetadata;
3650
3679
  /**
3651
3680
  * Adds some item to the aggregation {@link #getItems items}.
3652
3681
  */
@@ -4041,27 +4070,6 @@ declare module "sap/ui/webc/fiori/ShellBar" {
4041
4070
  */
4042
4071
  oListener?: object
4043
4072
  ): this;
4044
- /**
4045
- * Creates a new subclass of class sap.ui.webc.fiori.ShellBar with name `sClassName` and enriches it with
4046
- * the information contained in `oClassInfo`.
4047
- *
4048
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
4049
- */
4050
- static extend<T extends Record<string, unknown>>(
4051
- /**
4052
- * Name of the class being created
4053
- */
4054
- sClassName: string,
4055
- /**
4056
- * Object literal with information about the class
4057
- */
4058
- oClassInfo?: sap.ClassInfo<T, ShellBar>,
4059
- /**
4060
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4061
- * used by this class
4062
- */
4063
- FNMetaImpl?: Function
4064
- ): Function;
4065
4073
  /**
4066
4074
  * Fires event {@link #event:coPilotClick coPilotClick} to attached listeners.
4067
4075
  */
@@ -4157,7 +4165,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
4157
4165
  *
4158
4166
  * Defines the `sap.ui.webc.fiori.ShellBar` aditional items.
4159
4167
  *
4160
- * **Note:** You can use the  <ui5-shellbar-item></ui5-shellbar-item>.
4168
+ * **Note:** You can use the <ui5-shellbar-item></ui5-shellbar-item>.
4161
4169
  */
4162
4170
  getItems(): IShellBarItem[];
4163
4171
  /**
@@ -4172,13 +4180,9 @@ declare module "sap/ui/webc/fiori/ShellBar" {
4172
4180
  *
4173
4181
  * Defines the items displayed in menu after a click on the primary title.
4174
4182
  *
4175
- * **Note:** You can use the  <ui5-li></ui5-li> and its ancestors.
4183
+ * **Note:** You can use the <ui5-li></ui5-li> and its ancestors.
4176
4184
  */
4177
4185
  getMenuItems(): IListItem[];
4178
- /**
4179
- * Returns a metadata object for class sap.ui.webc.fiori.ShellBar.
4180
- */
4181
- static getMetadata(): WebComponentMetadata;
4182
4186
  /**
4183
4187
  * Gets current value of property {@link #getNotificationsCount notificationsCount}.
4184
4188
  *
@@ -4510,7 +4514,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
4510
4514
  /**
4511
4515
  * Defines the `sap.ui.webc.fiori.ShellBar` aditional items.
4512
4516
  *
4513
- * **Note:** You can use the  <ui5-shellbar-item></ui5-shellbar-item>.
4517
+ * **Note:** You can use the <ui5-shellbar-item></ui5-shellbar-item>.
4514
4518
  */
4515
4519
  items?: IShellBarItem[] | IShellBarItem | AggregationBindingInfo;
4516
4520
 
@@ -4523,7 +4527,7 @@ declare module "sap/ui/webc/fiori/ShellBar" {
4523
4527
  /**
4524
4528
  * Defines the items displayed in menu after a click on the primary title.
4525
4529
  *
4526
- * **Note:** You can use the  <ui5-li></ui5-li> and its ancestors.
4530
+ * **Note:** You can use the <ui5-li></ui5-li> and its ancestors.
4527
4531
  */
4528
4532
  menuItems?: IListItem[] | IListItem | AggregationBindingInfo;
4529
4533
 
@@ -4550,34 +4554,34 @@ declare module "sap/ui/webc/fiori/ShellBar" {
4550
4554
  /**
4551
4555
  * Fired, when the co pilot is activated.
4552
4556
  */
4553
- coPilotClick?: Function;
4557
+ coPilotClick?: (oEvent: Event) => void;
4554
4558
 
4555
4559
  /**
4556
4560
  * Fired, when the logo is activated.
4557
4561
  */
4558
- logoClick?: Function;
4562
+ logoClick?: (oEvent: Event) => void;
4559
4563
 
4560
4564
  /**
4561
4565
  * Fired, when a menu item is activated **Note:** You can prevent closing of oveflow popover by calling
4562
4566
  * `event.preventDefault()`.
4563
4567
  */
4564
- menuItemClick?: Function;
4568
+ menuItemClick?: (oEvent: Event) => void;
4565
4569
 
4566
4570
  /**
4567
4571
  * Fired, when the notification icon is activated.
4568
4572
  */
4569
- notificationsClick?: Function;
4573
+ notificationsClick?: (oEvent: Event) => void;
4570
4574
 
4571
4575
  /**
4572
4576
  * Fired, when the product switch icon is activated. **Note:** You can prevent closing of oveflow popover
4573
4577
  * by calling `event.preventDefault()`.
4574
4578
  */
4575
- productSwitchClick?: Function;
4579
+ productSwitchClick?: (oEvent: Event) => void;
4576
4580
 
4577
4581
  /**
4578
4582
  * Fired, when the profile slot is present.
4579
4583
  */
4580
- profileClick?: Function;
4584
+ profileClick?: (oEvent: Event) => void;
4581
4585
  }
4582
4586
  }
4583
4587
 
@@ -4634,6 +4638,31 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
4634
4638
  mSettings?: $ShellBarItemSettings
4635
4639
  );
4636
4640
 
4641
+ /**
4642
+ * Creates a new subclass of class sap.ui.webc.fiori.ShellBarItem with name `sClassName` and enriches it
4643
+ * with the information contained in `oClassInfo`.
4644
+ *
4645
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
4646
+ */
4647
+ static extend<T extends Record<string, unknown>>(
4648
+ /**
4649
+ * Name of the class being created
4650
+ */
4651
+ sClassName: string,
4652
+ /**
4653
+ * Object literal with information about the class
4654
+ */
4655
+ oClassInfo?: sap.ClassInfo<T, ShellBarItem>,
4656
+ /**
4657
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4658
+ * used by this class
4659
+ */
4660
+ FNMetaImpl?: Function
4661
+ ): Function;
4662
+ /**
4663
+ * Returns a metadata object for class sap.ui.webc.fiori.ShellBarItem.
4664
+ */
4665
+ static getMetadata(): WebComponentMetadata;
4637
4666
  /**
4638
4667
  * Attaches event handler `fnFunction` to the {@link #event:itemClick itemClick} event of this `sap.ui.webc.fiori.ShellBarItem`.
4639
4668
  *
@@ -4690,27 +4719,6 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
4690
4719
  */
4691
4720
  oListener?: object
4692
4721
  ): this;
4693
- /**
4694
- * Creates a new subclass of class sap.ui.webc.fiori.ShellBarItem with name `sClassName` and enriches it
4695
- * with the information contained in `oClassInfo`.
4696
- *
4697
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
4698
- */
4699
- static extend<T extends Record<string, unknown>>(
4700
- /**
4701
- * Name of the class being created
4702
- */
4703
- sClassName: string,
4704
- /**
4705
- * Object literal with information about the class
4706
- */
4707
- oClassInfo?: sap.ClassInfo<T, ShellBarItem>,
4708
- /**
4709
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4710
- * used by this class
4711
- */
4712
- FNMetaImpl?: Function
4713
- ): Function;
4714
4722
  /**
4715
4723
  * Fires event {@link #event:itemClick itemClick} to attached listeners.
4716
4724
  *
@@ -4744,10 +4752,6 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
4744
4752
  * Default value is `empty string`.
4745
4753
  */
4746
4754
  getIcon(): string;
4747
- /**
4748
- * Returns a metadata object for class sap.ui.webc.fiori.ShellBarItem.
4749
- */
4750
- static getMetadata(): WebComponentMetadata;
4751
4755
  /**
4752
4756
  * Gets current value of property {@link #getText text}.
4753
4757
  *
@@ -4822,7 +4826,7 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
4822
4826
  /**
4823
4827
  * Fired, when the item is pressed.
4824
4828
  */
4825
- itemClick?: Function;
4829
+ itemClick?: (oEvent: Event) => void;
4826
4830
  }
4827
4831
  }
4828
4832
 
@@ -4898,6 +4902,31 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
4898
4902
  mSettings?: $SideNavigationSettings
4899
4903
  );
4900
4904
 
4905
+ /**
4906
+ * Creates a new subclass of class sap.ui.webc.fiori.SideNavigation with name `sClassName` and enriches
4907
+ * it with the information contained in `oClassInfo`.
4908
+ *
4909
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
4910
+ */
4911
+ static extend<T extends Record<string, unknown>>(
4912
+ /**
4913
+ * Name of the class being created
4914
+ */
4915
+ sClassName: string,
4916
+ /**
4917
+ * Object literal with information about the class
4918
+ */
4919
+ oClassInfo?: sap.ClassInfo<T, SideNavigation>,
4920
+ /**
4921
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4922
+ * used by this class
4923
+ */
4924
+ FNMetaImpl?: Function
4925
+ ): Function;
4926
+ /**
4927
+ * Returns a metadata object for class sap.ui.webc.fiori.SideNavigation.
4928
+ */
4929
+ static getMetadata(): WebComponentMetadata;
4901
4930
  /**
4902
4931
  * Adds some fixedItem to the aggregation {@link #getFixedItems fixedItems}.
4903
4932
  */
@@ -4996,27 +5025,6 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
4996
5025
  */
4997
5026
  oListener?: object
4998
5027
  ): this;
4999
- /**
5000
- * Creates a new subclass of class sap.ui.webc.fiori.SideNavigation with name `sClassName` and enriches
5001
- * it with the information contained in `oClassInfo`.
5002
- *
5003
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
5004
- */
5005
- static extend<T extends Record<string, unknown>>(
5006
- /**
5007
- * Name of the class being created
5008
- */
5009
- sClassName: string,
5010
- /**
5011
- * Object literal with information about the class
5012
- */
5013
- oClassInfo?: sap.ClassInfo<T, SideNavigation>,
5014
- /**
5015
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5016
- * used by this class
5017
- */
5018
- FNMetaImpl?: Function
5019
- ): Function;
5020
5028
  /**
5021
5029
  * Fires event {@link #event:selectionChange selectionChange} to attached listeners.
5022
5030
  */
@@ -5068,10 +5076,6 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
5068
5076
  * items, nested inside the items.
5069
5077
  */
5070
5078
  getItems(): ISideNavigationItem[];
5071
- /**
5072
- * Returns a metadata object for class sap.ui.webc.fiori.SideNavigation.
5073
- */
5074
- static getMetadata(): WebComponentMetadata;
5075
5079
  /**
5076
5080
  * Checks for the provided `sap.ui.webc.fiori.ISideNavigationItem` in the aggregation {@link #getFixedItems
5077
5081
  * fixedItems}. and returns its index if found or -1 otherwise.
@@ -5250,7 +5254,7 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
5250
5254
  /**
5251
5255
  * Fired when the selection has changed via user interaction
5252
5256
  */
5253
- selectionChange?: Function;
5257
+ selectionChange?: (oEvent: Event) => void;
5254
5258
  }
5255
5259
  }
5256
5260
 
@@ -5316,19 +5320,6 @@ declare module "sap/ui/webc/fiori/SideNavigationItem" {
5316
5320
  mSettings?: $SideNavigationItemSettings
5317
5321
  );
5318
5322
 
5319
- /**
5320
- * Adds some item to the aggregation {@link #getItems items}.
5321
- */
5322
- addItem(
5323
- /**
5324
- * The item to add; if empty, nothing is inserted
5325
- */
5326
- oItem: ISideNavigationSubItem
5327
- ): this;
5328
- /**
5329
- * Destroys all the items in the aggregation {@link #getItems items}.
5330
- */
5331
- destroyItems(): this;
5332
5323
  /**
5333
5324
  * Creates a new subclass of class sap.ui.webc.fiori.SideNavigationItem with name `sClassName` and enriches
5334
5325
  * it with the information contained in `oClassInfo`.
@@ -5351,11 +5342,28 @@ declare module "sap/ui/webc/fiori/SideNavigationItem" {
5351
5342
  FNMetaImpl?: Function
5352
5343
  ): Function;
5353
5344
  /**
5354
- * Gets current value of property {@link #getExpanded expanded}.
5355
- *
5356
- * Defines if the item is expanded
5357
- *
5358
- * Default value is `false`.
5345
+ * Returns a metadata object for class sap.ui.webc.fiori.SideNavigationItem.
5346
+ */
5347
+ static getMetadata(): WebComponentMetadata;
5348
+ /**
5349
+ * Adds some item to the aggregation {@link #getItems items}.
5350
+ */
5351
+ addItem(
5352
+ /**
5353
+ * The item to add; if empty, nothing is inserted
5354
+ */
5355
+ oItem: ISideNavigationSubItem
5356
+ ): this;
5357
+ /**
5358
+ * Destroys all the items in the aggregation {@link #getItems items}.
5359
+ */
5360
+ destroyItems(): this;
5361
+ /**
5362
+ * Gets current value of property {@link #getExpanded expanded}.
5363
+ *
5364
+ * Defines if the item is expanded
5365
+ *
5366
+ * Default value is `false`.
5359
5367
  */
5360
5368
  getExpanded(): boolean;
5361
5369
  /**
@@ -5377,10 +5385,6 @@ declare module "sap/ui/webc/fiori/SideNavigationItem" {
5377
5385
  * If you wish to nest menus, you can pass inner menu items to the default slot.
5378
5386
  */
5379
5387
  getItems(): ISideNavigationSubItem[];
5380
- /**
5381
- * Returns a metadata object for class sap.ui.webc.fiori.SideNavigationItem.
5382
- */
5383
- static getMetadata(): WebComponentMetadata;
5384
5388
  /**
5385
5389
  * Gets current value of property {@link #getSelected selected}.
5386
5390
  *
@@ -5654,6 +5658,10 @@ declare module "sap/ui/webc/fiori/SideNavigationSubItem" {
5654
5658
  */
5655
5659
  FNMetaImpl?: Function
5656
5660
  ): Function;
5661
+ /**
5662
+ * Returns a metadata object for class sap.ui.webc.fiori.SideNavigationSubItem.
5663
+ */
5664
+ static getMetadata(): WebComponentMetadata;
5657
5665
  /**
5658
5666
  * Gets current value of property {@link #getIcon icon}.
5659
5667
  *
@@ -5667,10 +5675,6 @@ declare module "sap/ui/webc/fiori/SideNavigationSubItem" {
5667
5675
  * Default value is `empty string`.
5668
5676
  */
5669
5677
  getIcon(): string;
5670
- /**
5671
- * Returns a metadata object for class sap.ui.webc.fiori.SideNavigationSubItem.
5672
- */
5673
- static getMetadata(): WebComponentMetadata;
5674
5678
  /**
5675
5679
  * Gets current value of property {@link #getSelected selected}.
5676
5680
  *
@@ -5825,19 +5829,6 @@ declare module "sap/ui/webc/fiori/Timeline" {
5825
5829
  mSettings?: $TimelineSettings
5826
5830
  );
5827
5831
 
5828
- /**
5829
- * Adds some item to the aggregation {@link #getItems items}.
5830
- */
5831
- addItem(
5832
- /**
5833
- * The item to add; if empty, nothing is inserted
5834
- */
5835
- oItem: ITimelineItem
5836
- ): this;
5837
- /**
5838
- * Destroys all the items in the aggregation {@link #getItems items}.
5839
- */
5840
- destroyItems(): this;
5841
5832
  /**
5842
5833
  * Creates a new subclass of class sap.ui.webc.fiori.Timeline with name `sClassName` and enriches it with
5843
5834
  * the information contained in `oClassInfo`.
@@ -5859,6 +5850,23 @@ declare module "sap/ui/webc/fiori/Timeline" {
5859
5850
  */
5860
5851
  FNMetaImpl?: Function
5861
5852
  ): Function;
5853
+ /**
5854
+ * Returns a metadata object for class sap.ui.webc.fiori.Timeline.
5855
+ */
5856
+ static getMetadata(): WebComponentMetadata;
5857
+ /**
5858
+ * Adds some item to the aggregation {@link #getItems items}.
5859
+ */
5860
+ addItem(
5861
+ /**
5862
+ * The item to add; if empty, nothing is inserted
5863
+ */
5864
+ oItem: ITimelineItem
5865
+ ): this;
5866
+ /**
5867
+ * Destroys all the items in the aggregation {@link #getItems items}.
5868
+ */
5869
+ destroyItems(): this;
5862
5870
  /**
5863
5871
  * Gets current value of property {@link #getHeight height}.
5864
5872
  *
@@ -5871,10 +5879,6 @@ declare module "sap/ui/webc/fiori/Timeline" {
5871
5879
  * Determines the content of the `sap.ui.webc.fiori.Timeline`.
5872
5880
  */
5873
5881
  getItems(): ITimelineItem[];
5874
- /**
5875
- * Returns a metadata object for class sap.ui.webc.fiori.Timeline.
5876
- */
5877
- static getMetadata(): WebComponentMetadata;
5878
5882
  /**
5879
5883
  * Gets current value of property {@link #getWidth width}.
5880
5884
  *
@@ -6029,6 +6033,31 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
6029
6033
  mSettings?: $TimelineItemSettings
6030
6034
  );
6031
6035
 
6036
+ /**
6037
+ * Creates a new subclass of class sap.ui.webc.fiori.TimelineItem with name `sClassName` and enriches it
6038
+ * with the information contained in `oClassInfo`.
6039
+ *
6040
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
6041
+ */
6042
+ static extend<T extends Record<string, unknown>>(
6043
+ /**
6044
+ * Name of the class being created
6045
+ */
6046
+ sClassName: string,
6047
+ /**
6048
+ * Object literal with information about the class
6049
+ */
6050
+ oClassInfo?: sap.ClassInfo<T, TimelineItem>,
6051
+ /**
6052
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6053
+ * used by this class
6054
+ */
6055
+ FNMetaImpl?: Function
6056
+ ): Function;
6057
+ /**
6058
+ * Returns a metadata object for class sap.ui.webc.fiori.TimelineItem.
6059
+ */
6060
+ static getMetadata(): WebComponentMetadata;
6032
6061
  /**
6033
6062
  * Adds some content to the aggregation {@link #getContent content}.
6034
6063
  */
@@ -6103,27 +6132,6 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
6103
6132
  */
6104
6133
  oListener?: object
6105
6134
  ): this;
6106
- /**
6107
- * Creates a new subclass of class sap.ui.webc.fiori.TimelineItem with name `sClassName` and enriches it
6108
- * with the information contained in `oClassInfo`.
6109
- *
6110
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
6111
- */
6112
- static extend<T extends Record<string, unknown>>(
6113
- /**
6114
- * Name of the class being created
6115
- */
6116
- sClassName: string,
6117
- /**
6118
- * Object literal with information about the class
6119
- */
6120
- oClassInfo?: sap.ClassInfo<T, TimelineItem>,
6121
- /**
6122
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6123
- * used by this class
6124
- */
6125
- FNMetaImpl?: Function
6126
- ): Function;
6127
6135
  /**
6128
6136
  * Fires event {@link #event:itemNameClick itemNameClick} to attached listeners.
6129
6137
  */
@@ -6168,10 +6176,6 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
6168
6176
  * Default value is `false`.
6169
6177
  */
6170
6178
  getItemNameClickable(): boolean;
6171
- /**
6172
- * Returns a metadata object for class sap.ui.webc.fiori.TimelineItem.
6173
- */
6174
- static getMetadata(): WebComponentMetadata;
6175
6179
  /**
6176
6180
  * Gets current value of property {@link #getSubtitleText subtitleText}.
6177
6181
  *
@@ -6351,7 +6355,7 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
6351
6355
  *
6352
6356
  * **Note:** The event will not be fired if the `item-name-clickable` attribute is not set.
6353
6357
  */
6354
- itemNameClick?: Function;
6358
+ itemNameClick?: (oEvent: Event) => void;
6355
6359
  }
6356
6360
  }
6357
6361
 
@@ -6417,6 +6421,31 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
6417
6421
  mSettings?: $UploadCollectionSettings
6418
6422
  );
6419
6423
 
6424
+ /**
6425
+ * Creates a new subclass of class sap.ui.webc.fiori.UploadCollection with name `sClassName` and enriches
6426
+ * it with the information contained in `oClassInfo`.
6427
+ *
6428
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
6429
+ */
6430
+ static extend<T extends Record<string, unknown>>(
6431
+ /**
6432
+ * Name of the class being created
6433
+ */
6434
+ sClassName: string,
6435
+ /**
6436
+ * Object literal with information about the class
6437
+ */
6438
+ oClassInfo?: sap.ClassInfo<T, UploadCollection>,
6439
+ /**
6440
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6441
+ * used by this class
6442
+ */
6443
+ FNMetaImpl?: Function
6444
+ ): Function;
6445
+ /**
6446
+ * Returns a metadata object for class sap.ui.webc.fiori.UploadCollection.
6447
+ */
6448
+ static getMetadata(): WebComponentMetadata;
6420
6449
  /**
6421
6450
  * Adds some header to the aggregation {@link #getHeader header}.
6422
6451
  */
@@ -6632,27 +6661,6 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
6632
6661
  */
6633
6662
  oListener?: object
6634
6663
  ): this;
6635
- /**
6636
- * Creates a new subclass of class sap.ui.webc.fiori.UploadCollection with name `sClassName` and enriches
6637
- * it with the information contained in `oClassInfo`.
6638
- *
6639
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
6640
- */
6641
- static extend<T extends Record<string, unknown>>(
6642
- /**
6643
- * Name of the class being created
6644
- */
6645
- sClassName: string,
6646
- /**
6647
- * Object literal with information about the class
6648
- */
6649
- oClassInfo?: sap.ClassInfo<T, UploadCollection>,
6650
- /**
6651
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6652
- * used by this class
6653
- */
6654
- FNMetaImpl?: Function
6655
- ): Function;
6656
6664
  /**
6657
6665
  * Fires event {@link #event:drop drop} to attached listeners.
6658
6666
  */
@@ -6726,10 +6734,6 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
6726
6734
  * **Note:** Use `sap.ui.webc.fiori.UploadCollectionItem` for the intended design.
6727
6735
  */
6728
6736
  getItems(): IUploadCollectionItem[];
6729
- /**
6730
- * Returns a metadata object for class sap.ui.webc.fiori.UploadCollection.
6731
- */
6732
- static getMetadata(): WebComponentMetadata;
6733
6737
  /**
6734
6738
  * Gets current value of property {@link #getMode mode}.
6735
6739
  *
@@ -7011,7 +7015,7 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
7011
7015
  * **Note:** The `drop` event is fired only when elements are dropped within the drag and drop overlay
7012
7016
  * and ignored for the other parts of the `sap.ui.webc.fiori.UploadCollection`.
7013
7017
  */
7014
- drop?: Function;
7018
+ drop?: (oEvent: Event) => void;
7015
7019
 
7016
7020
  /**
7017
7021
  * Fired when the Delete button of any item is pressed.
@@ -7019,12 +7023,12 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
7019
7023
  * **Note:** A Delete button is displayed on each item, when the `sap.ui.webc.fiori.UploadCollection` `mode`
7020
7024
  * property is set to `Delete`.
7021
7025
  */
7022
- fileDeleted?: Function;
7026
+ fileDeleted?: (oEvent: Event) => void;
7023
7027
 
7024
7028
  /**
7025
7029
  * Fired when selection is changed by user interaction in `SingleSelect` and `MultiSelect` modes.
7026
7030
  */
7027
- selectionChange?: Function;
7031
+ selectionChange?: (oEvent: Event) => void;
7028
7032
  }
7029
7033
  }
7030
7034
 
@@ -7091,6 +7095,31 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
7091
7095
  mSettings?: $UploadCollectionItemSettings
7092
7096
  );
7093
7097
 
7098
+ /**
7099
+ * Creates a new subclass of class sap.ui.webc.fiori.UploadCollectionItem with name `sClassName` and enriches
7100
+ * it with the information contained in `oClassInfo`.
7101
+ *
7102
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
7103
+ */
7104
+ static extend<T extends Record<string, unknown>>(
7105
+ /**
7106
+ * Name of the class being created
7107
+ */
7108
+ sClassName: string,
7109
+ /**
7110
+ * Object literal with information about the class
7111
+ */
7112
+ oClassInfo?: sap.ClassInfo<T, UploadCollectionItem>,
7113
+ /**
7114
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7115
+ * used by this class
7116
+ */
7117
+ FNMetaImpl?: Function
7118
+ ): Function;
7119
+ /**
7120
+ * Returns a metadata object for class sap.ui.webc.fiori.UploadCollectionItem.
7121
+ */
7122
+ static getMetadata(): WebComponentMetadata;
7094
7123
  /**
7095
7124
  * Adds some content to the aggregation {@link #getContent content}.
7096
7125
  */
@@ -7359,27 +7388,6 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
7359
7388
  */
7360
7389
  oListener?: object
7361
7390
  ): this;
7362
- /**
7363
- * Creates a new subclass of class sap.ui.webc.fiori.UploadCollectionItem with name `sClassName` and enriches
7364
- * it with the information contained in `oClassInfo`.
7365
- *
7366
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
7367
- */
7368
- static extend<T extends Record<string, unknown>>(
7369
- /**
7370
- * Name of the class being created
7371
- */
7372
- sClassName: string,
7373
- /**
7374
- * Object literal with information about the class
7375
- */
7376
- oClassInfo?: sap.ClassInfo<T, UploadCollectionItem>,
7377
- /**
7378
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7379
- * used by this class
7380
- */
7381
- FNMetaImpl?: Function
7382
- ): Function;
7383
7391
  /**
7384
7392
  * Fires event {@link #event:fileNameClick fileNameClick} to attached listeners.
7385
7393
  */
@@ -7444,10 +7452,6 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
7444
7452
  * Default value is `false`.
7445
7453
  */
7446
7454
  getFileNameClickable(): boolean;
7447
- /**
7448
- * Returns a metadata object for class sap.ui.webc.fiori.UploadCollectionItem.
7449
- */
7450
- static getMetadata(): WebComponentMetadata;
7451
7455
  /**
7452
7456
  * Gets current value of property {@link #getNoDelete noDelete}.
7453
7457
  *
@@ -7737,7 +7741,7 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
7737
7741
  *
7738
7742
  * **Note:** This event is only available when `fileNameClickable` property is `true`.
7739
7743
  */
7740
- fileNameClick?: Function;
7744
+ fileNameClick?: (oEvent: Event) => void;
7741
7745
 
7742
7746
  /**
7743
7747
  * Fired when the `fileName` property gets changed.
@@ -7745,21 +7749,21 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
7745
7749
  * **Note:** An edit button is displayed on each item, when the `sap.ui.webc.fiori.UploadCollectionItem`
7746
7750
  * `type` property is set to `Detail`.
7747
7751
  */
7748
- rename?: Function;
7752
+ rename?: (oEvent: Event) => void;
7749
7753
 
7750
7754
  /**
7751
7755
  * Fired when the retry button is pressed.
7752
7756
  *
7753
7757
  * **Note:** Retry button is displayed when `uploadState` property is set to `Error`.
7754
7758
  */
7755
- retry?: Function;
7759
+ retry?: (oEvent: Event) => void;
7756
7760
 
7757
7761
  /**
7758
7762
  * Fired when the terminate button is pressed.
7759
7763
  *
7760
7764
  * **Note:** Terminate button is displayed when `uploadState` property is set to `Uploading`.
7761
7765
  */
7762
- terminate?: Function;
7766
+ terminate?: (oEvent: Event) => void;
7763
7767
  }
7764
7768
  }
7765
7769
 
@@ -7873,6 +7877,31 @@ declare module "sap/ui/webc/fiori/Wizard" {
7873
7877
  mSettings?: $WizardSettings
7874
7878
  );
7875
7879
 
7880
+ /**
7881
+ * Creates a new subclass of class sap.ui.webc.fiori.Wizard with name `sClassName` and enriches it with
7882
+ * the information contained in `oClassInfo`.
7883
+ *
7884
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
7885
+ */
7886
+ static extend<T extends Record<string, unknown>>(
7887
+ /**
7888
+ * Name of the class being created
7889
+ */
7890
+ sClassName: string,
7891
+ /**
7892
+ * Object literal with information about the class
7893
+ */
7894
+ oClassInfo?: sap.ClassInfo<T, Wizard>,
7895
+ /**
7896
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7897
+ * used by this class
7898
+ */
7899
+ FNMetaImpl?: Function
7900
+ ): Function;
7901
+ /**
7902
+ * Returns a metadata object for class sap.ui.webc.fiori.Wizard.
7903
+ */
7904
+ static getMetadata(): WebComponentMetadata;
7876
7905
  /**
7877
7906
  * Adds some step to the aggregation {@link #getSteps steps}.
7878
7907
  */
@@ -7944,27 +7973,6 @@ declare module "sap/ui/webc/fiori/Wizard" {
7944
7973
  */
7945
7974
  oListener?: object
7946
7975
  ): this;
7947
- /**
7948
- * Creates a new subclass of class sap.ui.webc.fiori.Wizard with name `sClassName` and enriches it with
7949
- * the information contained in `oClassInfo`.
7950
- *
7951
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
7952
- */
7953
- static extend<T extends Record<string, unknown>>(
7954
- /**
7955
- * Name of the class being created
7956
- */
7957
- sClassName: string,
7958
- /**
7959
- * Object literal with information about the class
7960
- */
7961
- oClassInfo?: sap.ClassInfo<T, Wizard>,
7962
- /**
7963
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7964
- * used by this class
7965
- */
7966
- FNMetaImpl?: Function
7967
- ): Function;
7968
7976
  /**
7969
7977
  * Fires event {@link #event:stepChange stepChange} to attached listeners.
7970
7978
  */
@@ -7984,7 +7992,7 @@ declare module "sap/ui/webc/fiori/Wizard" {
7984
7992
  /**
7985
7993
  * the step change occurs due to user's click or 'Enter'/'Space' key press on step within the navigation
7986
7994
  */
7987
- changeWithClick?: Boolean;
7995
+ changeWithClick?: boolean;
7988
7996
  }
7989
7997
  ): this;
7990
7998
  /**
@@ -7993,10 +8001,6 @@ declare module "sap/ui/webc/fiori/Wizard" {
7993
8001
  * Defines the height of the control
7994
8002
  */
7995
8003
  getHeight(): CSSSize;
7996
- /**
7997
- * Returns a metadata object for class sap.ui.webc.fiori.Wizard.
7998
- */
7999
- static getMetadata(): WebComponentMetadata;
8000
8004
  /**
8001
8005
  * Gets content of aggregation {@link #getSteps steps}.
8002
8006
  *
@@ -8077,7 +8081,7 @@ declare module "sap/ui/webc/fiori/Wizard" {
8077
8081
  * Fired when the step is changed by user interaction - either with scrolling, or by clicking on the steps
8078
8082
  * within the component header.
8079
8083
  */
8080
- stepChange?: Function;
8084
+ stepChange?: (oEvent: Event) => void;
8081
8085
  }
8082
8086
  }
8083
8087
 
@@ -8149,19 +8153,6 @@ declare module "sap/ui/webc/fiori/WizardStep" {
8149
8153
  mSettings?: $WizardStepSettings
8150
8154
  );
8151
8155
 
8152
- /**
8153
- * Adds some content to the aggregation {@link #getContent content}.
8154
- */
8155
- addContent(
8156
- /**
8157
- * The content to add; if empty, nothing is inserted
8158
- */
8159
- oContent: Control
8160
- ): this;
8161
- /**
8162
- * Destroys all the content in the aggregation {@link #getContent content}.
8163
- */
8164
- destroyContent(): this;
8165
8156
  /**
8166
8157
  * Creates a new subclass of class sap.ui.webc.fiori.WizardStep with name `sClassName` and enriches it with
8167
8158
  * the information contained in `oClassInfo`.
@@ -8183,6 +8174,23 @@ declare module "sap/ui/webc/fiori/WizardStep" {
8183
8174
  */
8184
8175
  FNMetaImpl?: Function
8185
8176
  ): Function;
8177
+ /**
8178
+ * Returns a metadata object for class sap.ui.webc.fiori.WizardStep.
8179
+ */
8180
+ static getMetadata(): WebComponentMetadata;
8181
+ /**
8182
+ * Adds some content to the aggregation {@link #getContent content}.
8183
+ */
8184
+ addContent(
8185
+ /**
8186
+ * The content to add; if empty, nothing is inserted
8187
+ */
8188
+ oContent: Control
8189
+ ): this;
8190
+ /**
8191
+ * Destroys all the content in the aggregation {@link #getContent content}.
8192
+ */
8193
+ destroyContent(): this;
8186
8194
  /**
8187
8195
  * Gets current value of property {@link #getBranching branching}.
8188
8196
  *
@@ -8233,10 +8241,6 @@ declare module "sap/ui/webc/fiori/WizardStep" {
8233
8241
  * Default value is `empty string`.
8234
8242
  */
8235
8243
  getIcon(): string;
8236
- /**
8237
- * Returns a metadata object for class sap.ui.webc.fiori.WizardStep.
8238
- */
8239
- static getMetadata(): WebComponentMetadata;
8240
8244
  /**
8241
8245
  * Gets current value of property {@link #getSelected selected}.
8242
8246
  *