@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/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -653,7 +653,7 @@ declare module "sap/ui/commons/Accordion" {
653
653
  *
654
654
  * Contains N sections, acting as containers for any library control
655
655
  */
656
- export default class Accordion extends Control {
656
+ class Accordion extends Control {
657
657
  /**
658
658
  * Constructor for a new Accordion.
659
659
  *
@@ -744,7 +744,7 @@ declare module "sap/ui/commons/Accordion" {
744
744
  /**
745
745
  * The function to be called when the event occurs
746
746
  */
747
- fnFunction: (p1: Event) => void,
747
+ fnFunction: (p1: Event<$AccordionSectionCloseEventParameters>) => void,
748
748
  /**
749
749
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.Accordion` itself
750
750
  */
@@ -764,7 +764,7 @@ declare module "sap/ui/commons/Accordion" {
764
764
  /**
765
765
  * The function to be called when the event occurs
766
766
  */
767
- fnFunction: (p1: Event) => void,
767
+ fnFunction: (p1: Event<$AccordionSectionCloseEventParameters>) => void,
768
768
  /**
769
769
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.Accordion` itself
770
770
  */
@@ -789,7 +789,7 @@ declare module "sap/ui/commons/Accordion" {
789
789
  /**
790
790
  * The function to be called when the event occurs
791
791
  */
792
- fnFunction: (p1: Event) => void,
792
+ fnFunction: (p1: Event<$AccordionSectionOpenEventParameters>) => void,
793
793
  /**
794
794
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.Accordion` itself
795
795
  */
@@ -809,7 +809,7 @@ declare module "sap/ui/commons/Accordion" {
809
809
  /**
810
810
  * The function to be called when the event occurs
811
811
  */
812
- fnFunction: (p1: Event) => void,
812
+ fnFunction: (p1: Event<$AccordionSectionOpenEventParameters>) => void,
813
813
  /**
814
814
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.Accordion` itself
815
815
  */
@@ -835,7 +835,7 @@ declare module "sap/ui/commons/Accordion" {
835
835
  /**
836
836
  * The function to be called when the event occurs
837
837
  */
838
- fnFunction: (p1: Event) => void,
838
+ fnFunction: (p1: Event<$AccordionSectionsReorderEventParameters>) => void,
839
839
  /**
840
840
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.Accordion` itself
841
841
  */
@@ -856,7 +856,7 @@ declare module "sap/ui/commons/Accordion" {
856
856
  /**
857
857
  * The function to be called when the event occurs
858
858
  */
859
- fnFunction: (p1: Event) => void,
859
+ fnFunction: (p1: Event<$AccordionSectionsReorderEventParameters>) => void,
860
860
  /**
861
861
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.Accordion` itself
862
862
  */
@@ -888,7 +888,7 @@ declare module "sap/ui/commons/Accordion" {
888
888
  /**
889
889
  * The function to be called, when the event occurs
890
890
  */
891
- fnFunction: (p1: Event) => void,
891
+ fnFunction: (p1: Event<$AccordionSectionCloseEventParameters>) => void,
892
892
  /**
893
893
  * Context object on which the given function had to be called
894
894
  */
@@ -905,7 +905,7 @@ declare module "sap/ui/commons/Accordion" {
905
905
  /**
906
906
  * The function to be called, when the event occurs
907
907
  */
908
- fnFunction: (p1: Event) => void,
908
+ fnFunction: (p1: Event<$AccordionSectionOpenEventParameters>) => void,
909
909
  /**
910
910
  * Context object on which the given function had to be called
911
911
  */
@@ -923,7 +923,7 @@ declare module "sap/ui/commons/Accordion" {
923
923
  /**
924
924
  * The function to be called, when the event occurs
925
925
  */
926
- fnFunction: (p1: Event) => void,
926
+ fnFunction: (p1: Event<$AccordionSectionsReorderEventParameters>) => void,
927
927
  /**
928
928
  * Context object on which the given function had to be called
929
929
  */
@@ -940,12 +940,7 @@ declare module "sap/ui/commons/Accordion" {
940
940
  /**
941
941
  * Parameters to pass along with the event
942
942
  */
943
- mParameters?: {
944
- /**
945
- * ID of the closed section
946
- */
947
- closeSectionId?: string;
948
- }
943
+ mParameters?: $AccordionSectionCloseEventParameters
949
944
  ): this;
950
945
  /**
951
946
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -958,16 +953,7 @@ declare module "sap/ui/commons/Accordion" {
958
953
  /**
959
954
  * Parameters to pass along with the event
960
955
  */
961
- mParameters?: {
962
- /**
963
- * ID of the opened section
964
- */
965
- openSectionId?: string;
966
- /**
967
- * IDs of the sections to be closed. Can be initial in the case of no previously opened section.
968
- */
969
- closeSectionIds?: string[];
970
- }
956
+ mParameters?: $AccordionSectionOpenEventParameters
971
957
  ): this;
972
958
  /**
973
959
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -980,16 +966,7 @@ declare module "sap/ui/commons/Accordion" {
980
966
  /**
981
967
  * Parameters to pass along with the event
982
968
  */
983
- mParameters?: {
984
- /**
985
- * ID of the moved section
986
- */
987
- movedSectionId?: string;
988
- /**
989
- * New index of the moved section
990
- */
991
- newIndex?: int;
992
- }
969
+ mParameters?: $AccordionSectionsReorderEventParameters
993
970
  ): this;
994
971
  /**
995
972
  * Gets current value of property {@link #getOpenedSectionsId openedSectionsId}.
@@ -1101,6 +1078,7 @@ declare module "sap/ui/commons/Accordion" {
1101
1078
  sWidth?: CSSSize
1102
1079
  ): this;
1103
1080
  }
1081
+ export default Accordion;
1104
1082
 
1105
1083
  export interface $AccordionSettings extends $ControlSettings {
1106
1084
  /**
@@ -1125,17 +1103,52 @@ declare module "sap/ui/commons/Accordion" {
1125
1103
  /**
1126
1104
  * Event is triggered when the user opens a section.
1127
1105
  */
1128
- sectionOpen?: (oEvent: Event) => void;
1106
+ sectionOpen?: (oEvent: Event<$AccordionSectionOpenEventParameters>) => void;
1129
1107
 
1130
1108
  /**
1131
1109
  * Event is triggered when the user closes a section.
1132
1110
  */
1133
- sectionClose?: (oEvent: Event) => void;
1111
+ sectionClose?: (
1112
+ oEvent: Event<$AccordionSectionCloseEventParameters>
1113
+ ) => void;
1134
1114
 
1135
1115
  /**
1136
1116
  * Event is triggered when the user changes the position of a section.
1137
1117
  */
1138
- sectionsReorder?: (oEvent: Event) => void;
1118
+ sectionsReorder?: (
1119
+ oEvent: Event<$AccordionSectionsReorderEventParameters>
1120
+ ) => void;
1121
+ }
1122
+
1123
+ export interface $AccordionSectionCloseEventParameters {
1124
+ /**
1125
+ * ID of the closed section
1126
+ */
1127
+ closeSectionId?: string;
1128
+ }
1129
+
1130
+ export interface $AccordionSectionOpenEventParameters {
1131
+ /**
1132
+ * ID of the opened section
1133
+ */
1134
+ openSectionId?: string;
1135
+
1136
+ /**
1137
+ * IDs of the sections to be closed. Can be initial in the case of no previously opened section.
1138
+ */
1139
+ closeSectionIds?: string[];
1140
+ }
1141
+
1142
+ export interface $AccordionSectionsReorderEventParameters {
1143
+ /**
1144
+ * ID of the moved section
1145
+ */
1146
+ movedSectionId?: string;
1147
+
1148
+ /**
1149
+ * New index of the moved section
1150
+ */
1151
+ newIndex?: int;
1139
1152
  }
1140
1153
  }
1141
1154
 
@@ -1160,7 +1173,7 @@ declare module "sap/ui/commons/AccordionSection" {
1160
1173
  *
1161
1174
  * Represents a panel which is a container for other controls. The container does not have any layout function.
1162
1175
  */
1163
- export default class AccordionSection extends UI5Element {
1176
+ class AccordionSection extends UI5Element {
1164
1177
  /**
1165
1178
  * Constructor for a new AccordionSection.
1166
1179
  *
@@ -1251,7 +1264,7 @@ declare module "sap/ui/commons/AccordionSection" {
1251
1264
  /**
1252
1265
  * The function to be called when the event occurs
1253
1266
  */
1254
- fnFunction: (p1: Event) => void,
1267
+ fnFunction: (p1: Event<$AccordionSectionScrollEventParameters>) => void,
1255
1268
  /**
1256
1269
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.AccordionSection` itself
1257
1270
  */
@@ -1271,7 +1284,7 @@ declare module "sap/ui/commons/AccordionSection" {
1271
1284
  /**
1272
1285
  * The function to be called when the event occurs
1273
1286
  */
1274
- fnFunction: (p1: Event) => void,
1287
+ fnFunction: (p1: Event<$AccordionSectionScrollEventParameters>) => void,
1275
1288
  /**
1276
1289
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.AccordionSection` itself
1277
1290
  */
@@ -1294,7 +1307,7 @@ declare module "sap/ui/commons/AccordionSection" {
1294
1307
  /**
1295
1308
  * The function to be called, when the event occurs
1296
1309
  */
1297
- fnFunction: (p1: Event) => void,
1310
+ fnFunction: (p1: Event<$AccordionSectionScrollEventParameters>) => void,
1298
1311
  /**
1299
1312
  * Context object on which the given function had to be called
1300
1313
  */
@@ -1311,16 +1324,7 @@ declare module "sap/ui/commons/AccordionSection" {
1311
1324
  /**
1312
1325
  * Parameters to pass along with the event
1313
1326
  */
1314
- mParameters?: {
1315
- /**
1316
- * Horizontal scroll position
1317
- */
1318
- left?: int;
1319
- /**
1320
- * Vertical scroll position
1321
- */
1322
- top?: int;
1323
- }
1327
+ mParameters?: $AccordionSectionScrollEventParameters
1324
1328
  ): this;
1325
1329
  /**
1326
1330
  * @deprecated (since 1.34) - Use Accordion's "openedSectionsId" property
@@ -1470,6 +1474,7 @@ declare module "sap/ui/commons/AccordionSection" {
1470
1474
  sTitle?: string
1471
1475
  ): this;
1472
1476
  }
1477
+ export default AccordionSection;
1473
1478
 
1474
1479
  export interface $AccordionSectionSettings extends $ElementSettings {
1475
1480
  /**
@@ -1505,7 +1510,19 @@ declare module "sap/ui/commons/AccordionSection" {
1505
1510
  /**
1506
1511
  * Event is fired when the user scrolls the panel
1507
1512
  */
1508
- scroll?: (oEvent: Event) => void;
1513
+ scroll?: (oEvent: Event<$AccordionSectionScrollEventParameters>) => void;
1514
+ }
1515
+
1516
+ export interface $AccordionSectionScrollEventParameters {
1517
+ /**
1518
+ * Horizontal scroll position
1519
+ */
1520
+ left?: int;
1521
+
1522
+ /**
1523
+ * Vertical scroll position
1524
+ */
1525
+ top?: int;
1509
1526
  }
1510
1527
  }
1511
1528
 
@@ -1526,7 +1543,7 @@ declare module "sap/ui/commons/ApplicationHeader" {
1526
1543
  * The application header control stands on the top of any application page. It consists of 4 areas: Logo
1527
1544
  * area, Function area provided by application, Search area, Logout area.
1528
1545
  */
1529
- export default class ApplicationHeader extends Control {
1546
+ class ApplicationHeader extends Control {
1530
1547
  /**
1531
1548
  * Constructor for a new ApplicationHeader.
1532
1549
  *
@@ -1786,6 +1803,7 @@ declare module "sap/ui/commons/ApplicationHeader" {
1786
1803
  sUserName?: string
1787
1804
  ): this;
1788
1805
  }
1806
+ export default ApplicationHeader;
1789
1807
 
1790
1808
  export interface $ApplicationHeaderSettings extends $ControlSettings {
1791
1809
  /**
@@ -1818,6 +1836,8 @@ declare module "sap/ui/commons/ApplicationHeader" {
1818
1836
  */
1819
1837
  logoff?: (oEvent: Event) => void;
1820
1838
  }
1839
+
1840
+ export interface $ApplicationHeaderLogoffEventParameters {}
1821
1841
  }
1822
1842
 
1823
1843
  declare module "sap/ui/commons/Area" {
@@ -1835,7 +1855,7 @@ declare module "sap/ui/commons/Area" {
1835
1855
  * Used for defining areas in an image map. At runtime, the user can trigger an action, or start a URL,
1836
1856
  * from the single image areas.
1837
1857
  */
1838
- export default class Area extends UI5Element {
1858
+ class Area extends UI5Element {
1839
1859
  /**
1840
1860
  * Constructor for a new Area.
1841
1861
  *
@@ -1989,6 +2009,7 @@ declare module "sap/ui/commons/Area" {
1989
2009
  sShape?: string
1990
2010
  ): this;
1991
2011
  }
2012
+ export default Area;
1992
2013
 
1993
2014
  export interface $AreaSettings extends $ElementSettings {
1994
2015
  /**
@@ -2035,7 +2056,7 @@ declare module "sap/ui/commons/AutoComplete" {
2035
2056
  *
2036
2057
  * Textfield with list based text completion.
2037
2058
  */
2038
- export default class AutoComplete extends ComboBox implements ToolbarItem {
2059
+ class AutoComplete extends ComboBox implements ToolbarItem {
2039
2060
  __implements__sap_ui_commons_ToolbarItem: boolean;
2040
2061
  /**
2041
2062
  * Constructor for a new AutoComplete.
@@ -2116,7 +2137,7 @@ declare module "sap/ui/commons/AutoComplete" {
2116
2137
  /**
2117
2138
  * The function to be called when the event occurs
2118
2139
  */
2119
- fnFunction: (p1: Event) => void,
2140
+ fnFunction: (p1: Event<$AutoCompleteSuggestEventParameters>) => void,
2120
2141
  /**
2121
2142
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.AutoComplete` itself
2122
2143
  */
@@ -2136,7 +2157,7 @@ declare module "sap/ui/commons/AutoComplete" {
2136
2157
  /**
2137
2158
  * The function to be called when the event occurs
2138
2159
  */
2139
- fnFunction: (p1: Event) => void,
2160
+ fnFunction: (p1: Event<$AutoCompleteSuggestEventParameters>) => void,
2140
2161
  /**
2141
2162
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.AutoComplete` itself
2142
2163
  */
@@ -2153,7 +2174,7 @@ declare module "sap/ui/commons/AutoComplete" {
2153
2174
  /**
2154
2175
  * The function to be called, when the event occurs
2155
2176
  */
2156
- fnFunction: (p1: Event) => void,
2177
+ fnFunction: (p1: Event<$AutoCompleteSuggestEventParameters>) => void,
2157
2178
  /**
2158
2179
  * Context object on which the given function had to be called
2159
2180
  */
@@ -2170,12 +2191,7 @@ declare module "sap/ui/commons/AutoComplete" {
2170
2191
  /**
2171
2192
  * Parameters to pass along with the event
2172
2193
  */
2173
- mParameters?: {
2174
- /**
2175
- * The current value which was typed in.
2176
- */
2177
- suggestValue?: string;
2178
- }
2194
+ mParameters?: $AutoCompleteSuggestEventParameters
2179
2195
  ): this;
2180
2196
  /**
2181
2197
  * Gets current value of property {@link #getEnableScrolling enableScrolling}.
@@ -2244,6 +2260,7 @@ declare module "sap/ui/commons/AutoComplete" {
2244
2260
  */
2245
2261
  setSelectedKey(sSelectedKey: string): this;
2246
2262
  }
2263
+ export default AutoComplete;
2247
2264
 
2248
2265
  export interface $AutoCompleteSettings extends $ComboBoxSettings {
2249
2266
  /**
@@ -2255,7 +2272,14 @@ declare module "sap/ui/commons/AutoComplete" {
2255
2272
  /**
2256
2273
  * Fired when the user has changed the value and a suggestion list update should occur.
2257
2274
  */
2258
- suggest?: (oEvent: Event) => void;
2275
+ suggest?: (oEvent: Event<$AutoCompleteSuggestEventParameters>) => void;
2276
+ }
2277
+
2278
+ export interface $AutoCompleteSuggestEventParameters {
2279
+ /**
2280
+ * The current value which was typed in.
2281
+ */
2282
+ suggestValue?: string;
2259
2283
  }
2260
2284
  }
2261
2285
 
@@ -2308,7 +2332,7 @@ declare module "sap/ui/commons/layout/BorderLayout" {
2308
2332
  * Footer; Begin: Left/right-hand side panel; Center: Content area in the middle; End: Right/left-hand side
2309
2333
  * panel.
2310
2334
  */
2311
- export default class BorderLayout extends Control {
2335
+ class BorderLayout extends Control {
2312
2336
  /**
2313
2337
  * Constructor for a new layout/BorderLayout.
2314
2338
  *
@@ -2754,6 +2778,7 @@ declare module "sap/ui/commons/layout/BorderLayout" {
2754
2778
  sWidth?: CSSSize
2755
2779
  ): this;
2756
2780
  }
2781
+ export default BorderLayout;
2757
2782
 
2758
2783
  export interface $BorderLayoutSettings extends $ControlSettings {
2759
2784
  /**
@@ -2825,9 +2850,7 @@ declare module "sap/ui/commons/Button" {
2825
2850
  * Enables users to trigger actions such as save or print. For the button UI, you can define some text or
2826
2851
  * an icon, or both.
2827
2852
  */
2828
- export default class Button
2829
- extends Control
2830
- implements ToolbarItem, IFormContent {
2853
+ class Button extends Control implements ToolbarItem, IFormContent {
2831
2854
  __implements__sap_ui_commons_ToolbarItem: boolean;
2832
2855
  __implements__sap_ui_core_IFormContent: boolean;
2833
2856
  /**
@@ -3001,13 +3024,11 @@ declare module "sap/ui/commons/Button" {
3001
3024
  */
3002
3025
  getAccessibilityInfo(): AccessibilityInfo;
3003
3026
  /**
3004
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
3005
- * ariaDescribedBy}.
3027
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
3006
3028
  */
3007
3029
  getAriaDescribedBy(): ID[];
3008
3030
  /**
3009
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
3010
- * ariaLabelledBy}.
3031
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
3011
3032
  */
3012
3033
  getAriaLabelledBy(): ID[];
3013
3034
  /**
@@ -3377,6 +3398,7 @@ declare module "sap/ui/commons/Button" {
3377
3398
  sWidth?: CSSSize
3378
3399
  ): this;
3379
3400
  }
3401
+ export default Button;
3380
3402
 
3381
3403
  export interface $ButtonSettings extends $ControlSettings {
3382
3404
  /**
@@ -3465,6 +3487,8 @@ declare module "sap/ui/commons/Button" {
3465
3487
  */
3466
3488
  press?: (oEvent: Event) => void;
3467
3489
  }
3490
+
3491
+ export interface $ButtonPressEventParameters {}
3468
3492
  }
3469
3493
 
3470
3494
  declare module "sap/ui/commons/Callout" {
@@ -3486,7 +3510,7 @@ declare module "sap/ui/commons/Callout" {
3486
3510
  * Callout is a small popup with some useful information and links that is shown when a mouse is hovered
3487
3511
  * over a specific view element.
3488
3512
  */
3489
- export default class Callout extends CalloutBase {
3513
+ class Callout extends CalloutBase {
3490
3514
  /**
3491
3515
  * Constructor for a new Callout.
3492
3516
  *
@@ -3619,6 +3643,7 @@ declare module "sap/ui/commons/Callout" {
3619
3643
  vContent: int | string | Control
3620
3644
  ): Control | null;
3621
3645
  }
3646
+ export default Callout;
3622
3647
 
3623
3648
  export interface $CalloutSettings extends $CalloutBaseSettings {
3624
3649
  /**
@@ -3636,18 +3661,18 @@ declare module "sap/ui/commons/CalloutBase" {
3636
3661
 
3637
3662
  import Event from "sap/ui/base/Event";
3638
3663
 
3639
- import Control from "sap/ui/core/Control";
3640
-
3641
3664
  import ElementMetadata from "sap/ui/core/ElementMetadata";
3642
3665
 
3643
3666
  import { Dock } from "sap/ui/core/library";
3644
3667
 
3668
+ import Control from "sap/ui/core/Control";
3669
+
3645
3670
  /**
3646
3671
  * @deprecated (since 1.38)
3647
3672
  *
3648
3673
  * CalloutBase is a building block for Callout. Do not use it directly. Use the Callout control instead
3649
3674
  */
3650
- export default class CalloutBase extends TooltipBase {
3675
+ class CalloutBase extends TooltipBase {
3651
3676
  /**
3652
3677
  * Constructor for a new CalloutBase.
3653
3678
  *
@@ -3733,7 +3758,7 @@ declare module "sap/ui/commons/CalloutBase" {
3733
3758
  /**
3734
3759
  * The function to be called when the event occurs
3735
3760
  */
3736
- fnFunction: (p1: Event) => void,
3761
+ fnFunction: (p1: Event<$CalloutBaseBeforeOpenEventParameters>) => void,
3737
3762
  /**
3738
3763
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.CalloutBase` itself
3739
3764
  */
@@ -3754,7 +3779,7 @@ declare module "sap/ui/commons/CalloutBase" {
3754
3779
  /**
3755
3780
  * The function to be called when the event occurs
3756
3781
  */
3757
- fnFunction: (p1: Event) => void,
3782
+ fnFunction: (p1: Event<$CalloutBaseBeforeOpenEventParameters>) => void,
3758
3783
  /**
3759
3784
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.CalloutBase` itself
3760
3785
  */
@@ -3824,7 +3849,7 @@ declare module "sap/ui/commons/CalloutBase" {
3824
3849
  /**
3825
3850
  * The function to be called when the event occurs
3826
3851
  */
3827
- fnFunction: (p1: Event) => void,
3852
+ fnFunction: (p1: Event<$CalloutBaseOpenEventParameters>) => void,
3828
3853
  /**
3829
3854
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.CalloutBase` itself
3830
3855
  */
@@ -3844,7 +3869,7 @@ declare module "sap/ui/commons/CalloutBase" {
3844
3869
  /**
3845
3870
  * The function to be called when the event occurs
3846
3871
  */
3847
- fnFunction: (p1: Event) => void,
3872
+ fnFunction: (p1: Event<$CalloutBaseOpenEventParameters>) => void,
3848
3873
  /**
3849
3874
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.CalloutBase` itself
3850
3875
  */
@@ -3914,7 +3939,7 @@ declare module "sap/ui/commons/CalloutBase" {
3914
3939
  /**
3915
3940
  * The function to be called, when the event occurs
3916
3941
  */
3917
- fnFunction: (p1: Event) => void,
3942
+ fnFunction: (p1: Event<$CalloutBaseBeforeOpenEventParameters>) => void,
3918
3943
  /**
3919
3944
  * Context object on which the given function had to be called
3920
3945
  */
@@ -3948,7 +3973,7 @@ declare module "sap/ui/commons/CalloutBase" {
3948
3973
  /**
3949
3974
  * The function to be called, when the event occurs
3950
3975
  */
3951
- fnFunction: (p1: Event) => void,
3976
+ fnFunction: (p1: Event<$CalloutBaseOpenEventParameters>) => void,
3952
3977
  /**
3953
3978
  * Context object on which the given function had to be called
3954
3979
  */
@@ -3987,12 +4012,7 @@ declare module "sap/ui/commons/CalloutBase" {
3987
4012
  /**
3988
4013
  * Parameters to pass along with the event
3989
4014
  */
3990
- mParameters?: {
3991
- /**
3992
- * Parent control that has this Callout as a tooltip
3993
- */
3994
- parent?: Control;
3995
- }
4015
+ mParameters?: $CalloutBaseBeforeOpenEventParameters
3996
4016
  ): boolean;
3997
4017
  /**
3998
4018
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -4018,12 +4038,7 @@ declare module "sap/ui/commons/CalloutBase" {
4018
4038
  /**
4019
4039
  * Parameters to pass along with the event
4020
4040
  */
4021
- mParameters?: {
4022
- /**
4023
- * Parent control that has this Callout as a tooltip
4024
- */
4025
- parent?: Control;
4026
- }
4041
+ mParameters?: $CalloutBaseOpenEventParameters
4027
4042
  ): this;
4028
4043
  /**
4029
4044
  * @SINCE 1.11.0
@@ -4056,12 +4071,13 @@ declare module "sap/ui/commons/CalloutBase" {
4056
4071
  atPosition: Dock
4057
4072
  ): this;
4058
4073
  }
4074
+ export default CalloutBase;
4059
4075
 
4060
4076
  export interface $CalloutBaseSettings extends $TooltipBaseSettings {
4061
4077
  /**
4062
4078
  * The event is fired when the popup is opened.
4063
4079
  */
4064
- open?: (oEvent: Event) => void;
4080
+ open?: (oEvent: Event<$CalloutBaseOpenEventParameters>) => void;
4065
4081
 
4066
4082
  /**
4067
4083
  * Event is fired when the Callout window is closed.
@@ -4072,7 +4088,7 @@ declare module "sap/ui/commons/CalloutBase" {
4072
4088
  * Event is fired before a Callout is displayed. Call the preventDefault method of the event object to postpone
4073
4089
  * opening. Application may use this event to start asynchronous Ajax call to load the Callout content
4074
4090
  */
4075
- beforeOpen?: (oEvent: Event) => void;
4091
+ beforeOpen?: (oEvent: Event<$CalloutBaseBeforeOpenEventParameters>) => void;
4076
4092
 
4077
4093
  /**
4078
4094
  * @SINCE 1.11.0
@@ -4081,6 +4097,24 @@ declare module "sap/ui/commons/CalloutBase" {
4081
4097
  */
4082
4098
  opened?: (oEvent: Event) => void;
4083
4099
  }
4100
+
4101
+ export interface $CalloutBaseBeforeOpenEventParameters {
4102
+ /**
4103
+ * Parent control that has this Callout as a tooltip
4104
+ */
4105
+ parent?: Control;
4106
+ }
4107
+
4108
+ export interface $CalloutBaseCloseEventParameters {}
4109
+
4110
+ export interface $CalloutBaseOpenEventParameters {
4111
+ /**
4112
+ * Parent control that has this Callout as a tooltip
4113
+ */
4114
+ parent?: Control;
4115
+ }
4116
+
4117
+ export interface $CalloutBaseOpenedEventParameters {}
4084
4118
  }
4085
4119
 
4086
4120
  declare module "sap/ui/commons/Carousel" {
@@ -4105,7 +4139,7 @@ declare module "sap/ui/commons/Carousel" {
4105
4139
  * can define how many content items should be displayed at once or let the Carousel determine that for
4106
4140
  * you. Navigation is done through buttons or keys.
4107
4141
  */
4108
- export default class Carousel extends Control {
4142
+ class Carousel extends Control {
4109
4143
  /**
4110
4144
  * Constructor for a new Carousel.
4111
4145
  *
@@ -4528,6 +4562,7 @@ declare module "sap/ui/commons/Carousel" {
4528
4562
  */
4529
4563
  unbindContent(): this;
4530
4564
  }
4565
+ export default Carousel;
4531
4566
 
4532
4567
  export interface $CarouselSettings extends $ControlSettings {
4533
4568
  /**
@@ -4611,7 +4646,7 @@ declare module "sap/ui/commons/CheckBox" {
4611
4646
  * Provides a box which can be flagged, the box has a label. A check box can either stand alone, or in a
4612
4647
  * group with other check boxes. As an option, the boxes can initially be set to status 'Not Editable'.
4613
4648
  */
4614
- export default class CheckBox extends Control implements IFormContent {
4649
+ class CheckBox extends Control implements IFormContent {
4615
4650
  __implements__sap_ui_core_IFormContent: boolean;
4616
4651
  /**
4617
4652
  * Constructor for a new CheckBox.
@@ -4714,7 +4749,7 @@ declare module "sap/ui/commons/CheckBox" {
4714
4749
  /**
4715
4750
  * The function to be called when the event occurs
4716
4751
  */
4717
- fnFunction: (p1: Event) => void,
4752
+ fnFunction: (p1: Event<$CheckBoxChangeEventParameters>) => void,
4718
4753
  /**
4719
4754
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.CheckBox` itself
4720
4755
  */
@@ -4734,7 +4769,7 @@ declare module "sap/ui/commons/CheckBox" {
4734
4769
  /**
4735
4770
  * The function to be called when the event occurs
4736
4771
  */
4737
- fnFunction: (p1: Event) => void,
4772
+ fnFunction: (p1: Event<$CheckBoxChangeEventParameters>) => void,
4738
4773
  /**
4739
4774
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.CheckBox` itself
4740
4775
  */
@@ -4765,7 +4800,7 @@ declare module "sap/ui/commons/CheckBox" {
4765
4800
  /**
4766
4801
  * The function to be called, when the event occurs
4767
4802
  */
4768
- fnFunction: (p1: Event) => void,
4803
+ fnFunction: (p1: Event<$CheckBoxChangeEventParameters>) => void,
4769
4804
  /**
4770
4805
  * Context object on which the given function had to be called
4771
4806
  */
@@ -4782,12 +4817,7 @@ declare module "sap/ui/commons/CheckBox" {
4782
4817
  /**
4783
4818
  * Parameters to pass along with the event
4784
4819
  */
4785
- mParameters?: {
4786
- /**
4787
- * Checks whether the box is flagged or not flagged.
4788
- */
4789
- checked?: boolean;
4790
- }
4820
+ mParameters?: $CheckBoxChangeEventParameters
4791
4821
  ): this;
4792
4822
  /**
4793
4823
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -4799,13 +4829,11 @@ declare module "sap/ui/commons/CheckBox" {
4799
4829
  */
4800
4830
  getAccessibilityInfo(): AccessibilityInfo;
4801
4831
  /**
4802
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
4803
- * ariaDescribedBy}.
4832
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
4804
4833
  */
4805
4834
  getAriaDescribedBy(): ID[];
4806
4835
  /**
4807
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
4808
- * ariaLabelledBy}.
4836
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
4809
4837
  */
4810
4838
  getAriaLabelledBy(): ID[];
4811
4839
  /**
@@ -5063,6 +5091,7 @@ declare module "sap/ui/commons/CheckBox" {
5063
5091
  */
5064
5092
  unbindChecked(): this;
5065
5093
  }
5094
+ export default CheckBox;
5066
5095
 
5067
5096
  export interface $CheckBoxSettings extends $ControlSettings {
5068
5097
  /**
@@ -5127,7 +5156,14 @@ declare module "sap/ui/commons/CheckBox" {
5127
5156
  /**
5128
5157
  * Event is triggered when the control status is changed by the user by flagging or unflagging the checkbox.
5129
5158
  */
5130
- change?: (oEvent: Event) => void;
5159
+ change?: (oEvent: Event<$CheckBoxChangeEventParameters>) => void;
5160
+ }
5161
+
5162
+ export interface $CheckBoxChangeEventParameters {
5163
+ /**
5164
+ * Checks whether the box is flagged or not flagged.
5165
+ */
5166
+ checked?: boolean;
5131
5167
  }
5132
5168
  }
5133
5169
 
@@ -5145,7 +5181,7 @@ declare module "sap/ui/commons/ColorPicker" {
5145
5181
  * This control gives the user the opportunity to choose a color. The color can be defined using HEX-, RGB-
5146
5182
  * or HSV-values or a CSS colorname.
5147
5183
  */
5148
- export default class ColorPicker extends ColorPicker1 {
5184
+ class ColorPicker extends ColorPicker1 {
5149
5185
  /**
5150
5186
  * Constructor for a new ColorPicker.
5151
5187
  *
@@ -5153,8 +5189,8 @@ declare module "sap/ui/commons/ColorPicker" {
5153
5189
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
5154
5190
  * of the syntax of the settings object.
5155
5191
  *
5156
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.ColorPicker#constructor
5157
- * sap.ui.unified.ColorPicker} can be used.
5192
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.ColorPicker#constructor sap.ui.unified.ColorPicker }
5193
+ * can be used.
5158
5194
  */
5159
5195
  constructor(
5160
5196
  /**
@@ -5169,8 +5205,8 @@ declare module "sap/ui/commons/ColorPicker" {
5169
5205
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
5170
5206
  * of the syntax of the settings object.
5171
5207
  *
5172
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.ColorPicker#constructor
5173
- * sap.ui.unified.ColorPicker} can be used.
5208
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.ColorPicker#constructor sap.ui.unified.ColorPicker }
5209
+ * can be used.
5174
5210
  */
5175
5211
  constructor(
5176
5212
  /**
@@ -5213,6 +5249,7 @@ declare module "sap/ui/commons/ColorPicker" {
5213
5249
  */
5214
5250
  static getMetadata(): ElementMetadata;
5215
5251
  }
5252
+ export default ColorPicker;
5216
5253
 
5217
5254
  export interface $ColorPickerSettings extends $ColorPickerSettings1 {}
5218
5255
  }
@@ -5221,6 +5258,7 @@ declare module "sap/ui/commons/ComboBox" {
5221
5258
  import {
5222
5259
  default as TextField,
5223
5260
  $TextFieldSettings,
5261
+ $TextFieldChangeEventParameters,
5224
5262
  } from "sap/ui/commons/TextField";
5225
5263
 
5226
5264
  import { ToolbarItem } from "sap/ui/commons/library";
@@ -5245,7 +5283,7 @@ declare module "sap/ui/commons/ComboBox" {
5245
5283
  * of a list of pre-defined items. The choosable items can be provided in the form of a complete `ListBox`,
5246
5284
  * single `ListItems`.
5247
5285
  */
5248
- export default class ComboBox extends TextField implements ToolbarItem {
5286
+ class ComboBox extends TextField implements ToolbarItem {
5249
5287
  __implements__sap_ui_commons_ToolbarItem: boolean;
5250
5288
  /**
5251
5289
  * Constructor for a new ComboBox.
@@ -5642,6 +5680,7 @@ declare module "sap/ui/commons/ComboBox" {
5642
5680
  */
5643
5681
  unbindItems(): this;
5644
5682
  }
5683
+ export default ComboBox;
5645
5684
 
5646
5685
  export interface $ComboBoxSettings extends $TextFieldSettings {
5647
5686
  /**
@@ -5690,6 +5729,14 @@ declare module "sap/ui/commons/ComboBox" {
5690
5729
  */
5691
5730
  listBox?: ListBox | string;
5692
5731
  }
5732
+
5733
+ export interface $ComboBoxChangeEventParameters
5734
+ extends $TextFieldChangeEventParameters {
5735
+ /**
5736
+ * The new / changed item of the ComboBox.
5737
+ */
5738
+ selectedItem?: ListItem;
5739
+ }
5693
5740
  }
5694
5741
 
5695
5742
  declare module "sap/ui/commons/DatePicker" {
@@ -5714,7 +5761,7 @@ declare module "sap/ui/commons/DatePicker" {
5714
5761
  * DatePicker should load the unified library. Otherwise it will be loaded the first time a DatePicker is
5715
5762
  * opened.
5716
5763
  */
5717
- export default class DatePicker extends TextField {
5764
+ class DatePicker extends TextField {
5718
5765
  /**
5719
5766
  * Constructor for a new DatePicker.
5720
5767
  *
@@ -5860,6 +5907,7 @@ declare module "sap/ui/commons/DatePicker" {
5860
5907
  sYyyymmdd?: string
5861
5908
  ): this;
5862
5909
  }
5910
+ export default DatePicker;
5863
5911
 
5864
5912
  export interface $DatePickerSettings extends $TextFieldSettings {
5865
5913
  /**
@@ -5908,7 +5956,7 @@ declare module "sap/ui/commons/Dialog" {
5908
5956
  * such as popups with fixed sizes, popups with unlimited width, scrolling bars for large windows, and control
5909
5957
  * nesting (for example, a drop-down list can be included in the window).
5910
5958
  */
5911
- export default class Dialog extends Control implements PopupInterface {
5959
+ class Dialog extends Control implements PopupInterface {
5912
5960
  __implements__sap_ui_core_PopupInterface: boolean;
5913
5961
  /**
5914
5962
  * Constructor for a new Dialog.
@@ -6012,7 +6060,7 @@ declare module "sap/ui/commons/Dialog" {
6012
6060
  /**
6013
6061
  * The function to be called when the event occurs
6014
6062
  */
6015
- fnFunction: (p1: Event) => void,
6063
+ fnFunction: (p1: Event<$DialogClosedEventParameters>) => void,
6016
6064
  /**
6017
6065
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.Dialog` itself
6018
6066
  */
@@ -6033,7 +6081,7 @@ declare module "sap/ui/commons/Dialog" {
6033
6081
  /**
6034
6082
  * The function to be called when the event occurs
6035
6083
  */
6036
- fnFunction: (p1: Event) => void,
6084
+ fnFunction: (p1: Event<$DialogClosedEventParameters>) => void,
6037
6085
  /**
6038
6086
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.Dialog` itself
6039
6087
  */
@@ -6066,7 +6114,7 @@ declare module "sap/ui/commons/Dialog" {
6066
6114
  /**
6067
6115
  * The function to be called, when the event occurs
6068
6116
  */
6069
- fnFunction: (p1: Event) => void,
6117
+ fnFunction: (p1: Event<$DialogClosedEventParameters>) => void,
6070
6118
  /**
6071
6119
  * Context object on which the given function had to be called
6072
6120
  */
@@ -6083,24 +6131,7 @@ declare module "sap/ui/commons/Dialog" {
6083
6131
  /**
6084
6132
  * Parameters to pass along with the event
6085
6133
  */
6086
- mParameters?: {
6087
- /**
6088
- * The width of the dialog when closed
6089
- */
6090
- width?: int;
6091
- /**
6092
- * The height of the dialog when closed
6093
- */
6094
- height?: int;
6095
- /**
6096
- * The top position of the dialog when closed
6097
- */
6098
- top?: int;
6099
- /**
6100
- * The left position of the dialog when closed
6101
- */
6102
- left?: int;
6103
- }
6134
+ mParameters?: $DialogClosedEventParameters
6104
6135
  ): this;
6105
6136
  /**
6106
6137
  * Gets current value of property {@link #getAccessibleRole accessibleRole}.
@@ -6751,6 +6782,7 @@ declare module "sap/ui/commons/Dialog" {
6751
6782
  sWidth?: CSSSize
6752
6783
  ): this;
6753
6784
  }
6785
+ export default Dialog;
6754
6786
 
6755
6787
  export interface $DialogSettings extends $ControlSettings {
6756
6788
  /**
@@ -6889,7 +6921,29 @@ declare module "sap/ui/commons/Dialog" {
6889
6921
  * Event is fired when the dialog has been closed (after closing-animation etc.). Event parameters provide
6890
6922
  * information about last position and last size.
6891
6923
  */
6892
- closed?: (oEvent: Event) => void;
6924
+ closed?: (oEvent: Event<$DialogClosedEventParameters>) => void;
6925
+ }
6926
+
6927
+ export interface $DialogClosedEventParameters {
6928
+ /**
6929
+ * The width of the dialog when closed
6930
+ */
6931
+ width?: int;
6932
+
6933
+ /**
6934
+ * The height of the dialog when closed
6935
+ */
6936
+ height?: int;
6937
+
6938
+ /**
6939
+ * The top position of the dialog when closed
6940
+ */
6941
+ top?: int;
6942
+
6943
+ /**
6944
+ * The left position of the dialog when closed
6945
+ */
6946
+ left?: int;
6893
6947
  }
6894
6948
  }
6895
6949
 
@@ -6913,7 +6967,7 @@ declare module "sap/ui/commons/DropdownBox" {
6913
6967
  * The control provides a field that allows end users to an entry out of a list of pre-defined items. The
6914
6968
  * choosable items can be provided in the form of a complete `ListBox`, single `ListItems`.
6915
6969
  */
6916
- export default class DropdownBox extends ComboBox {
6970
+ class DropdownBox extends ComboBox {
6917
6971
  /**
6918
6972
  * Constructor for a new DropdownBox.
6919
6973
  *
@@ -6994,7 +7048,7 @@ declare module "sap/ui/commons/DropdownBox" {
6994
7048
  /**
6995
7049
  * The function to be called when the event occurs
6996
7050
  */
6997
- fnFunction: (p1: Event) => void,
7051
+ fnFunction: (p1: Event<$DropdownBoxSearchHelpEventParameters>) => void,
6998
7052
  /**
6999
7053
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.DropdownBox` itself
7000
7054
  */
@@ -7015,7 +7069,7 @@ declare module "sap/ui/commons/DropdownBox" {
7015
7069
  /**
7016
7070
  * The function to be called when the event occurs
7017
7071
  */
7018
- fnFunction: (p1: Event) => void,
7072
+ fnFunction: (p1: Event<$DropdownBoxSearchHelpEventParameters>) => void,
7019
7073
  /**
7020
7074
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.DropdownBox` itself
7021
7075
  */
@@ -7037,7 +7091,7 @@ declare module "sap/ui/commons/DropdownBox" {
7037
7091
  /**
7038
7092
  * The function to be called, when the event occurs
7039
7093
  */
7040
- fnFunction: (p1: Event) => void,
7094
+ fnFunction: (p1: Event<$DropdownBoxSearchHelpEventParameters>) => void,
7041
7095
  /**
7042
7096
  * Context object on which the given function had to be called
7043
7097
  */
@@ -7054,12 +7108,7 @@ declare module "sap/ui/commons/DropdownBox" {
7054
7108
  /**
7055
7109
  * Parameters to pass along with the event
7056
7110
  */
7057
- mParameters?: {
7058
- /**
7059
- * The current value of the DropdownBox.
7060
- */
7061
- value?: string;
7062
- }
7111
+ mParameters?: $DropdownBoxSearchHelpEventParameters
7063
7112
  ): this;
7064
7113
  /**
7065
7114
  * Gets current value of property {@link #getMaxHistoryItems maxHistoryItems}.
@@ -7346,6 +7395,7 @@ declare module "sap/ui/commons/DropdownBox" {
7346
7395
  sSearchHelpText: string
7347
7396
  ): this;
7348
7397
  }
7398
+ export default DropdownBox;
7349
7399
 
7350
7400
  export interface $DropdownBoxSettings extends $ComboBoxSettings {
7351
7401
  /**
@@ -7380,7 +7430,14 @@ declare module "sap/ui/commons/DropdownBox" {
7380
7430
  * Event fired whenever the configured searchHelpItem is clicked or the searchHelpItem is configured and
7381
7431
  * F4 key is pressed.
7382
7432
  */
7383
- searchHelp?: (oEvent: Event) => void;
7433
+ searchHelp?: (oEvent: Event<$DropdownBoxSearchHelpEventParameters>) => void;
7434
+ }
7435
+
7436
+ export interface $DropdownBoxSearchHelpEventParameters {
7437
+ /**
7438
+ * The current value of the DropdownBox.
7439
+ */
7440
+ value?: string;
7384
7441
  }
7385
7442
  }
7386
7443
 
@@ -7401,7 +7458,7 @@ declare module "sap/ui/commons/FileUploader" {
7401
7458
  * with explicit calls, adjustable control sizes, text display after uploads, or tooltips containing complete
7402
7459
  * file paths.
7403
7460
  */
7404
- export default class FileUploader extends FileUploader1 {
7461
+ class FileUploader extends FileUploader1 {
7405
7462
  /**
7406
7463
  * Constructor for a new FileUploader.
7407
7464
  *
@@ -7409,8 +7466,8 @@ declare module "sap/ui/commons/FileUploader" {
7409
7466
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
7410
7467
  * of the syntax of the settings object.
7411
7468
  *
7412
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.FileUploader#constructor
7413
- * sap.ui.unified.FileUploader} can be used.
7469
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.FileUploader#constructor sap.ui.unified.FileUploader }
7470
+ * can be used.
7414
7471
  */
7415
7472
  constructor(
7416
7473
  /**
@@ -7425,8 +7482,8 @@ declare module "sap/ui/commons/FileUploader" {
7425
7482
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
7426
7483
  * of the syntax of the settings object.
7427
7484
  *
7428
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.FileUploader#constructor
7429
- * sap.ui.unified.FileUploader} can be used.
7485
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.FileUploader#constructor sap.ui.unified.FileUploader }
7486
+ * can be used.
7430
7487
  */
7431
7488
  constructor(
7432
7489
  /**
@@ -7469,6 +7526,7 @@ declare module "sap/ui/commons/FileUploader" {
7469
7526
  */
7470
7527
  static getMetadata(): ElementMetadata;
7471
7528
  }
7529
+ export default FileUploader;
7472
7530
 
7473
7531
  export interface $FileUploaderSettings extends $FileUploaderSettings1 {}
7474
7532
  }
@@ -7487,7 +7545,7 @@ declare module "sap/ui/commons/FileUploaderParameter" {
7487
7545
  *
7488
7546
  * Represents a parameter for the FileUploader which is rendered as a hidden inputfield.
7489
7547
  */
7490
- export default class FileUploaderParameter extends FileUploaderParameter1 {
7548
+ class FileUploaderParameter extends FileUploaderParameter1 {
7491
7549
  /**
7492
7550
  * Constructor for a new FileUploaderParameter.
7493
7551
  *
@@ -7495,8 +7553,8 @@ declare module "sap/ui/commons/FileUploaderParameter" {
7495
7553
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
7496
7554
  * of the syntax of the settings object.
7497
7555
  *
7498
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.FileUploaderParameter#constructor
7499
- * sap.ui.unified.FileUploaderParameter} can be used.
7556
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.FileUploaderParameter#constructor sap.ui.unified.FileUploaderParameter }
7557
+ * can be used.
7500
7558
  */
7501
7559
  constructor(
7502
7560
  /**
@@ -7511,8 +7569,8 @@ declare module "sap/ui/commons/FileUploaderParameter" {
7511
7569
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
7512
7570
  * of the syntax of the settings object.
7513
7571
  *
7514
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.FileUploaderParameter#constructor
7515
- * sap.ui.unified.FileUploaderParameter} can be used.
7572
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.FileUploaderParameter#constructor sap.ui.unified.FileUploaderParameter }
7573
+ * can be used.
7516
7574
  */
7517
7575
  constructor(
7518
7576
  /**
@@ -7555,6 +7613,7 @@ declare module "sap/ui/commons/FileUploaderParameter" {
7555
7613
  */
7556
7614
  static getMetadata(): ElementMetadata;
7557
7615
  }
7616
+ export default FileUploaderParameter;
7558
7617
 
7559
7618
  export interface $FileUploaderParameterSettings
7560
7619
  extends $FileUploaderParameterSettings1 {}
@@ -7609,9 +7668,7 @@ declare module "sap/ui/commons/TextField" {
7609
7668
  *
7610
7669
  * Renders an input field for text input.
7611
7670
  */
7612
- export default class TextField
7613
- extends Control
7614
- implements ToolbarItem, IFormContent {
7671
+ class TextField extends Control implements ToolbarItem, IFormContent {
7615
7672
  __implements__sap_ui_commons_ToolbarItem: boolean;
7616
7673
  __implements__sap_ui_core_IFormContent: boolean;
7617
7674
  /**
@@ -7728,7 +7785,7 @@ declare module "sap/ui/commons/TextField" {
7728
7785
  /**
7729
7786
  * The function to be called when the event occurs
7730
7787
  */
7731
- fnFunction: (p1: Event) => void,
7788
+ fnFunction: (p1: Event<$TextFieldChangeEventParameters>) => void,
7732
7789
  /**
7733
7790
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.TextField` itself
7734
7791
  */
@@ -7749,7 +7806,7 @@ declare module "sap/ui/commons/TextField" {
7749
7806
  /**
7750
7807
  * The function to be called when the event occurs
7751
7808
  */
7752
- fnFunction: (p1: Event) => void,
7809
+ fnFunction: (p1: Event<$TextFieldChangeEventParameters>) => void,
7753
7810
  /**
7754
7811
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.TextField` itself
7755
7812
  */
@@ -7776,7 +7833,7 @@ declare module "sap/ui/commons/TextField" {
7776
7833
  /**
7777
7834
  * The function to be called when the event occurs
7778
7835
  */
7779
- fnFunction: (p1: Event) => void,
7836
+ fnFunction: (p1: Event<$TextFieldLiveChangeEventParameters>) => void,
7780
7837
  /**
7781
7838
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.TextField` itself
7782
7839
  */
@@ -7798,7 +7855,7 @@ declare module "sap/ui/commons/TextField" {
7798
7855
  /**
7799
7856
  * The function to be called when the event occurs
7800
7857
  */
7801
- fnFunction: (p1: Event) => void,
7858
+ fnFunction: (p1: Event<$TextFieldLiveChangeEventParameters>) => void,
7802
7859
  /**
7803
7860
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.TextField` itself
7804
7861
  */
@@ -7829,7 +7886,7 @@ declare module "sap/ui/commons/TextField" {
7829
7886
  /**
7830
7887
  * The function to be called, when the event occurs
7831
7888
  */
7832
- fnFunction: (p1: Event) => void,
7889
+ fnFunction: (p1: Event<$TextFieldChangeEventParameters>) => void,
7833
7890
  /**
7834
7891
  * Context object on which the given function had to be called
7835
7892
  */
@@ -7846,7 +7903,7 @@ declare module "sap/ui/commons/TextField" {
7846
7903
  /**
7847
7904
  * The function to be called, when the event occurs
7848
7905
  */
7849
- fnFunction: (p1: Event) => void,
7906
+ fnFunction: (p1: Event<$TextFieldLiveChangeEventParameters>) => void,
7850
7907
  /**
7851
7908
  * Context object on which the given function had to be called
7852
7909
  */
@@ -7863,12 +7920,7 @@ declare module "sap/ui/commons/TextField" {
7863
7920
  /**
7864
7921
  * Parameters to pass along with the event
7865
7922
  */
7866
- mParameters?: {
7867
- /**
7868
- * The new / changed value of the `TextField`.
7869
- */
7870
- newValue?: string;
7871
- }
7923
+ mParameters?: $TextFieldChangeEventParameters
7872
7924
  ): this;
7873
7925
  /**
7874
7926
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -7881,12 +7933,7 @@ declare module "sap/ui/commons/TextField" {
7881
7933
  /**
7882
7934
  * Parameters to pass along with the event
7883
7935
  */
7884
- mParameters?: {
7885
- /**
7886
- * Current visible value of the `TextField`.
7887
- */
7888
- liveValue?: string;
7889
- }
7936
+ mParameters?: $TextFieldLiveChangeEventParameters
7890
7937
  ): this;
7891
7938
  /**
7892
7939
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -7908,13 +7955,11 @@ declare module "sap/ui/commons/TextField" {
7908
7955
  */
7909
7956
  getAccessibleRole(): AccessibleRole | keyof typeof AccessibleRole;
7910
7957
  /**
7911
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
7912
- * ariaDescribedBy}.
7958
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
7913
7959
  */
7914
7960
  getAriaDescribedBy(): ID[];
7915
7961
  /**
7916
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
7917
- * ariaLabelledBy}.
7962
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
7918
7963
  */
7919
7964
  getAriaLabelledBy(): ID[];
7920
7965
  /**
@@ -8432,6 +8477,7 @@ declare module "sap/ui/commons/TextField" {
8432
8477
  */
8433
8478
  unbindValue(): this;
8434
8479
  }
8480
+ export default TextField;
8435
8481
 
8436
8482
  export interface $TextFieldSettings extends $ControlSettings {
8437
8483
  /**
@@ -8546,14 +8592,28 @@ declare module "sap/ui/commons/TextField" {
8546
8592
  * Event is fired when the text in the field has changed AND the focus leaves the TextField or the Enter
8547
8593
  * key is pressed.
8548
8594
  */
8549
- change?: (oEvent: Event) => void;
8595
+ change?: (oEvent: Event<$TextFieldChangeEventParameters>) => void;
8550
8596
 
8551
8597
  /**
8552
8598
  * This event if fired during typing into the `TextField` and returns the currently entered value. **Note:**
8553
8599
  * This is not the content of the value property. The value property is only updated by ENTER and by leaving
8554
8600
  * the control.
8555
8601
  */
8556
- liveChange?: (oEvent: Event) => void;
8602
+ liveChange?: (oEvent: Event<$TextFieldLiveChangeEventParameters>) => void;
8603
+ }
8604
+
8605
+ export interface $TextFieldChangeEventParameters {
8606
+ /**
8607
+ * The new / changed value of the `TextField`.
8608
+ */
8609
+ newValue?: string;
8610
+ }
8611
+
8612
+ export interface $TextFieldLiveChangeEventParameters {
8613
+ /**
8614
+ * Current visible value of the `TextField`.
8615
+ */
8616
+ liveValue?: string;
8557
8617
  }
8558
8618
  }
8559
8619
 
@@ -8572,7 +8632,7 @@ declare module "sap/ui/commons/form/Form" {
8572
8632
  * Form control. Holder for form control to be rendered in a specific form layout. A Form supports VariantLayoutData
8573
8633
  * for it's conent to allow a simple switching of Layouts.
8574
8634
  */
8575
- export default class Form extends Form1 {
8635
+ class Form extends Form1 {
8576
8636
  /**
8577
8637
  * Constructor for a new form/Form.
8578
8638
  *
@@ -8580,8 +8640,8 @@ declare module "sap/ui/commons/form/Form" {
8580
8640
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
8581
8641
  * of the syntax of the settings object.
8582
8642
  *
8583
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.Form#constructor
8584
- * sap.ui.layout.form.Form} can be used.
8643
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.Form#constructor sap.ui.layout.form.Form }
8644
+ * can be used.
8585
8645
  */
8586
8646
  constructor(
8587
8647
  /**
@@ -8596,8 +8656,8 @@ declare module "sap/ui/commons/form/Form" {
8596
8656
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
8597
8657
  * of the syntax of the settings object.
8598
8658
  *
8599
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.Form#constructor
8600
- * sap.ui.layout.form.Form} can be used.
8659
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.Form#constructor sap.ui.layout.form.Form }
8660
+ * can be used.
8601
8661
  */
8602
8662
  constructor(
8603
8663
  /**
@@ -8665,6 +8725,7 @@ declare module "sap/ui/commons/form/Form" {
8665
8725
  bVisible: boolean
8666
8726
  ): this;
8667
8727
  }
8728
+ export default Form;
8668
8729
 
8669
8730
  export interface $FormSettings extends $FormSettings1 {}
8670
8731
  }
@@ -8683,7 +8744,7 @@ declare module "sap/ui/commons/form/FormContainer" {
8683
8744
  *
8684
8745
  * Used to group form elements.
8685
8746
  */
8686
- export default class FormContainer extends FormContainer1 {
8747
+ class FormContainer extends FormContainer1 {
8687
8748
  /**
8688
8749
  * Constructor for a new form/FormContainer.
8689
8750
  *
@@ -8691,8 +8752,8 @@ declare module "sap/ui/commons/form/FormContainer" {
8691
8752
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
8692
8753
  * of the syntax of the settings object.
8693
8754
  *
8694
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.FormContainer#constructor
8695
- * sap.ui.layout.form.FormContainer} can be used.
8755
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.FormContainer#constructor sap.ui.layout.form.FormContainer }
8756
+ * can be used.
8696
8757
  */
8697
8758
  constructor(
8698
8759
  /**
@@ -8707,8 +8768,8 @@ declare module "sap/ui/commons/form/FormContainer" {
8707
8768
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
8708
8769
  * of the syntax of the settings object.
8709
8770
  *
8710
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.FormContainer#constructor
8711
- * sap.ui.layout.form.FormContainer} can be used.
8771
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.FormContainer#constructor sap.ui.layout.form.FormContainer }
8772
+ * can be used.
8712
8773
  */
8713
8774
  constructor(
8714
8775
  /**
@@ -8776,6 +8837,7 @@ declare module "sap/ui/commons/form/FormContainer" {
8776
8837
  bVisible: boolean
8777
8838
  ): this;
8778
8839
  }
8840
+ export default FormContainer;
8779
8841
 
8780
8842
  export interface $FormContainerSettings extends $FormContainerSettings1 {}
8781
8843
  }
@@ -8794,7 +8856,7 @@ declare module "sap/ui/commons/form/FormElement" {
8794
8856
  *
8795
8857
  * A form element is a combination of one label and different controls associated to this label.
8796
8858
  */
8797
- export default class FormElement extends FormElement1 {
8859
+ class FormElement extends FormElement1 {
8798
8860
  /**
8799
8861
  * Constructor for a new form/FormElement.
8800
8862
  *
@@ -8802,8 +8864,8 @@ declare module "sap/ui/commons/form/FormElement" {
8802
8864
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
8803
8865
  * of the syntax of the settings object.
8804
8866
  *
8805
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.FormElement#constructor
8806
- * sap.ui.layout.form.FormElement} can be used.
8867
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.FormElement#constructor sap.ui.layout.form.FormElement }
8868
+ * can be used.
8807
8869
  */
8808
8870
  constructor(
8809
8871
  /**
@@ -8818,8 +8880,8 @@ declare module "sap/ui/commons/form/FormElement" {
8818
8880
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
8819
8881
  * of the syntax of the settings object.
8820
8882
  *
8821
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.FormElement#constructor
8822
- * sap.ui.layout.form.FormElement} can be used.
8883
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.FormElement#constructor sap.ui.layout.form.FormElement }
8884
+ * can be used.
8823
8885
  */
8824
8886
  constructor(
8825
8887
  /**
@@ -8887,6 +8949,7 @@ declare module "sap/ui/commons/form/FormElement" {
8887
8949
  bVisible: boolean
8888
8950
  ): this;
8889
8951
  }
8952
+ export default FormElement;
8890
8953
 
8891
8954
  export interface $FormElementSettings extends $FormElementSettings1 {}
8892
8955
  }
@@ -8905,7 +8968,7 @@ declare module "sap/ui/commons/form/FormLayout" {
8905
8968
  *
8906
8969
  * Base layout for Forms. Other Layouts must inherit from this one.
8907
8970
  */
8908
- export default class FormLayout extends FormLayout1 {
8971
+ class FormLayout extends FormLayout1 {
8909
8972
  /**
8910
8973
  * Constructor for a new form/FormLayout.
8911
8974
  *
@@ -8913,8 +8976,8 @@ declare module "sap/ui/commons/form/FormLayout" {
8913
8976
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
8914
8977
  * of the syntax of the settings object.
8915
8978
  *
8916
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.FormLayout#constructor
8917
- * sap.ui.layout.form.FormLayout} can be used.
8979
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.FormLayout#constructor sap.ui.layout.form.FormLayout }
8980
+ * can be used.
8918
8981
  */
8919
8982
  constructor(
8920
8983
  /**
@@ -8929,8 +8992,8 @@ declare module "sap/ui/commons/form/FormLayout" {
8929
8992
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
8930
8993
  * of the syntax of the settings object.
8931
8994
  *
8932
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.FormLayout#constructor
8933
- * sap.ui.layout.form.FormLayout} can be used.
8995
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.FormLayout#constructor sap.ui.layout.form.FormLayout }
8996
+ * can be used.
8934
8997
  */
8935
8998
  constructor(
8936
8999
  /**
@@ -8973,6 +9036,7 @@ declare module "sap/ui/commons/form/FormLayout" {
8973
9036
  */
8974
9037
  static getMetadata(): ElementMetadata;
8975
9038
  }
9039
+ export default FormLayout;
8976
9040
 
8977
9041
  export interface $FormLayoutSettings extends $FormLayoutSettings1 {}
8978
9042
  }
@@ -8992,7 +9056,7 @@ declare module "sap/ui/commons/form/GridContainerData" {
8992
9056
  * Grid layout specific properties for FormContainers. The width and height properties of the elements are
8993
9057
  * ignored since the witdh and heights are defined by the grid cells.
8994
9058
  */
8995
- export default class GridContainerData extends GridContainerData1 {
9059
+ class GridContainerData extends GridContainerData1 {
8996
9060
  /**
8997
9061
  * Constructor for a new form/GridContainerData.
8998
9062
  *
@@ -9000,8 +9064,8 @@ declare module "sap/ui/commons/form/GridContainerData" {
9000
9064
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
9001
9065
  * of the syntax of the settings object.
9002
9066
  *
9003
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.GridContainerData#constructor
9004
- * sap.ui.layout.form.GridContainerData} can be used.
9067
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.GridContainerData#constructor sap.ui.layout.form.GridContainerData }
9068
+ * can be used.
9005
9069
  */
9006
9070
  constructor(
9007
9071
  /**
@@ -9016,8 +9080,8 @@ declare module "sap/ui/commons/form/GridContainerData" {
9016
9080
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
9017
9081
  * of the syntax of the settings object.
9018
9082
  *
9019
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.GridContainerData#constructor
9020
- * sap.ui.layout.form.GridContainerData} can be used.
9083
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.GridContainerData#constructor sap.ui.layout.form.GridContainerData }
9084
+ * can be used.
9021
9085
  */
9022
9086
  constructor(
9023
9087
  /**
@@ -9060,6 +9124,7 @@ declare module "sap/ui/commons/form/GridContainerData" {
9060
9124
  */
9061
9125
  static getMetadata(): ElementMetadata;
9062
9126
  }
9127
+ export default GridContainerData;
9063
9128
 
9064
9129
  export interface $GridContainerDataSettings
9065
9130
  extends $GridContainerDataSettings1 {}
@@ -9080,7 +9145,7 @@ declare module "sap/ui/commons/form/GridElementData" {
9080
9145
  * The grid specific layout data for FormElement fields. The width property of the elements is ignored since
9081
9146
  * the width is defined by grid cells.
9082
9147
  */
9083
- export default class GridElementData extends GridElementData1 {
9148
+ class GridElementData extends GridElementData1 {
9084
9149
  /**
9085
9150
  * Constructor for a new form/GridElementData.
9086
9151
  *
@@ -9088,8 +9153,8 @@ declare module "sap/ui/commons/form/GridElementData" {
9088
9153
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
9089
9154
  * of the syntax of the settings object.
9090
9155
  *
9091
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.GridElementData#constructor
9092
- * sap.ui.layout.form.GridElementData} can be used.
9156
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.GridElementData#constructor sap.ui.layout.form.GridElementData }
9157
+ * can be used.
9093
9158
  */
9094
9159
  constructor(
9095
9160
  /**
@@ -9104,8 +9169,8 @@ declare module "sap/ui/commons/form/GridElementData" {
9104
9169
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
9105
9170
  * of the syntax of the settings object.
9106
9171
  *
9107
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.GridElementData#constructor
9108
- * sap.ui.layout.form.GridElementData} can be used.
9172
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.GridElementData#constructor sap.ui.layout.form.GridElementData }
9173
+ * can be used.
9109
9174
  */
9110
9175
  constructor(
9111
9176
  /**
@@ -9148,6 +9213,7 @@ declare module "sap/ui/commons/form/GridElementData" {
9148
9213
  */
9149
9214
  static getMetadata(): ElementMetadata;
9150
9215
  }
9216
+ export default GridElementData;
9151
9217
 
9152
9218
  export interface $GridElementDataSettings extends $GridElementDataSettings1 {}
9153
9219
  }
@@ -9168,7 +9234,7 @@ declare module "sap/ui/commons/form/GridLayout" {
9168
9234
  *
9169
9235
  * To adjust the content inside the GridLayout GridContainerData and GridElementData could be used.
9170
9236
  */
9171
- export default class GridLayout extends GridLayout1 {
9237
+ class GridLayout extends GridLayout1 {
9172
9238
  /**
9173
9239
  * Constructor for a new form/GridLayout.
9174
9240
  *
@@ -9176,8 +9242,8 @@ declare module "sap/ui/commons/form/GridLayout" {
9176
9242
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
9177
9243
  * of the syntax of the settings object.
9178
9244
  *
9179
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.GridLayout#constructor
9180
- * sap.ui.layout.form.GridLayout} can be used.
9245
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.GridLayout#constructor sap.ui.layout.form.GridLayout }
9246
+ * can be used.
9181
9247
  */
9182
9248
  constructor(
9183
9249
  /**
@@ -9192,8 +9258,8 @@ declare module "sap/ui/commons/form/GridLayout" {
9192
9258
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
9193
9259
  * of the syntax of the settings object.
9194
9260
  *
9195
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.GridLayout#constructor
9196
- * sap.ui.layout.form.GridLayout} can be used.
9261
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.GridLayout#constructor sap.ui.layout.form.GridLayout }
9262
+ * can be used.
9197
9263
  */
9198
9264
  constructor(
9199
9265
  /**
@@ -9236,6 +9302,7 @@ declare module "sap/ui/commons/form/GridLayout" {
9236
9302
  */
9237
9303
  static getMetadata(): ElementMetadata;
9238
9304
  }
9305
+ export default GridLayout;
9239
9306
 
9240
9307
  export interface $GridLayoutSettings extends $GridLayoutSettings1 {}
9241
9308
  }
@@ -9254,7 +9321,7 @@ declare module "sap/ui/commons/form/ResponsiveLayout" {
9254
9321
  *
9255
9322
  * Renders a form with responsive layout. Internally the ResponsiveFlowLayout is used.
9256
9323
  */
9257
- export default class ResponsiveLayout extends ResponsiveLayout1 {
9324
+ class ResponsiveLayout extends ResponsiveLayout1 {
9258
9325
  /**
9259
9326
  * Constructor for a new form/ResponsiveLayout.
9260
9327
  *
@@ -9262,8 +9329,8 @@ declare module "sap/ui/commons/form/ResponsiveLayout" {
9262
9329
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
9263
9330
  * of the syntax of the settings object.
9264
9331
  *
9265
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.ResponsiveLayout#constructor
9266
- * sap.ui.layout.form.ResponsiveLayout} can be used.
9332
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.ResponsiveLayout#constructor sap.ui.layout.form.ResponsiveLayout }
9333
+ * can be used.
9267
9334
  */
9268
9335
  constructor(
9269
9336
  /**
@@ -9278,8 +9345,8 @@ declare module "sap/ui/commons/form/ResponsiveLayout" {
9278
9345
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
9279
9346
  * of the syntax of the settings object.
9280
9347
  *
9281
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.ResponsiveLayout#constructor
9282
- * sap.ui.layout.form.ResponsiveLayout} can be used.
9348
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.ResponsiveLayout#constructor sap.ui.layout.form.ResponsiveLayout }
9349
+ * can be used.
9283
9350
  */
9284
9351
  constructor(
9285
9352
  /**
@@ -9322,6 +9389,7 @@ declare module "sap/ui/commons/form/ResponsiveLayout" {
9322
9389
  */
9323
9390
  static getMetadata(): ElementMetadata;
9324
9391
  }
9392
+ export default ResponsiveLayout;
9325
9393
 
9326
9394
  export interface $ResponsiveLayoutSettings
9327
9395
  extends $ResponsiveLayoutSettings1 {}
@@ -9346,7 +9414,7 @@ declare module "sap/ui/commons/form/SimpleForm" {
9346
9414
  * Add Input/Display controls as needed. Use LayoutData to influence the layout for special cases in the
9347
9415
  * Input/Display controls.
9348
9416
  */
9349
- export default class SimpleForm extends SimpleForm1 {
9417
+ class SimpleForm extends SimpleForm1 {
9350
9418
  /**
9351
9419
  * Constructor for a new form/SimpleForm.
9352
9420
  *
@@ -9354,8 +9422,8 @@ declare module "sap/ui/commons/form/SimpleForm" {
9354
9422
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
9355
9423
  * of the syntax of the settings object.
9356
9424
  *
9357
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.SimpleForm#constructor
9358
- * sap.ui.layout.form.SimpleForm} can be used.
9425
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.SimpleForm#constructor sap.ui.layout.form.SimpleForm }
9426
+ * can be used.
9359
9427
  */
9360
9428
  constructor(
9361
9429
  /**
@@ -9370,8 +9438,8 @@ declare module "sap/ui/commons/form/SimpleForm" {
9370
9438
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
9371
9439
  * of the syntax of the settings object.
9372
9440
  *
9373
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.SimpleForm#constructor
9374
- * sap.ui.layout.form.SimpleForm} can be used.
9441
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.SimpleForm#constructor sap.ui.layout.form.SimpleForm }
9442
+ * can be used.
9375
9443
  */
9376
9444
  constructor(
9377
9445
  /**
@@ -9439,6 +9507,7 @@ declare module "sap/ui/commons/form/SimpleForm" {
9439
9507
  oLayout: form.SimpleFormLayout
9440
9508
  ): this;
9441
9509
  }
9510
+ export default SimpleForm;
9442
9511
 
9443
9512
  export interface $SimpleFormSettings extends $SimpleFormSettings1 {}
9444
9513
  }
@@ -9463,7 +9532,7 @@ declare module "sap/ui/commons/FormattedTextView" {
9463
9532
  *
9464
9533
  * The FormattedTextView control allows the usage of a limited set of HTML tags for display.
9465
9534
  */
9466
- export default class FormattedTextView extends Control {
9535
+ class FormattedTextView extends Control {
9467
9536
  /**
9468
9537
  * Constructor for a new FormattedTextView.
9469
9538
  *
@@ -9659,6 +9728,7 @@ declare module "sap/ui/commons/FormattedTextView" {
9659
9728
  sText: string
9660
9729
  ): void;
9661
9730
  }
9731
+ export default FormattedTextView;
9662
9732
 
9663
9733
  export interface $FormattedTextViewSettings extends $ControlSettings {
9664
9734
  /**
@@ -9700,7 +9770,7 @@ declare module "sap/ui/commons/HorizontalDivider" {
9700
9770
  *
9701
9771
  * Divides the screen in visual areas.
9702
9772
  */
9703
- export default class HorizontalDivider extends Control {
9773
+ class HorizontalDivider extends Control {
9704
9774
  /**
9705
9775
  * Constructor for a new HorizontalDivider.
9706
9776
  *
@@ -9843,6 +9913,7 @@ declare module "sap/ui/commons/HorizontalDivider" {
9843
9913
  sWidth?: CSSSize
9844
9914
  ): this;
9845
9915
  }
9916
+ export default HorizontalDivider;
9846
9917
 
9847
9918
  export interface $HorizontalDividerSettings extends $ControlSettings {
9848
9919
  /**
@@ -9890,7 +9961,7 @@ declare module "sap/ui/commons/Image" {
9890
9961
  * A wrapper around the IMG tag. The image can be loaded from a remote or local server. There are various
9891
9962
  * size setting options available, and the images can be combined with actions.
9892
9963
  */
9893
- export default class Image
9964
+ class Image
9894
9965
  extends Control
9895
9966
  implements ToolbarItem, FormattedTextViewControl, IFormContent {
9896
9967
  __implements__sap_ui_commons_ToolbarItem: boolean;
@@ -10186,6 +10257,7 @@ declare module "sap/ui/commons/Image" {
10186
10257
  sWidth?: CSSSize
10187
10258
  ): this;
10188
10259
  }
10260
+ export default Image;
10189
10261
 
10190
10262
  export interface $ImageSettings extends $ControlSettings {
10191
10263
  /**
@@ -10229,6 +10301,8 @@ declare module "sap/ui/commons/Image" {
10229
10301
  */
10230
10302
  press?: (oEvent: Event) => void;
10231
10303
  }
10304
+
10305
+ export interface $ImagePressEventParameters {}
10232
10306
  }
10233
10307
 
10234
10308
  declare module "sap/ui/commons/ImageMap" {
@@ -10250,7 +10324,7 @@ declare module "sap/ui/commons/ImageMap" {
10250
10324
  *
10251
10325
  * Combination of image areas where at runtime these areas are starting points for hyperlinks or actions
10252
10326
  */
10253
- export default class ImageMap extends Control {
10327
+ class ImageMap extends Control {
10254
10328
  /**
10255
10329
  * Constructor for a new ImageMap.
10256
10330
  *
@@ -10341,7 +10415,7 @@ declare module "sap/ui/commons/ImageMap" {
10341
10415
  /**
10342
10416
  * The function to be called when the event occurs
10343
10417
  */
10344
- fnFunction: (p1: Event) => void,
10418
+ fnFunction: (p1: Event<$ImageMapPressEventParameters>) => void,
10345
10419
  /**
10346
10420
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.ImageMap` itself
10347
10421
  */
@@ -10361,7 +10435,7 @@ declare module "sap/ui/commons/ImageMap" {
10361
10435
  /**
10362
10436
  * The function to be called when the event occurs
10363
10437
  */
10364
- fnFunction: (p1: Event) => void,
10438
+ fnFunction: (p1: Event<$ImageMapPressEventParameters>) => void,
10365
10439
  /**
10366
10440
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.ImageMap` itself
10367
10441
  */
@@ -10397,7 +10471,7 @@ declare module "sap/ui/commons/ImageMap" {
10397
10471
  /**
10398
10472
  * The function to be called, when the event occurs
10399
10473
  */
10400
- fnFunction: (p1: Event) => void,
10474
+ fnFunction: (p1: Event<$ImageMapPressEventParameters>) => void,
10401
10475
  /**
10402
10476
  * Context object on which the given function had to be called
10403
10477
  */
@@ -10414,12 +10488,7 @@ declare module "sap/ui/commons/ImageMap" {
10414
10488
  /**
10415
10489
  * Parameters to pass along with the event
10416
10490
  */
10417
- mParameters?: {
10418
- /**
10419
- * Id of clicked Area.
10420
- */
10421
- areaId?: string;
10422
- }
10491
+ mParameters?: $ImageMapPressEventParameters
10423
10492
  ): this;
10424
10493
  /**
10425
10494
  * Gets content of aggregation {@link #getAreas areas}.
@@ -10499,6 +10568,7 @@ declare module "sap/ui/commons/ImageMap" {
10499
10568
  sName?: string
10500
10569
  ): this;
10501
10570
  }
10571
+ export default ImageMap;
10502
10572
 
10503
10573
  export interface $ImageMapSettings extends $ControlSettings {
10504
10574
  /**
@@ -10514,7 +10584,14 @@ declare module "sap/ui/commons/ImageMap" {
10514
10584
  /**
10515
10585
  * Event for the areas that can be clicked in an ImageMap
10516
10586
  */
10517
- press?: (oEvent: Event) => void;
10587
+ press?: (oEvent: Event<$ImageMapPressEventParameters>) => void;
10588
+ }
10589
+
10590
+ export interface $ImageMapPressEventParameters {
10591
+ /**
10592
+ * Id of clicked Area.
10593
+ */
10594
+ areaId?: string;
10518
10595
  }
10519
10596
  }
10520
10597
 
@@ -10539,7 +10616,7 @@ declare module "sap/ui/commons/InPlaceEdit" {
10539
10616
  *
10540
10617
  * The InPlaceEdit is a functionality to have text in display mode that can be changed in place.
10541
10618
  */
10542
- export default class InPlaceEdit extends Control {
10619
+ class InPlaceEdit extends Control {
10543
10620
  /**
10544
10621
  * Constructor for a new InPlaceEdit.
10545
10622
  *
@@ -10620,7 +10697,7 @@ declare module "sap/ui/commons/InPlaceEdit" {
10620
10697
  /**
10621
10698
  * The function to be called when the event occurs
10622
10699
  */
10623
- fnFunction: (p1: Event) => void,
10700
+ fnFunction: (p1: Event<$InPlaceEditChangeEventParameters>) => void,
10624
10701
  /**
10625
10702
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.InPlaceEdit` itself
10626
10703
  */
@@ -10641,7 +10718,7 @@ declare module "sap/ui/commons/InPlaceEdit" {
10641
10718
  /**
10642
10719
  * The function to be called when the event occurs
10643
10720
  */
10644
- fnFunction: (p1: Event) => void,
10721
+ fnFunction: (p1: Event<$InPlaceEditChangeEventParameters>) => void,
10645
10722
  /**
10646
10723
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.InPlaceEdit` itself
10647
10724
  */
@@ -10670,7 +10747,7 @@ declare module "sap/ui/commons/InPlaceEdit" {
10670
10747
  /**
10671
10748
  * The function to be called when the event occurs
10672
10749
  */
10673
- fnFunction: (p1: Event) => void,
10750
+ fnFunction: (p1: Event<$InPlaceEditLiveChangeEventParameters>) => void,
10674
10751
  /**
10675
10752
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.InPlaceEdit` itself
10676
10753
  */
@@ -10694,7 +10771,7 @@ declare module "sap/ui/commons/InPlaceEdit" {
10694
10771
  /**
10695
10772
  * The function to be called when the event occurs
10696
10773
  */
10697
- fnFunction: (p1: Event) => void,
10774
+ fnFunction: (p1: Event<$InPlaceEditLiveChangeEventParameters>) => void,
10698
10775
  /**
10699
10776
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.InPlaceEdit` itself
10700
10777
  */
@@ -10722,7 +10799,7 @@ declare module "sap/ui/commons/InPlaceEdit" {
10722
10799
  /**
10723
10800
  * The function to be called, when the event occurs
10724
10801
  */
10725
- fnFunction: (p1: Event) => void,
10802
+ fnFunction: (p1: Event<$InPlaceEditChangeEventParameters>) => void,
10726
10803
  /**
10727
10804
  * Context object on which the given function had to be called
10728
10805
  */
@@ -10741,7 +10818,7 @@ declare module "sap/ui/commons/InPlaceEdit" {
10741
10818
  /**
10742
10819
  * The function to be called, when the event occurs
10743
10820
  */
10744
- fnFunction: (p1: Event) => void,
10821
+ fnFunction: (p1: Event<$InPlaceEditLiveChangeEventParameters>) => void,
10745
10822
  /**
10746
10823
  * Context object on which the given function had to be called
10747
10824
  */
@@ -10758,12 +10835,7 @@ declare module "sap/ui/commons/InPlaceEdit" {
10758
10835
  /**
10759
10836
  * Parameters to pass along with the event
10760
10837
  */
10761
- mParameters?: {
10762
- /**
10763
- * The new / changed value of the InPlaceEdit.
10764
- */
10765
- newValue?: string;
10766
- }
10838
+ mParameters?: $InPlaceEditChangeEventParameters
10767
10839
  ): this;
10768
10840
  /**
10769
10841
  * @SINCE 1.16.5
@@ -10777,12 +10849,7 @@ declare module "sap/ui/commons/InPlaceEdit" {
10777
10849
  /**
10778
10850
  * Parameters to pass along with the event
10779
10851
  */
10780
- mParameters?: {
10781
- /**
10782
- * Current value of the Textfield.
10783
- */
10784
- liveValue?: string;
10785
- }
10852
+ mParameters?: $InPlaceEditLiveChangeEventParameters
10786
10853
  ): this;
10787
10854
  /**
10788
10855
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -10931,6 +10998,7 @@ declare module "sap/ui/commons/InPlaceEdit" {
10931
10998
  sValueState?: ValueState | keyof typeof ValueState
10932
10999
  ): this;
10933
11000
  }
11001
+ export default InPlaceEdit;
10934
11002
 
10935
11003
  export interface $InPlaceEditSettings extends $ControlSettings {
10936
11004
  /**
@@ -10967,7 +11035,7 @@ declare module "sap/ui/commons/InPlaceEdit" {
10967
11035
  * Event is fired when the text in the field has changed AND the focus leaves the InPlaceEdit or the Enter
10968
11036
  * key is pressed.
10969
11037
  */
10970
- change?: (oEvent: Event) => void;
11038
+ change?: (oEvent: Event<$InPlaceEditChangeEventParameters>) => void;
10971
11039
 
10972
11040
  /**
10973
11041
  * @SINCE 1.16.5
@@ -10976,7 +11044,21 @@ declare module "sap/ui/commons/InPlaceEdit" {
10976
11044
  * is not the content of the value property. The value property is only updated by ENTER and by leaving
10977
11045
  * the control.
10978
11046
  */
10979
- liveChange?: (oEvent: Event) => void;
11047
+ liveChange?: (oEvent: Event<$InPlaceEditLiveChangeEventParameters>) => void;
11048
+ }
11049
+
11050
+ export interface $InPlaceEditChangeEventParameters {
11051
+ /**
11052
+ * The new / changed value of the InPlaceEdit.
11053
+ */
11054
+ newValue?: string;
11055
+ }
11056
+
11057
+ export interface $InPlaceEditLiveChangeEventParameters {
11058
+ /**
11059
+ * Current value of the Textfield.
11060
+ */
11061
+ liveValue?: string;
10980
11062
  }
10981
11063
  }
10982
11064
 
@@ -11005,7 +11087,7 @@ declare module "sap/ui/commons/Label" {
11005
11087
  * The control is used for labeling other controls. The API provides formatting options, for example, for
11006
11088
  * bold display or alignment. A label can have an icon.
11007
11089
  */
11008
- export default class Label extends Control implements ToolbarItem, Label1 {
11090
+ class Label extends Control implements ToolbarItem, Label1 {
11009
11091
  __implements__sap_ui_commons_ToolbarItem: boolean;
11010
11092
  __implements__sap_ui_core_Label: boolean;
11011
11093
  /**
@@ -11347,6 +11429,7 @@ declare module "sap/ui/commons/Label" {
11347
11429
  bWrapping?: boolean
11348
11430
  ): this;
11349
11431
  }
11432
+ export default Label;
11350
11433
 
11351
11434
  export interface $LabelSettings extends $ControlSettings {
11352
11435
  /**
@@ -11440,7 +11523,7 @@ declare module "sap/ui/commons/layout/AbsoluteLayout" {
11440
11523
  *
11441
11524
  * The Absolute Layout positions its child controls absolutely
11442
11525
  */
11443
- export default class AbsoluteLayout extends Control {
11526
+ class AbsoluteLayout extends Control {
11444
11527
  /**
11445
11528
  * Constructor for a new layout/AbsoluteLayout.
11446
11529
  *
@@ -11603,8 +11686,8 @@ declare module "sap/ui/commons/layout/AbsoluteLayout" {
11603
11686
  oContent: Control
11604
11687
  ): int;
11605
11688
  /**
11606
- * Checks for the provided `sap.ui.commons.layout.PositionContainer` in the aggregation {@link #getPositions
11607
- * positions}. and returns its index if found or -1 otherwise.
11689
+ * Checks for the provided `sap.ui.commons.layout.PositionContainer` in the aggregation {@link #getPositions positions}.
11690
+ * and returns its index if found or -1 otherwise.
11608
11691
  *
11609
11692
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
11610
11693
  */
@@ -11750,6 +11833,7 @@ declare module "sap/ui/commons/layout/AbsoluteLayout" {
11750
11833
  sWidth: string
11751
11834
  ): this;
11752
11835
  }
11836
+ export default AbsoluteLayout;
11753
11837
 
11754
11838
  export interface $AbsoluteLayoutSettings extends $ControlSettings {
11755
11839
  /**
@@ -11810,7 +11894,7 @@ declare module "sap/ui/commons/layout/BorderLayoutArea" {
11810
11894
  *
11811
11895
  * The BorderLayoutArea represents one area of a BorderLayout
11812
11896
  */
11813
- export default class BorderLayoutArea extends UI5Element {
11897
+ class BorderLayoutArea extends UI5Element {
11814
11898
  /**
11815
11899
  * Constructor for a new layout/BorderLayoutArea.
11816
11900
  *
@@ -12113,6 +12197,7 @@ declare module "sap/ui/commons/layout/BorderLayoutArea" {
12113
12197
  bVisible?: boolean
12114
12198
  ): this;
12115
12199
  }
12200
+ export default BorderLayoutArea;
12116
12201
 
12117
12202
  export interface $BorderLayoutAreaSettings extends $ElementSettings {
12118
12203
  /**
@@ -12173,7 +12258,7 @@ declare module "sap/ui/commons/layout/HorizontalLayout" {
12173
12258
  *
12174
12259
  * A layout that provides support for horizontal alignment of controls
12175
12260
  */
12176
- export default class HorizontalLayout extends HorizontalLayout1 {
12261
+ class HorizontalLayout extends HorizontalLayout1 {
12177
12262
  /**
12178
12263
  * Constructor for a new layout/HorizontalLayout.
12179
12264
  *
@@ -12181,8 +12266,8 @@ declare module "sap/ui/commons/layout/HorizontalLayout" {
12181
12266
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
12182
12267
  * of the syntax of the settings object.
12183
12268
  *
12184
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.HorizontalLayout#constructor
12185
- * sap.ui.layout.HorizontalLayout} can be used.
12269
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.HorizontalLayout#constructor sap.ui.layout.HorizontalLayout }
12270
+ * can be used.
12186
12271
  */
12187
12272
  constructor(
12188
12273
  /**
@@ -12197,8 +12282,8 @@ declare module "sap/ui/commons/layout/HorizontalLayout" {
12197
12282
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
12198
12283
  * of the syntax of the settings object.
12199
12284
  *
12200
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.HorizontalLayout#constructor
12201
- * sap.ui.layout.HorizontalLayout} can be used.
12285
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.HorizontalLayout#constructor sap.ui.layout.HorizontalLayout }
12286
+ * can be used.
12202
12287
  */
12203
12288
  constructor(
12204
12289
  /**
@@ -12241,6 +12326,7 @@ declare module "sap/ui/commons/layout/HorizontalLayout" {
12241
12326
  */
12242
12327
  static getMetadata(): ElementMetadata;
12243
12328
  }
12329
+ export default HorizontalLayout;
12244
12330
 
12245
12331
  export interface $HorizontalLayoutSettings
12246
12332
  extends $HorizontalLayoutSettings1 {}
@@ -12275,7 +12361,7 @@ declare module "sap/ui/commons/layout/MatrixLayout" {
12275
12361
  * You should **avoid nesting** matrix layouts. You should only use a matrix layout if you need to align
12276
12362
  * controls horizontally across rows.
12277
12363
  */
12278
- export default class MatrixLayout extends Control {
12364
+ class MatrixLayout extends Control {
12279
12365
  /**
12280
12366
  * Constructor for a new layout/MatrixLayout.
12281
12367
  *
@@ -12545,6 +12631,7 @@ declare module "sap/ui/commons/layout/MatrixLayout" {
12545
12631
  sWidths?: CSSSize[]
12546
12632
  ): this;
12547
12633
  }
12634
+ export default MatrixLayout;
12548
12635
 
12549
12636
  export interface $MatrixLayoutSettings extends $ControlSettings {
12550
12637
  /**
@@ -12606,7 +12693,7 @@ declare module "sap/ui/commons/layout/MatrixLayoutCell" {
12606
12693
  *
12607
12694
  * Non-control element used as part of a matrix layout's inner structure.
12608
12695
  */
12609
- export default class MatrixLayoutCell extends UI5Element {
12696
+ class MatrixLayoutCell extends UI5Element {
12610
12697
  /**
12611
12698
  * Constructor for a new layout/MatrixLayoutCell.
12612
12699
  *
@@ -13003,6 +13090,7 @@ declare module "sap/ui/commons/layout/MatrixLayoutCell" {
13003
13090
  sVAlign?: layout.VAlign | keyof typeof layout.VAlign
13004
13091
  ): this;
13005
13092
  }
13093
+ export default MatrixLayoutCell;
13006
13094
 
13007
13095
  export interface $MatrixLayoutCellSettings extends $ElementSettings {
13008
13096
  /**
@@ -13088,7 +13176,7 @@ declare module "sap/ui/commons/layout/MatrixLayoutRow" {
13088
13176
  *
13089
13177
  * Non-control element used as part of a matrix layout's inner structure.
13090
13178
  */
13091
- export default class MatrixLayoutRow extends UI5Element {
13179
+ class MatrixLayoutRow extends UI5Element {
13092
13180
  /**
13093
13181
  * Constructor for a new layout/MatrixLayoutRow.
13094
13182
  *
@@ -13229,8 +13317,8 @@ declare module "sap/ui/commons/layout/MatrixLayoutRow" {
13229
13317
  sStyleClass: string
13230
13318
  ): boolean;
13231
13319
  /**
13232
- * Checks for the provided `sap.ui.commons.layout.MatrixLayoutCell` in the aggregation {@link #getCells
13233
- * cells}. and returns its index if found or -1 otherwise.
13320
+ * Checks for the provided `sap.ui.commons.layout.MatrixLayoutCell` in the aggregation {@link #getCells cells}.
13321
+ * and returns its index if found or -1 otherwise.
13234
13322
  *
13235
13323
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
13236
13324
  */
@@ -13304,6 +13392,7 @@ declare module "sap/ui/commons/layout/MatrixLayoutRow" {
13304
13392
  sHeight?: CSSSize
13305
13393
  ): this;
13306
13394
  }
13395
+ export default MatrixLayoutRow;
13307
13396
 
13308
13397
  export interface $MatrixLayoutRowSettings extends $ElementSettings {
13309
13398
  /**
@@ -13338,7 +13427,7 @@ declare module "sap/ui/commons/layout/PositionContainer" {
13338
13427
  *
13339
13428
  * Is used to specify the position of a control in the AbsoluteLayout
13340
13429
  */
13341
- export default class PositionContainer extends UI5Element {
13430
+ class PositionContainer extends UI5Element {
13342
13431
  /**
13343
13432
  * Constructor for a new layout/PositionContainer.
13344
13433
  *
@@ -13584,6 +13673,7 @@ declare module "sap/ui/commons/layout/PositionContainer" {
13584
13673
  oPos: object
13585
13674
  ): void;
13586
13675
  }
13676
+ export default PositionContainer;
13587
13677
 
13588
13678
  export interface $PositionContainerSettings extends $ElementSettings {
13589
13679
  /**
@@ -13640,7 +13730,7 @@ declare module "sap/ui/commons/layout/ResponsiveFlowLayout" {
13640
13730
  * This is a layout where several controls can be added. These controls are blown up to fit a whole line.
13641
13731
  * If the window resizes the controls are moved between the lines and resized again.
13642
13732
  */
13643
- export default class ResponsiveFlowLayout extends ResponsiveFlowLayout1 {
13733
+ class ResponsiveFlowLayout extends ResponsiveFlowLayout1 {
13644
13734
  /**
13645
13735
  * Constructor for a new layout/ResponsiveFlowLayout.
13646
13736
  *
@@ -13648,8 +13738,8 @@ declare module "sap/ui/commons/layout/ResponsiveFlowLayout" {
13648
13738
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
13649
13739
  * of the syntax of the settings object.
13650
13740
  *
13651
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.ResponsiveFlowLayout#constructor
13652
- * sap.ui.layout.ResponsiveFlowLayout} can be used.
13741
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.ResponsiveFlowLayout#constructor sap.ui.layout.ResponsiveFlowLayout }
13742
+ * can be used.
13653
13743
  */
13654
13744
  constructor(
13655
13745
  /**
@@ -13664,8 +13754,8 @@ declare module "sap/ui/commons/layout/ResponsiveFlowLayout" {
13664
13754
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
13665
13755
  * of the syntax of the settings object.
13666
13756
  *
13667
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.ResponsiveFlowLayout#constructor
13668
- * sap.ui.layout.ResponsiveFlowLayout} can be used.
13757
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.ResponsiveFlowLayout#constructor sap.ui.layout.ResponsiveFlowLayout }
13758
+ * can be used.
13669
13759
  */
13670
13760
  constructor(
13671
13761
  /**
@@ -13708,6 +13798,7 @@ declare module "sap/ui/commons/layout/ResponsiveFlowLayout" {
13708
13798
  */
13709
13799
  static getMetadata(): ElementMetadata;
13710
13800
  }
13801
+ export default ResponsiveFlowLayout;
13711
13802
 
13712
13803
  export interface $ResponsiveFlowLayoutSettings
13713
13804
  extends $ResponsiveFlowLayoutSettings1 {}
@@ -13727,7 +13818,7 @@ declare module "sap/ui/commons/layout/ResponsiveFlowLayoutData" {
13727
13818
  *
13728
13819
  * This is a LayoutData Element that can be added to a control if this control is used within a ResponsiveFlowLayout
13729
13820
  */
13730
- export default class ResponsiveFlowLayoutData extends ResponsiveFlowLayoutData1 {
13821
+ class ResponsiveFlowLayoutData extends ResponsiveFlowLayoutData1 {
13731
13822
  /**
13732
13823
  * Constructor for a new layout/ResponsiveFlowLayoutData.
13733
13824
  *
@@ -13735,8 +13826,8 @@ declare module "sap/ui/commons/layout/ResponsiveFlowLayoutData" {
13735
13826
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
13736
13827
  * of the syntax of the settings object.
13737
13828
  *
13738
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.ResponsiveFlowLayoutData#constructor
13739
- * sap.ui.layout.ResponsiveFlowLayoutData} can be used.
13829
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.ResponsiveFlowLayoutData#constructor sap.ui.layout.ResponsiveFlowLayoutData }
13830
+ * can be used.
13740
13831
  */
13741
13832
  constructor(
13742
13833
  /**
@@ -13751,8 +13842,8 @@ declare module "sap/ui/commons/layout/ResponsiveFlowLayoutData" {
13751
13842
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
13752
13843
  * of the syntax of the settings object.
13753
13844
  *
13754
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.ResponsiveFlowLayoutData#constructor
13755
- * sap.ui.layout.ResponsiveFlowLayoutData} can be used.
13845
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.ResponsiveFlowLayoutData#constructor sap.ui.layout.ResponsiveFlowLayoutData }
13846
+ * can be used.
13756
13847
  */
13757
13848
  constructor(
13758
13849
  /**
@@ -13820,6 +13911,7 @@ declare module "sap/ui/commons/layout/ResponsiveFlowLayoutData" {
13820
13911
  bMargin: boolean
13821
13912
  ): this;
13822
13913
  }
13914
+ export default ResponsiveFlowLayoutData;
13823
13915
 
13824
13916
  export interface $ResponsiveFlowLayoutDataSettings
13825
13917
  extends $ResponsiveFlowLayoutDataSettings1 {}
@@ -13838,7 +13930,7 @@ declare module "sap/ui/commons/layout/VerticalLayout" {
13838
13930
  *
13839
13931
  * In this layout the elements are ordered one below the other
13840
13932
  */
13841
- export default class VerticalLayout extends VerticalLayout1 {
13933
+ class VerticalLayout extends VerticalLayout1 {
13842
13934
  /**
13843
13935
  * Constructor for a new layout/VerticalLayout.
13844
13936
  *
@@ -13846,8 +13938,8 @@ declare module "sap/ui/commons/layout/VerticalLayout" {
13846
13938
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
13847
13939
  * of the syntax of the settings object.
13848
13940
  *
13849
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.VerticalLayout#constructor
13850
- * sap.ui.layout.VerticalLayout} can be used.
13941
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.VerticalLayout#constructor sap.ui.layout.VerticalLayout }
13942
+ * can be used.
13851
13943
  */
13852
13944
  constructor(
13853
13945
  /**
@@ -13862,8 +13954,8 @@ declare module "sap/ui/commons/layout/VerticalLayout" {
13862
13954
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
13863
13955
  * of the syntax of the settings object.
13864
13956
  *
13865
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.VerticalLayout#constructor
13866
- * sap.ui.layout.VerticalLayout} can be used.
13957
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.VerticalLayout#constructor sap.ui.layout.VerticalLayout }
13958
+ * can be used.
13867
13959
  */
13868
13960
  constructor(
13869
13961
  /**
@@ -13906,6 +13998,7 @@ declare module "sap/ui/commons/layout/VerticalLayout" {
13906
13998
  */
13907
13999
  static getMetadata(): ElementMetadata;
13908
14000
  }
14001
+ export default VerticalLayout;
13909
14002
 
13910
14003
  export interface $VerticalLayoutSettings extends $VerticalLayoutSettings1 {}
13911
14004
  }
@@ -13939,7 +14032,7 @@ declare module "sap/ui/commons/Link" {
13939
14032
  * are supported. Another usage scenario is triggering an action, for example to open a popup window. In
13940
14033
  * both cases, the link is a hypertext link.
13941
14034
  */
13942
- export default class Link
14035
+ class Link
13943
14036
  extends Control
13944
14037
  implements ToolbarItem, FormattedTextViewControl, IFormContent {
13945
14038
  __implements__sap_ui_commons_ToolbarItem: boolean;
@@ -14119,13 +14212,11 @@ declare module "sap/ui/commons/Link" {
14119
14212
  */
14120
14213
  getAccessibilityInfo(): AccessibilityInfo;
14121
14214
  /**
14122
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
14123
- * ariaDescribedBy}.
14215
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
14124
14216
  */
14125
14217
  getAriaDescribedBy(): ID[];
14126
14218
  /**
14127
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
14128
- * ariaLabelledBy}.
14219
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
14129
14220
  */
14130
14221
  getAriaLabelledBy(): ID[];
14131
14222
  /**
@@ -14321,6 +14412,7 @@ declare module "sap/ui/commons/Link" {
14321
14412
  sWidth?: CSSSize
14322
14413
  ): this;
14323
14414
  }
14415
+ export default Link;
14324
14416
 
14325
14417
  export interface $LinkSettings extends $ControlSettings {
14326
14418
  /**
@@ -14372,6 +14464,8 @@ declare module "sap/ui/commons/Link" {
14372
14464
  */
14373
14465
  press?: (oEvent: Event) => void;
14374
14466
  }
14467
+
14468
+ export interface $LinkPressEventParameters {}
14375
14469
  }
14376
14470
 
14377
14471
  declare module "sap/ui/commons/ListBox" {
@@ -14399,7 +14493,7 @@ declare module "sap/ui/commons/ListBox" {
14399
14493
  * such as defining the list box height, fixing the number of visible items, choosing one item to be the
14400
14494
  * item that is marked by default when the list box is shown, or a scroll bar for large list boxes are available.
14401
14495
  */
14402
- export default class ListBox extends Control {
14496
+ class ListBox extends Control {
14403
14497
  /**
14404
14498
  * Constructor for a new ListBox.
14405
14499
  *
@@ -14535,7 +14629,7 @@ declare module "sap/ui/commons/ListBox" {
14535
14629
  /**
14536
14630
  * The function to be called when the event occurs
14537
14631
  */
14538
- fnFunction: (p1: Event) => void,
14632
+ fnFunction: (p1: Event<$ListBoxSelectEventParameters>) => void,
14539
14633
  /**
14540
14634
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.ListBox` itself
14541
14635
  */
@@ -14555,7 +14649,7 @@ declare module "sap/ui/commons/ListBox" {
14555
14649
  /**
14556
14650
  * The function to be called when the event occurs
14557
14651
  */
14558
- fnFunction: (p1: Event) => void,
14652
+ fnFunction: (p1: Event<$ListBoxSelectEventParameters>) => void,
14559
14653
  /**
14560
14654
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.ListBox` itself
14561
14655
  */
@@ -14584,7 +14678,7 @@ declare module "sap/ui/commons/ListBox" {
14584
14678
  /**
14585
14679
  * The function to be called, when the event occurs
14586
14680
  */
14587
- fnFunction: (p1: Event) => void,
14681
+ fnFunction: (p1: Event<$ListBoxSelectEventParameters>) => void,
14588
14682
  /**
14589
14683
  * Context object on which the given function had to be called
14590
14684
  */
@@ -14601,27 +14695,7 @@ declare module "sap/ui/commons/ListBox" {
14601
14695
  /**
14602
14696
  * Parameters to pass along with the event
14603
14697
  */
14604
- mParameters?: {
14605
- /**
14606
- * ID of the ListBox which triggered the event.
14607
- */
14608
- id?: string;
14609
- /**
14610
- * The currently selected index of the ListBox. In the case of multiple selection, this is exactly one of
14611
- * the selected indices - the one whose selection has triggered the selection change. To get all currently
14612
- * selected indices, use selectedIndices.
14613
- */
14614
- selectedIndex?: int;
14615
- /**
14616
- * The currently selected item of the ListBox. In the case of multiple selection, this is exactly one of
14617
- * the selected items - the one whose selection has triggered the selection change.
14618
- */
14619
- selectedItem?: Item;
14620
- /**
14621
- * Array containing the indices which are selected.
14622
- */
14623
- selectedIndices?: int[];
14624
- }
14698
+ mParameters?: $ListBoxSelectEventParameters
14625
14699
  ): this;
14626
14700
  /**
14627
14701
  * Gets current value of property {@link #getAllowMultiSelect allowMultiSelect}.
@@ -14634,13 +14708,11 @@ declare module "sap/ui/commons/ListBox" {
14634
14708
  */
14635
14709
  getAllowMultiSelect(): boolean;
14636
14710
  /**
14637
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
14638
- * ariaDescribedBy}.
14711
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
14639
14712
  */
14640
14713
  getAriaDescribedBy(): ID[];
14641
14714
  /**
14642
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
14643
- * ariaLabelledBy}.
14715
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
14644
14716
  */
14645
14717
  getAriaLabelledBy(): ID[];
14646
14718
  /**
@@ -15174,6 +15246,7 @@ declare module "sap/ui/commons/ListBox" {
15174
15246
  sWidth: CSSSize
15175
15247
  ): this;
15176
15248
  }
15249
+ export default ListBox;
15177
15250
 
15178
15251
  export interface $ListBoxSettings extends $ControlSettings {
15179
15252
  /**
@@ -15281,7 +15354,32 @@ declare module "sap/ui/commons/ListBox" {
15281
15354
  /**
15282
15355
  * Event is fired when selection is changed by user interaction.
15283
15356
  */
15284
- select?: (oEvent: Event) => void;
15357
+ select?: (oEvent: Event<$ListBoxSelectEventParameters>) => void;
15358
+ }
15359
+
15360
+ export interface $ListBoxSelectEventParameters {
15361
+ /**
15362
+ * ID of the ListBox which triggered the event.
15363
+ */
15364
+ id?: string;
15365
+
15366
+ /**
15367
+ * The currently selected index of the ListBox. In the case of multiple selection, this is exactly one of
15368
+ * the selected indices - the one whose selection has triggered the selection change. To get all currently
15369
+ * selected indices, use selectedIndices.
15370
+ */
15371
+ selectedIndex?: int;
15372
+
15373
+ /**
15374
+ * The currently selected item of the ListBox. In the case of multiple selection, this is exactly one of
15375
+ * the selected items - the one whose selection has triggered the selection change.
15376
+ */
15377
+ selectedItem?: Item;
15378
+
15379
+ /**
15380
+ * Array containing the indices which are selected.
15381
+ */
15382
+ selectedIndices?: int[];
15285
15383
  }
15286
15384
  }
15287
15385
 
@@ -15301,7 +15399,7 @@ declare module "sap/ui/commons/Menu" {
15301
15399
  * (items) can also be organized in submenus. Like other dialog-like controls, the menu is not rendered
15302
15400
  * within the control hierarchy. Instead it can be opened at a specified position via a function call.
15303
15401
  */
15304
- export default class Menu extends Menu1 {
15402
+ class Menu extends Menu1 {
15305
15403
  /**
15306
15404
  * Constructor for a new Menu control.
15307
15405
  *
@@ -15309,8 +15407,8 @@ declare module "sap/ui/commons/Menu" {
15309
15407
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
15310
15408
  * of the syntax of the settings object.
15311
15409
  *
15312
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.Menu#constructor
15313
- * sap.ui.unified.Menu} can be used.
15410
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.Menu#constructor sap.ui.unified.Menu }
15411
+ * can be used.
15314
15412
  */
15315
15413
  constructor(
15316
15414
  /**
@@ -15325,8 +15423,8 @@ declare module "sap/ui/commons/Menu" {
15325
15423
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
15326
15424
  * of the syntax of the settings object.
15327
15425
  *
15328
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.Menu#constructor
15329
- * sap.ui.unified.Menu} can be used.
15426
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.Menu#constructor sap.ui.unified.Menu }
15427
+ * can be used.
15330
15428
  */
15331
15429
  constructor(
15332
15430
  /**
@@ -15369,6 +15467,7 @@ declare module "sap/ui/commons/Menu" {
15369
15467
  */
15370
15468
  static getMetadata(): ElementMetadata;
15371
15469
  }
15470
+ export default Menu;
15372
15471
 
15373
15472
  export interface $MenuSettings extends $MenuSettings1 {}
15374
15473
  }
@@ -15399,7 +15498,7 @@ declare module "sap/ui/commons/MenuBar" {
15399
15498
  * enough to display all items, defining images for single or all items in a menu, automated layouting of
15400
15499
  * items with or w/o image, and active/non-active items.
15401
15500
  */
15402
- export default class MenuBar extends Control {
15501
+ class MenuBar extends Control {
15403
15502
  /**
15404
15503
  * Constructor for a new MenuBar.
15405
15504
  *
@@ -15613,6 +15712,7 @@ declare module "sap/ui/commons/MenuBar" {
15613
15712
  sWidth?: CSSSize
15614
15713
  ): this;
15615
15714
  }
15715
+ export default MenuBar;
15616
15716
 
15617
15717
  export interface $MenuBarSettings extends $ControlSettings {
15618
15718
  /**
@@ -15641,25 +15741,31 @@ declare module "sap/ui/commons/MenuBar" {
15641
15741
  }
15642
15742
 
15643
15743
  declare module "sap/ui/commons/MenuButton" {
15644
- import { default as Button, $ButtonSettings } from "sap/ui/commons/Button";
15744
+ import {
15745
+ default as Button,
15746
+ $ButtonSettings,
15747
+ $ButtonPressEventParameters,
15748
+ } from "sap/ui/commons/Button";
15645
15749
 
15646
15750
  import Event from "sap/ui/base/Event";
15647
15751
 
15648
- import MenuItemBase from "sap/ui/unified/MenuItemBase";
15649
-
15650
15752
  import Menu from "sap/ui/unified/Menu";
15651
15753
 
15652
15754
  import ElementMetadata from "sap/ui/core/ElementMetadata";
15653
15755
 
15654
15756
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
15655
15757
 
15758
+ import MenuItemBase from "sap/ui/unified/MenuItemBase";
15759
+
15760
+ import MenuItemBase1 from "sap/ui/commons/MenuItemBase";
15761
+
15656
15762
  /**
15657
15763
  * @deprecated (since 1.38) - Instead, use the `sap.m.MenuButton` control.
15658
15764
  *
15659
15765
  * Common button control that opens a menu when clicked by the user. The control provides an API for configuring
15660
15766
  * the docking position of the menu.
15661
15767
  */
15662
- export default class MenuButton extends Button {
15768
+ class MenuButton extends Button {
15663
15769
  /**
15664
15770
  * Constructor for a new MenuButton.
15665
15771
  *
@@ -15739,7 +15845,7 @@ declare module "sap/ui/commons/MenuButton" {
15739
15845
  /**
15740
15846
  * The function to be called when the event occurs
15741
15847
  */
15742
- fnFunction: (p1: Event) => void,
15848
+ fnFunction: (p1: Event<$MenuButtonItemSelectedEventParameters>) => void,
15743
15849
  /**
15744
15850
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.MenuButton` itself
15745
15851
  */
@@ -15759,7 +15865,7 @@ declare module "sap/ui/commons/MenuButton" {
15759
15865
  /**
15760
15866
  * The function to be called when the event occurs
15761
15867
  */
15762
- fnFunction: (p1: Event) => void,
15868
+ fnFunction: (p1: Event<$MenuButtonItemSelectedEventParameters>) => void,
15763
15869
  /**
15764
15870
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.MenuButton` itself
15765
15871
  */
@@ -15786,7 +15892,7 @@ declare module "sap/ui/commons/MenuButton" {
15786
15892
  /**
15787
15893
  * The function to be called, when the event occurs
15788
15894
  */
15789
- fnFunction: Function,
15895
+ fnFunction: (evt: Event<$MenuButtonPressEventParameters>) => void,
15790
15896
  /**
15791
15897
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.MenuButton` itself
15792
15898
  */
@@ -15808,7 +15914,7 @@ declare module "sap/ui/commons/MenuButton" {
15808
15914
  /**
15809
15915
  * The function to be called, when the event occurs
15810
15916
  */
15811
- fnFunction: Function,
15917
+ fnFunction: (evt: Event<$MenuButtonPressEventParameters>) => void,
15812
15918
  /**
15813
15919
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.MenuButton` itself
15814
15920
  */
@@ -15831,7 +15937,7 @@ declare module "sap/ui/commons/MenuButton" {
15831
15937
  /**
15832
15938
  * The function to be called, when the event occurs
15833
15939
  */
15834
- fnFunction: (p1: Event) => void,
15940
+ fnFunction: (p1: Event<$MenuButtonItemSelectedEventParameters>) => void,
15835
15941
  /**
15836
15942
  * Context object on which the given function had to be called
15837
15943
  */
@@ -15850,7 +15956,7 @@ declare module "sap/ui/commons/MenuButton" {
15850
15956
  /**
15851
15957
  * The function to be called, when the event occurs
15852
15958
  */
15853
- fnFunction: Function,
15959
+ fnFunction: (evt: Event<$MenuButtonPressEventParameters>) => void,
15854
15960
  /**
15855
15961
  * Context object on which the given function had to be called
15856
15962
  */
@@ -15867,16 +15973,7 @@ declare module "sap/ui/commons/MenuButton" {
15867
15973
  /**
15868
15974
  * Parameters to pass along with the event
15869
15975
  */
15870
- mParameters?: {
15871
- /**
15872
- * The ID of the selected item
15873
- */
15874
- itemId?: string;
15875
- /**
15876
- * The selected item
15877
- */
15878
- item?: MenuItemBase;
15879
- }
15976
+ mParameters?: $MenuButtonItemSelectedEventParameters
15880
15977
  ): this;
15881
15978
  /**
15882
15979
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -15891,7 +15988,7 @@ declare module "sap/ui/commons/MenuButton" {
15891
15988
  /**
15892
15989
  * Parameters to pass along with the event
15893
15990
  */
15894
- oParameters?: object
15991
+ oParameters?: $MenuButtonPressEventParameters
15895
15992
  ): this;
15896
15993
  /**
15897
15994
  * Gets current value of property {@link #getDockButton dockButton}.
@@ -15961,6 +16058,7 @@ declare module "sap/ui/commons/MenuButton" {
15961
16058
  oMenu: Menu
15962
16059
  ): this;
15963
16060
  }
16061
+ export default MenuButton;
15964
16062
 
15965
16063
  export interface $MenuButtonSettings extends $ButtonSettings {
15966
16064
  /**
@@ -15983,7 +16081,34 @@ declare module "sap/ui/commons/MenuButton" {
15983
16081
  /**
15984
16082
  * Event that is fired when a menu item is selected by the user
15985
16083
  */
15986
- itemSelected?: (oEvent: Event) => void;
16084
+ itemSelected?: (
16085
+ oEvent: Event<$MenuButtonItemSelectedEventParameters>
16086
+ ) => void;
16087
+ }
16088
+
16089
+ export interface $MenuButtonItemSelectedEventParameters {
16090
+ /**
16091
+ * The ID of the selected item
16092
+ */
16093
+ itemId?: string;
16094
+
16095
+ /**
16096
+ * The selected item
16097
+ */
16098
+ item?: MenuItemBase;
16099
+ }
16100
+
16101
+ export interface $MenuButtonPressEventParameters
16102
+ extends $ButtonPressEventParameters {
16103
+ /**
16104
+ * The id of the selected item
16105
+ */
16106
+ itemId?: string;
16107
+
16108
+ /**
16109
+ * The selected item
16110
+ */
16111
+ item?: MenuItemBase1;
15987
16112
  }
15988
16113
  }
15989
16114
 
@@ -16002,7 +16127,7 @@ declare module "sap/ui/commons/MenuItem" {
16002
16127
  * Standard item to be used inside a menu. A menu item represents an action which can be selected by the
16003
16128
  * user in the menu or it can provide a submenu to organize the actions hierarchically.
16004
16129
  */
16005
- export default class MenuItem extends MenuItem1 {
16130
+ class MenuItem extends MenuItem1 {
16006
16131
  /**
16007
16132
  * Constructor for a new MenuItem element.
16008
16133
  *
@@ -16010,8 +16135,8 @@ declare module "sap/ui/commons/MenuItem" {
16010
16135
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
16011
16136
  * of the syntax of the settings object.
16012
16137
  *
16013
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.MenuItem#constructor
16014
- * sap.ui.unified.MenuItem} can be used.
16138
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.MenuItem#constructor sap.ui.unified.MenuItem }
16139
+ * can be used.
16015
16140
  */
16016
16141
  constructor(
16017
16142
  /**
@@ -16026,8 +16151,8 @@ declare module "sap/ui/commons/MenuItem" {
16026
16151
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
16027
16152
  * of the syntax of the settings object.
16028
16153
  *
16029
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.MenuItem#constructor
16030
- * sap.ui.unified.MenuItem} can be used.
16154
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.MenuItem#constructor sap.ui.unified.MenuItem }
16155
+ * can be used.
16031
16156
  */
16032
16157
  constructor(
16033
16158
  /**
@@ -16070,6 +16195,7 @@ declare module "sap/ui/commons/MenuItem" {
16070
16195
  */
16071
16196
  static getMetadata(): ElementMetadata;
16072
16197
  }
16198
+ export default MenuItem;
16073
16199
 
16074
16200
  export interface $MenuItemSettings extends $MenuItemSettings1 {}
16075
16201
  }
@@ -16086,7 +16212,7 @@ declare module "sap/ui/commons/MenuItemBase" {
16086
16212
  *
16087
16213
  * Abstract base class for menu item which provides common properties and events for all concrete item implementations.
16088
16214
  */
16089
- export default class MenuItemBase extends MenuItemBase1 {
16215
+ class MenuItemBase extends MenuItemBase1 {
16090
16216
  /**
16091
16217
  * Abstract base class `MenuItemBase` for menu item elements. Please use concrete subclasses.
16092
16218
  */
@@ -16110,6 +16236,7 @@ declare module "sap/ui/commons/MenuItemBase" {
16110
16236
  mSettings?: $MenuItemBaseSettings
16111
16237
  );
16112
16238
  }
16239
+ export default MenuItemBase;
16113
16240
 
16114
16241
  export interface $MenuItemBaseSettings extends $MenuItemBaseSettings1 {}
16115
16242
  }
@@ -16130,7 +16257,7 @@ declare module "sap/ui/commons/MenuTextFieldItem" {
16130
16257
  * implementations. The aggregation `submenu` (inherited from parent class) is not supported for this type
16131
16258
  * of menu item.
16132
16259
  */
16133
- export default class MenuTextFieldItem extends MenuTextFieldItem1 {
16260
+ class MenuTextFieldItem extends MenuTextFieldItem1 {
16134
16261
  /**
16135
16262
  * Constructor for a new MenuTextFieldItem element.
16136
16263
  *
@@ -16138,8 +16265,8 @@ declare module "sap/ui/commons/MenuTextFieldItem" {
16138
16265
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
16139
16266
  * of the syntax of the settings object.
16140
16267
  *
16141
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.MenuTextFieldItem#constructor
16142
- * sap.ui.unified.MenuTextFieldItem} can be used.
16268
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.MenuTextFieldItem#constructor sap.ui.unified.MenuTextFieldItem }
16269
+ * can be used.
16143
16270
  */
16144
16271
  constructor(
16145
16272
  /**
@@ -16154,8 +16281,8 @@ declare module "sap/ui/commons/MenuTextFieldItem" {
16154
16281
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
16155
16282
  * of the syntax of the settings object.
16156
16283
  *
16157
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.MenuTextFieldItem#constructor
16158
- * sap.ui.unified.MenuTextFieldItem} can be used.
16284
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.unified.MenuTextFieldItem#constructor sap.ui.unified.MenuTextFieldItem }
16285
+ * can be used.
16159
16286
  */
16160
16287
  constructor(
16161
16288
  /**
@@ -16198,6 +16325,7 @@ declare module "sap/ui/commons/MenuTextFieldItem" {
16198
16325
  */
16199
16326
  static getMetadata(): ElementMetadata;
16200
16327
  }
16328
+ export default MenuTextFieldItem;
16201
16329
 
16202
16330
  export interface $MenuTextFieldItemSettings
16203
16331
  extends $MenuTextFieldItemSettings1 {}
@@ -16218,7 +16346,7 @@ declare module "sap/ui/commons/Message" {
16218
16346
  *
16219
16347
  * Creates the "Message"s to be supplied to the "MessageBar" Control.
16220
16348
  */
16221
- export default class Message extends Control {
16349
+ class Message extends Control {
16222
16350
  /**
16223
16351
  * Constructor for a new Message.
16224
16352
  *
@@ -16386,6 +16514,7 @@ declare module "sap/ui/commons/Message" {
16386
16514
  sType?: MessageType | keyof typeof MessageType
16387
16515
  ): this;
16388
16516
  }
16517
+ export default Message;
16389
16518
 
16390
16519
  export interface $MessageSettings extends $ControlSettings {
16391
16520
  /**
@@ -16427,7 +16556,7 @@ declare module "sap/ui/commons/MessageBar" {
16427
16556
  *
16428
16557
  * Creates an instance of a MessageBar Control, for displaying messages.
16429
16558
  */
16430
- export default class MessageBar extends Control {
16559
+ class MessageBar extends Control {
16431
16560
  /**
16432
16561
  * Constructor for a new MessageBar.
16433
16562
  *
@@ -16657,6 +16786,7 @@ declare module "sap/ui/commons/MessageBar" {
16657
16786
  bVisible: boolean
16658
16787
  ): this;
16659
16788
  }
16789
+ export default MessageBar;
16660
16790
 
16661
16791
  export interface $MessageBarSettings extends $ControlSettings {
16662
16792
  /**
@@ -16715,6 +16845,23 @@ declare module "sap/ui/commons/MessageBox" {
16715
16845
  * ```
16716
16846
  */
16717
16847
  interface MessageBox {
16848
+ /**
16849
+ * @deprecated (since 1.38)
16850
+ *
16851
+ * Enumeration of supported actions in a MessageBox.
16852
+ *
16853
+ * Each action is represented as a button in the message box. The values of this enumeration are used for
16854
+ * both, specifying the set of allowed actions as well as reporting back the user choice.
16855
+ */
16856
+ Action: typeof Action;
16857
+
16858
+ /**
16859
+ * @deprecated (since 1.38)
16860
+ *
16861
+ * Enumeration of the pre-defined icons that can be used in a MessageBox.
16862
+ */
16863
+ Icon: typeof Icon;
16864
+
16718
16865
  /**
16719
16866
  * Displays an alert box with the given message and an OK button (no icons). If a callback is given, it
16720
16867
  * is called after the alert box has been closed by the user via the OK button or via the Close icon. The
@@ -16850,7 +16997,7 @@ declare module "sap/ui/commons/MessageBox" {
16850
16997
  * Each action is represented as a button in the message box. The values of this enumeration are used for
16851
16998
  * both, specifying the set of allowed actions as well as reporting back the user choice.
16852
16999
  */
16853
- export enum Action {
17000
+ enum Action {
16854
17001
  /**
16855
17002
  * Adds an "Abort" button to the message box.
16856
17003
  */
@@ -16889,7 +17036,7 @@ declare module "sap/ui/commons/MessageBox" {
16889
17036
  *
16890
17037
  * Enumeration of the pre-defined icons that can be used in a MessageBox.
16891
17038
  */
16892
- export enum Icon {
17039
+ enum Icon {
16893
17040
  /**
16894
17041
  * @deprecated (since 1.9.1) - The error icon is used instead
16895
17042
  *
@@ -16938,7 +17085,7 @@ declare module "sap/ui/commons/MessageList" {
16938
17085
  *
16939
17086
  * Instantiated by the "MessageBar" Control if the user requests to generate the corresponding "MessageList".
16940
17087
  */
16941
- export default class MessageList extends Control {
17088
+ class MessageList extends Control {
16942
17089
  /**
16943
17090
  * Constructor for a new MessageList.
16944
17091
  *
@@ -17085,6 +17232,7 @@ declare module "sap/ui/commons/MessageList" {
17085
17232
  bVisible: boolean
17086
17233
  ): this;
17087
17234
  }
17235
+ export default MessageList;
17088
17236
 
17089
17237
  export interface $MessageListSettings extends $ControlSettings {
17090
17238
  /**
@@ -17120,7 +17268,7 @@ declare module "sap/ui/commons/MessageToast" {
17120
17268
  *
17121
17269
  * Responsible for displaying the new incoming messages, one at the time, on top of the MessageBar.
17122
17270
  */
17123
- export default class MessageToast extends Control {
17271
+ class MessageToast extends Control {
17124
17272
  /**
17125
17273
  * Constructor for a new MessageToast.
17126
17274
  *
@@ -17300,6 +17448,7 @@ declare module "sap/ui/commons/MessageToast" {
17300
17448
  sAnchorId: string
17301
17449
  ): void;
17302
17450
  }
17451
+ export default MessageToast;
17303
17452
 
17304
17453
  export interface $MessageToastSettings extends $ControlSettings {
17305
17454
  /**
@@ -17312,6 +17461,8 @@ declare module "sap/ui/commons/MessageToast" {
17312
17461
  */
17313
17462
  next?: (oEvent: Event) => void;
17314
17463
  }
17464
+
17465
+ export interface $MessageToastNextEventParameters {}
17315
17466
  }
17316
17467
 
17317
17468
  declare module "sap/ui/commons/Paginator" {
@@ -17319,18 +17470,18 @@ declare module "sap/ui/commons/Paginator" {
17319
17470
 
17320
17471
  import Event from "sap/ui/base/Event";
17321
17472
 
17322
- import { PaginatorEvent } from "sap/ui/commons/library";
17323
-
17324
17473
  import ElementMetadata from "sap/ui/core/ElementMetadata";
17325
17474
 
17326
17475
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
17327
17476
 
17477
+ import { PaginatorEvent } from "sap/ui/commons/library";
17478
+
17328
17479
  /**
17329
17480
  * @deprecated (since 1.38)
17330
17481
  *
17331
17482
  * Provides navigation between pages within a list of numbered pages.
17332
17483
  */
17333
- export default class Paginator extends Control {
17484
+ class Paginator extends Control {
17334
17485
  /**
17335
17486
  * Constructor for a new Paginator.
17336
17487
  *
@@ -17410,7 +17561,7 @@ declare module "sap/ui/commons/Paginator" {
17410
17561
  /**
17411
17562
  * The function to be called when the event occurs
17412
17563
  */
17413
- fnFunction: (p1: Event) => void,
17564
+ fnFunction: (p1: Event<$PaginatorPageEventParameters>) => void,
17414
17565
  /**
17415
17566
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.Paginator` itself
17416
17567
  */
@@ -17430,7 +17581,7 @@ declare module "sap/ui/commons/Paginator" {
17430
17581
  /**
17431
17582
  * The function to be called when the event occurs
17432
17583
  */
17433
- fnFunction: (p1: Event) => void,
17584
+ fnFunction: (p1: Event<$PaginatorPageEventParameters>) => void,
17434
17585
  /**
17435
17586
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.Paginator` itself
17436
17587
  */
@@ -17447,7 +17598,7 @@ declare module "sap/ui/commons/Paginator" {
17447
17598
  /**
17448
17599
  * The function to be called, when the event occurs
17449
17600
  */
17450
- fnFunction: (p1: Event) => void,
17601
+ fnFunction: (p1: Event<$PaginatorPageEventParameters>) => void,
17451
17602
  /**
17452
17603
  * Context object on which the given function had to be called
17453
17604
  */
@@ -17464,24 +17615,7 @@ declare module "sap/ui/commons/Paginator" {
17464
17615
  /**
17465
17616
  * Parameters to pass along with the event
17466
17617
  */
17467
- mParameters?: {
17468
- /**
17469
- * The page which is the current one before the page event is fired (and another page is displayed)
17470
- */
17471
- srcPage?: int;
17472
- /**
17473
- * The page that shall be displayed next after the page event is fired.
17474
- *
17475
- * The page number is 1-based: the first page has index 1, not 0, to match the number visible in the UI.
17476
- */
17477
- targetPage?: int;
17478
- /**
17479
- * Provides the values 'First', 'Last', 'Next', 'Previous', 'Goto'. The event parameter informs the application
17480
- * how the user navigated to the new page: Whether the 'Next' button was used, or another button, or whether
17481
- * the page was directly selected
17482
- */
17483
- type?: PaginatorEvent | keyof typeof PaginatorEvent;
17484
- }
17618
+ mParameters?: $PaginatorPageEventParameters
17485
17619
  ): this;
17486
17620
  /**
17487
17621
  * Gets current value of property {@link #getCurrentPage currentPage}.
@@ -17534,6 +17668,7 @@ declare module "sap/ui/commons/Paginator" {
17534
17668
  iNumberOfPages?: int
17535
17669
  ): this;
17536
17670
  }
17671
+ export default Paginator;
17537
17672
 
17538
17673
  export interface $PaginatorSettings extends $ControlSettings {
17539
17674
  /**
@@ -17549,7 +17684,28 @@ declare module "sap/ui/commons/Paginator" {
17549
17684
  /**
17550
17685
  * Event is fired when the user navigates to another page by selecting it directly, or by jumping forward/backward.
17551
17686
  */
17552
- page?: (oEvent: Event) => void;
17687
+ page?: (oEvent: Event<$PaginatorPageEventParameters>) => void;
17688
+ }
17689
+
17690
+ export interface $PaginatorPageEventParameters {
17691
+ /**
17692
+ * The page which is the current one before the page event is fired (and another page is displayed)
17693
+ */
17694
+ srcPage?: int;
17695
+
17696
+ /**
17697
+ * The page that shall be displayed next after the page event is fired.
17698
+ *
17699
+ * The page number is 1-based: the first page has index 1, not 0, to match the number visible in the UI.
17700
+ */
17701
+ targetPage?: int;
17702
+
17703
+ /**
17704
+ * Provides the values 'First', 'Last', 'Next', 'Previous', 'Goto'. The event parameter informs the application
17705
+ * how the user navigated to the new page: Whether the 'Next' button was used, or another button, or whether
17706
+ * the page was directly selected
17707
+ */
17708
+ type?: PaginatorEvent | keyof typeof PaginatorEvent;
17553
17709
  }
17554
17710
  }
17555
17711
 
@@ -17577,7 +17733,7 @@ declare module "sap/ui/commons/Panel" {
17577
17733
  * Represents a container with scroll functionality, that can be used for text and controls. The Panel does
17578
17734
  * not layout the embedded controls.
17579
17735
  */
17580
- export default class Panel extends Control {
17736
+ class Panel extends Control {
17581
17737
  /**
17582
17738
  * Constructor for a new Panel.
17583
17739
  *
@@ -18070,6 +18226,7 @@ declare module "sap/ui/commons/Panel" {
18070
18226
  sWidth: CSSSize
18071
18227
  ): this;
18072
18228
  }
18229
+ export default Panel;
18073
18230
 
18074
18231
  export interface $PanelSettings extends $ControlSettings {
18075
18232
  /**
@@ -18169,7 +18326,7 @@ declare module "sap/ui/commons/PasswordField" {
18169
18326
  *
18170
18327
  * A text field with masked characters which borrows its properties and methods from TextField.
18171
18328
  */
18172
- export default class PasswordField extends TextField {
18329
+ class PasswordField extends TextField {
18173
18330
  /**
18174
18331
  * Constructor for a new PasswordField.
18175
18332
  *
@@ -18177,8 +18334,8 @@ declare module "sap/ui/commons/PasswordField" {
18177
18334
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
18178
18335
  * of the syntax of the settings object.
18179
18336
  *
18180
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.commons.TextField#constructor
18181
- * sap.ui.commons.TextField} can be used.
18337
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.commons.TextField#constructor sap.ui.commons.TextField }
18338
+ * can be used.
18182
18339
  */
18183
18340
  constructor(
18184
18341
  /**
@@ -18193,8 +18350,8 @@ declare module "sap/ui/commons/PasswordField" {
18193
18350
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
18194
18351
  * of the syntax of the settings object.
18195
18352
  *
18196
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.commons.TextField#constructor
18197
- * sap.ui.commons.TextField} can be used.
18353
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.commons.TextField#constructor sap.ui.commons.TextField }
18354
+ * can be used.
18198
18355
  */
18199
18356
  constructor(
18200
18357
  /**
@@ -18237,6 +18394,7 @@ declare module "sap/ui/commons/PasswordField" {
18237
18394
  */
18238
18395
  static getMetadata(): ElementMetadata;
18239
18396
  }
18397
+ export default PasswordField;
18240
18398
 
18241
18399
  export interface $PasswordFieldSettings extends $TextFieldSettings {}
18242
18400
  }
@@ -18257,7 +18415,7 @@ declare module "sap/ui/commons/ProgressIndicator" {
18257
18415
  * values. The filling can be displayed in color only, or additionally with the percentage rate. The indicator
18258
18416
  * status can be interactive.
18259
18417
  */
18260
- export default class ProgressIndicator extends Control {
18418
+ class ProgressIndicator extends Control {
18261
18419
  /**
18262
18420
  * Constructor for a new ProgressIndicator.
18263
18421
  *
@@ -18491,6 +18649,7 @@ declare module "sap/ui/commons/ProgressIndicator" {
18491
18649
  sWidth?: CSSSize
18492
18650
  ): this;
18493
18651
  }
18652
+ export default ProgressIndicator;
18494
18653
 
18495
18654
  export interface $ProgressIndicatorSettings extends $ControlSettings {
18496
18655
  /**
@@ -18558,7 +18717,7 @@ declare module "sap/ui/commons/RadioButton" {
18558
18717
  * sap.ui.commons.RadioButtonGroup), thus providing a limited choice for the user. An event is triggered
18559
18718
  * when the user makes a change of the selection.
18560
18719
  */
18561
- export default class RadioButton extends Control implements IFormContent {
18720
+ class RadioButton extends Control implements IFormContent {
18562
18721
  __implements__sap_ui_core_IFormContent: boolean;
18563
18722
  /**
18564
18723
  * Constructor for a new RadioButton.
@@ -18718,13 +18877,11 @@ declare module "sap/ui/commons/RadioButton" {
18718
18877
  mParameters?: object
18719
18878
  ): this;
18720
18879
  /**
18721
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
18722
- * ariaDescribedBy}.
18880
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
18723
18881
  */
18724
18882
  getAriaDescribedBy(): ID[];
18725
18883
  /**
18726
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
18727
- * ariaLabelledBy}.
18884
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
18728
18885
  */
18729
18886
  getAriaLabelledBy(): ID[];
18730
18887
  /**
@@ -19001,6 +19158,7 @@ declare module "sap/ui/commons/RadioButton" {
19001
19158
  sWidth?: CSSSize
19002
19159
  ): this;
19003
19160
  }
19161
+ export default RadioButton;
19004
19162
 
19005
19163
  export interface $RadioButtonSettings extends $ControlSettings {
19006
19164
  /**
@@ -19073,6 +19231,8 @@ declare module "sap/ui/commons/RadioButton" {
19073
19231
  */
19074
19232
  select?: (oEvent: Event) => void;
19075
19233
  }
19234
+
19235
+ export interface $RadioButtonSelectEventParameters {}
19076
19236
  }
19077
19237
 
19078
19238
  declare module "sap/ui/commons/RadioButtonGroup" {
@@ -19099,9 +19259,7 @@ declare module "sap/ui/commons/RadioButtonGroup" {
19099
19259
  * For the representation of the single group entries, the RadioButton items are created automatically.
19100
19260
  * For the RadioButton choice, mouse and keyboard navigation usage is supported.
19101
19261
  */
19102
- export default class RadioButtonGroup
19103
- extends Control
19104
- implements IFormContent {
19262
+ class RadioButtonGroup extends Control implements IFormContent {
19105
19263
  __implements__sap_ui_core_IFormContent: boolean;
19106
19264
  /**
19107
19265
  * Constructor for a new RadioButtonGroup.
@@ -19215,7 +19373,7 @@ declare module "sap/ui/commons/RadioButtonGroup" {
19215
19373
  /**
19216
19374
  * The function to be called when the event occurs
19217
19375
  */
19218
- fnFunction: (p1: Event) => void,
19376
+ fnFunction: (p1: Event<$RadioButtonGroupSelectEventParameters>) => void,
19219
19377
  /**
19220
19378
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.RadioButtonGroup` itself
19221
19379
  */
@@ -19235,7 +19393,7 @@ declare module "sap/ui/commons/RadioButtonGroup" {
19235
19393
  /**
19236
19394
  * The function to be called when the event occurs
19237
19395
  */
19238
- fnFunction: (p1: Event) => void,
19396
+ fnFunction: (p1: Event<$RadioButtonGroupSelectEventParameters>) => void,
19239
19397
  /**
19240
19398
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.RadioButtonGroup` itself
19241
19399
  */
@@ -19279,7 +19437,7 @@ declare module "sap/ui/commons/RadioButtonGroup" {
19279
19437
  /**
19280
19438
  * The function to be called, when the event occurs
19281
19439
  */
19282
- fnFunction: (p1: Event) => void,
19440
+ fnFunction: (p1: Event<$RadioButtonGroupSelectEventParameters>) => void,
19283
19441
  /**
19284
19442
  * Context object on which the given function had to be called
19285
19443
  */
@@ -19296,21 +19454,14 @@ declare module "sap/ui/commons/RadioButtonGroup" {
19296
19454
  /**
19297
19455
  * Parameters to pass along with the event
19298
19456
  */
19299
- mParameters?: {
19300
- /**
19301
- * Index of the selected RadioButton.
19302
- */
19303
- selectedIndex?: int;
19304
- }
19457
+ mParameters?: $RadioButtonGroupSelectEventParameters
19305
19458
  ): this;
19306
19459
  /**
19307
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
19308
- * ariaDescribedBy}.
19460
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
19309
19461
  */
19310
19462
  getAriaDescribedBy(): ID[];
19311
19463
  /**
19312
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
19313
- * ariaLabelledBy}.
19464
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
19314
19465
  */
19315
19466
  getAriaLabelledBy(): ID[];
19316
19467
  /**
@@ -19599,6 +19750,7 @@ declare module "sap/ui/commons/RadioButtonGroup" {
19599
19750
  */
19600
19751
  unbindItems(): this;
19601
19752
  }
19753
+ export default RadioButtonGroup;
19602
19754
 
19603
19755
  export interface $RadioButtonGroupSettings extends $ControlSettings {
19604
19756
  /**
@@ -19661,7 +19813,14 @@ declare module "sap/ui/commons/RadioButtonGroup" {
19661
19813
  /**
19662
19814
  * Fires when selection is changed by user interaction.
19663
19815
  */
19664
- select?: (oEvent: Event) => void;
19816
+ select?: (oEvent: Event<$RadioButtonGroupSelectEventParameters>) => void;
19817
+ }
19818
+
19819
+ export interface $RadioButtonGroupSelectEventParameters {
19820
+ /**
19821
+ * Index of the selected RadioButton.
19822
+ */
19823
+ selectedIndex?: int;
19665
19824
  }
19666
19825
  }
19667
19826
 
@@ -19679,7 +19838,7 @@ declare module "sap/ui/commons/RangeSlider" {
19679
19838
  * The interactive control is displayed either as a horizontal or a vertical line with two pointers and
19680
19839
  * units of measurement. Users can move the pointers along the line to change a range with graphical support.
19681
19840
  */
19682
- export default class RangeSlider extends Slider {
19841
+ class RangeSlider extends Slider {
19683
19842
  /**
19684
19843
  * Constructor for a new `RangeSlider`.
19685
19844
  *
@@ -19774,6 +19933,7 @@ declare module "sap/ui/commons/RangeSlider" {
19774
19933
  fValue2?: float
19775
19934
  ): this;
19776
19935
  }
19936
+ export default RangeSlider;
19777
19937
 
19778
19938
  export interface $RangeSliderSettings extends $SliderSettings {
19779
19939
  /**
@@ -19806,7 +19966,7 @@ declare module "sap/ui/commons/RatingIndicator" {
19806
19966
  * can be specified, as well as the URIs to the image icons which shall be used as rating symbols. When
19807
19967
  * the user performs a rating, an event is fired.
19808
19968
  */
19809
- export default class RatingIndicator extends Control {
19969
+ class RatingIndicator extends Control {
19810
19970
  /**
19811
19971
  * Constructor for a new RatingIndicator.
19812
19972
  *
@@ -19908,7 +20068,7 @@ declare module "sap/ui/commons/RatingIndicator" {
19908
20068
  /**
19909
20069
  * The function to be called when the event occurs
19910
20070
  */
19911
- fnFunction: (p1: Event) => void,
20071
+ fnFunction: (p1: Event<$RatingIndicatorChangeEventParameters>) => void,
19912
20072
  /**
19913
20073
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.RatingIndicator` itself
19914
20074
  */
@@ -19928,7 +20088,7 @@ declare module "sap/ui/commons/RatingIndicator" {
19928
20088
  /**
19929
20089
  * The function to be called when the event occurs
19930
20090
  */
19931
- fnFunction: (p1: Event) => void,
20091
+ fnFunction: (p1: Event<$RatingIndicatorChangeEventParameters>) => void,
19932
20092
  /**
19933
20093
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.RatingIndicator` itself
19934
20094
  */
@@ -19959,7 +20119,7 @@ declare module "sap/ui/commons/RatingIndicator" {
19959
20119
  /**
19960
20120
  * The function to be called, when the event occurs
19961
20121
  */
19962
- fnFunction: (p1: Event) => void,
20122
+ fnFunction: (p1: Event<$RatingIndicatorChangeEventParameters>) => void,
19963
20123
  /**
19964
20124
  * Context object on which the given function had to be called
19965
20125
  */
@@ -19976,12 +20136,7 @@ declare module "sap/ui/commons/RatingIndicator" {
19976
20136
  /**
19977
20137
  * Parameters to pass along with the event
19978
20138
  */
19979
- mParameters?: {
19980
- /**
19981
- * The value of the user rating
19982
- */
19983
- value?: int;
19984
- }
20139
+ mParameters?: $RatingIndicatorChangeEventParameters
19985
20140
  ): this;
19986
20141
  /**
19987
20142
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -19993,13 +20148,11 @@ declare module "sap/ui/commons/RatingIndicator" {
19993
20148
  */
19994
20149
  getAccessibilityInfo(): object;
19995
20150
  /**
19996
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
19997
- * ariaDescribedBy}.
20151
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
19998
20152
  */
19999
20153
  getAriaDescribedBy(): ID[];
20000
20154
  /**
20001
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
20002
- * ariaLabelledBy}.
20155
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
20003
20156
  */
20004
20157
  getAriaLabelledBy(): ID[];
20005
20158
  /**
@@ -20261,6 +20414,7 @@ declare module "sap/ui/commons/RatingIndicator" {
20261
20414
  */
20262
20415
  unbindValue(): this;
20263
20416
  }
20417
+ export default RatingIndicator;
20264
20418
 
20265
20419
  export interface $RatingIndicatorSettings extends $ControlSettings {
20266
20420
  /**
@@ -20326,7 +20480,14 @@ declare module "sap/ui/commons/RatingIndicator" {
20326
20480
  /**
20327
20481
  * The event is fired when the user has done a rating.
20328
20482
  */
20329
- change?: (oEvent: Event) => void;
20483
+ change?: (oEvent: Event<$RatingIndicatorChangeEventParameters>) => void;
20484
+ }
20485
+
20486
+ export interface $RatingIndicatorChangeEventParameters {
20487
+ /**
20488
+ * The value of the user rating
20489
+ */
20490
+ value?: int;
20330
20491
  }
20331
20492
  }
20332
20493
 
@@ -20353,7 +20514,7 @@ declare module "sap/ui/commons/ResponsiveContainer" {
20353
20514
  * an event, whenever a new range is reached. In addition the content of the new range is automatically
20354
20515
  * shown, if it is set.
20355
20516
  */
20356
- export default class ResponsiveContainer extends Control {
20517
+ class ResponsiveContainer extends Control {
20357
20518
  /**
20358
20519
  * Constructor for a new ResponsiveContainer.
20359
20520
  *
@@ -20444,7 +20605,9 @@ declare module "sap/ui/commons/ResponsiveContainer" {
20444
20605
  /**
20445
20606
  * The function to be called when the event occurs
20446
20607
  */
20447
- fnFunction: (p1: Event) => void,
20608
+ fnFunction: (
20609
+ p1: Event<$ResponsiveContainerRangeSwitchEventParameters>
20610
+ ) => void,
20448
20611
  /**
20449
20612
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.ResponsiveContainer`
20450
20613
  * itself
@@ -20465,7 +20628,9 @@ declare module "sap/ui/commons/ResponsiveContainer" {
20465
20628
  /**
20466
20629
  * The function to be called when the event occurs
20467
20630
  */
20468
- fnFunction: (p1: Event) => void,
20631
+ fnFunction: (
20632
+ p1: Event<$ResponsiveContainerRangeSwitchEventParameters>
20633
+ ) => void,
20469
20634
  /**
20470
20635
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.ResponsiveContainer`
20471
20636
  * itself
@@ -20489,7 +20654,9 @@ declare module "sap/ui/commons/ResponsiveContainer" {
20489
20654
  /**
20490
20655
  * The function to be called, when the event occurs
20491
20656
  */
20492
- fnFunction: (p1: Event) => void,
20657
+ fnFunction: (
20658
+ p1: Event<$ResponsiveContainerRangeSwitchEventParameters>
20659
+ ) => void,
20493
20660
  /**
20494
20661
  * Context object on which the given function had to be called
20495
20662
  */
@@ -20506,12 +20673,7 @@ declare module "sap/ui/commons/ResponsiveContainer" {
20506
20673
  /**
20507
20674
  * Parameters to pass along with the event
20508
20675
  */
20509
- mParameters?: {
20510
- /**
20511
- * The current range
20512
- */
20513
- currentRange?: ResponsiveContainerRange;
20514
- }
20676
+ mParameters?: $ResponsiveContainerRangeSwitchEventParameters
20515
20677
  ): this;
20516
20678
  /**
20517
20679
  * ID of the element which is the current target of the association {@link #getDefaultContent defaultContent},
@@ -20545,8 +20707,8 @@ declare module "sap/ui/commons/ResponsiveContainer" {
20545
20707
  */
20546
20708
  getWidth(): CSSSize;
20547
20709
  /**
20548
- * Checks for the provided `sap.ui.commons.ResponsiveContainerRange` in the aggregation {@link #getRanges
20549
- * ranges}. and returns its index if found or -1 otherwise.
20710
+ * Checks for the provided `sap.ui.commons.ResponsiveContainerRange` in the aggregation {@link #getRanges ranges}.
20711
+ * and returns its index if found or -1 otherwise.
20550
20712
  *
20551
20713
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
20552
20714
  */
@@ -20639,6 +20801,7 @@ declare module "sap/ui/commons/ResponsiveContainer" {
20639
20801
  sWidth?: CSSSize
20640
20802
  ): this;
20641
20803
  }
20804
+ export default ResponsiveContainer;
20642
20805
 
20643
20806
  export interface $ResponsiveContainerSettings extends $ControlSettings {
20644
20807
  /**
@@ -20668,7 +20831,16 @@ declare module "sap/ui/commons/ResponsiveContainer" {
20668
20831
  /**
20669
20832
  * The event is fired the width of the container reaches a new range.
20670
20833
  */
20671
- rangeSwitch?: (oEvent: Event) => void;
20834
+ rangeSwitch?: (
20835
+ oEvent: Event<$ResponsiveContainerRangeSwitchEventParameters>
20836
+ ) => void;
20837
+ }
20838
+
20839
+ export interface $ResponsiveContainerRangeSwitchEventParameters {
20840
+ /**
20841
+ * The current range
20842
+ */
20843
+ currentRange?: ResponsiveContainerRange;
20672
20844
  }
20673
20845
  }
20674
20846
 
@@ -20688,7 +20860,7 @@ declare module "sap/ui/commons/ResponsiveContainerRange" {
20688
20860
  *
20689
20861
  * Defines a range for the ResponsiveContainer
20690
20862
  */
20691
- export default class ResponsiveContainerRange extends UI5Element {
20863
+ class ResponsiveContainerRange extends UI5Element {
20692
20864
  /**
20693
20865
  * Constructor for a new ResponsiveContainerRange.
20694
20866
  *
@@ -20847,6 +21019,7 @@ declare module "sap/ui/commons/ResponsiveContainerRange" {
20847
21019
  sWidth?: CSSSize
20848
21020
  ): this;
20849
21021
  }
21022
+ export default ResponsiveContainerRange;
20850
21023
 
20851
21024
  export interface $ResponsiveContainerRangeSettings extends $ElementSettings {
20852
21025
  /**
@@ -20889,7 +21062,7 @@ declare module "sap/ui/commons/RichTooltip" {
20889
21062
  *
20890
21063
  * Is used to provide tool tips that can have long text, image and title. This tool tip extends the TooltipBase.
20891
21064
  */
20892
- export default class RichTooltip extends TooltipBase {
21065
+ class RichTooltip extends TooltipBase {
20893
21066
  /**
20894
21067
  * Constructor for a new RichTooltip.
20895
21068
  *
@@ -21050,6 +21223,7 @@ declare module "sap/ui/commons/RichTooltip" {
21050
21223
  sText: string
21051
21224
  ): this;
21052
21225
  }
21226
+ export default RichTooltip;
21053
21227
 
21054
21228
  export interface $RichTooltipSettings extends $TooltipBaseSettings {
21055
21229
  /**
@@ -21099,7 +21273,7 @@ declare module "sap/ui/commons/RoadMap" {
21099
21273
  *
21100
21274
  * RoadMap is used to display step-by-step work flows of a clearly defined work process.
21101
21275
  */
21102
- export default class RoadMap extends Control {
21276
+ class RoadMap extends Control {
21103
21277
  /**
21104
21278
  * Constructor for a new RoadMap.
21105
21279
  *
@@ -21190,7 +21364,7 @@ declare module "sap/ui/commons/RoadMap" {
21190
21364
  /**
21191
21365
  * The function to be called when the event occurs
21192
21366
  */
21193
- fnFunction: (p1: Event) => void,
21367
+ fnFunction: (p1: Event<$RoadMapStepExpandedEventParameters>) => void,
21194
21368
  /**
21195
21369
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.RoadMap` itself
21196
21370
  */
@@ -21210,7 +21384,7 @@ declare module "sap/ui/commons/RoadMap" {
21210
21384
  /**
21211
21385
  * The function to be called when the event occurs
21212
21386
  */
21213
- fnFunction: (p1: Event) => void,
21387
+ fnFunction: (p1: Event<$RoadMapStepExpandedEventParameters>) => void,
21214
21388
  /**
21215
21389
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.RoadMap` itself
21216
21390
  */
@@ -21235,7 +21409,7 @@ declare module "sap/ui/commons/RoadMap" {
21235
21409
  /**
21236
21410
  * The function to be called when the event occurs
21237
21411
  */
21238
- fnFunction: (p1: Event) => void,
21412
+ fnFunction: (p1: Event<$RoadMapStepSelectedEventParameters>) => void,
21239
21413
  /**
21240
21414
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.RoadMap` itself
21241
21415
  */
@@ -21255,7 +21429,7 @@ declare module "sap/ui/commons/RoadMap" {
21255
21429
  /**
21256
21430
  * The function to be called when the event occurs
21257
21431
  */
21258
- fnFunction: (p1: Event) => void,
21432
+ fnFunction: (p1: Event<$RoadMapStepSelectedEventParameters>) => void,
21259
21433
  /**
21260
21434
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.RoadMap` itself
21261
21435
  */
@@ -21278,7 +21452,7 @@ declare module "sap/ui/commons/RoadMap" {
21278
21452
  /**
21279
21453
  * The function to be called, when the event occurs
21280
21454
  */
21281
- fnFunction: (p1: Event) => void,
21455
+ fnFunction: (p1: Event<$RoadMapStepExpandedEventParameters>) => void,
21282
21456
  /**
21283
21457
  * Context object on which the given function had to be called
21284
21458
  */
@@ -21295,7 +21469,7 @@ declare module "sap/ui/commons/RoadMap" {
21295
21469
  /**
21296
21470
  * The function to be called, when the event occurs
21297
21471
  */
21298
- fnFunction: (p1: Event) => void,
21472
+ fnFunction: (p1: Event<$RoadMapStepSelectedEventParameters>) => void,
21299
21473
  /**
21300
21474
  * Context object on which the given function had to be called
21301
21475
  */
@@ -21312,12 +21486,7 @@ declare module "sap/ui/commons/RoadMap" {
21312
21486
  /**
21313
21487
  * Parameters to pass along with the event
21314
21488
  */
21315
- mParameters?: {
21316
- /**
21317
- * ID of the expanded/collapsed step
21318
- */
21319
- stepId?: string;
21320
- }
21489
+ mParameters?: $RoadMapStepExpandedEventParameters
21321
21490
  ): this;
21322
21491
  /**
21323
21492
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -21330,12 +21499,7 @@ declare module "sap/ui/commons/RoadMap" {
21330
21499
  /**
21331
21500
  * Parameters to pass along with the event
21332
21501
  */
21333
- mParameters?: {
21334
- /**
21335
- * ID of the selected step
21336
- */
21337
- stepId?: string;
21338
- }
21502
+ mParameters?: $RoadMapStepSelectedEventParameters
21339
21503
  ): this;
21340
21504
  /**
21341
21505
  * Gets current value of property {@link #getFirstVisibleStep firstVisibleStep}.
@@ -21488,6 +21652,7 @@ declare module "sap/ui/commons/RoadMap" {
21488
21652
  sWidth?: CSSSize
21489
21653
  ): this;
21490
21654
  }
21655
+ export default RoadMap;
21491
21656
 
21492
21657
  export interface $RoadMapSettings extends $ControlSettings {
21493
21658
  /**
@@ -21522,12 +21687,26 @@ declare module "sap/ui/commons/RoadMap" {
21522
21687
  /**
21523
21688
  * Event is fired when the user selects a step.
21524
21689
  */
21525
- stepSelected?: (oEvent: Event) => void;
21690
+ stepSelected?: (oEvent: Event<$RoadMapStepSelectedEventParameters>) => void;
21526
21691
 
21527
21692
  /**
21528
21693
  * Event is fired when a given step is expanded or collapsed by user.
21529
21694
  */
21530
- stepExpanded?: (oEvent: Event) => void;
21695
+ stepExpanded?: (oEvent: Event<$RoadMapStepExpandedEventParameters>) => void;
21696
+ }
21697
+
21698
+ export interface $RoadMapStepExpandedEventParameters {
21699
+ /**
21700
+ * ID of the expanded/collapsed step
21701
+ */
21702
+ stepId?: string;
21703
+ }
21704
+
21705
+ export interface $RoadMapStepSelectedEventParameters {
21706
+ /**
21707
+ * ID of the selected step
21708
+ */
21709
+ stepId?: string;
21531
21710
  }
21532
21711
  }
21533
21712
 
@@ -21546,7 +21725,7 @@ declare module "sap/ui/commons/RoadMapStep" {
21546
21725
  *
21547
21726
  * Step used within a RoadMap Control.
21548
21727
  */
21549
- export default class RoadMapStep extends UI5Element {
21728
+ class RoadMapStep extends UI5Element {
21550
21729
  /**
21551
21730
  * Constructor for a new RoadMapStep.
21552
21731
  *
@@ -21811,6 +21990,7 @@ declare module "sap/ui/commons/RoadMapStep" {
21811
21990
  bVisible?: boolean
21812
21991
  ): this;
21813
21992
  }
21993
+ export default RoadMapStep;
21814
21994
 
21815
21995
  export interface $RoadMapStepSettings extends $ElementSettings {
21816
21996
  /**
@@ -21879,7 +22059,7 @@ declare module "sap/ui/commons/RowRepeater" {
21879
22059
  * This control displays items in a stacked list format, allowing the user to page in order to see more
21880
22060
  * items or to use the offered filtering and sorting capabilities in order to manipulate the displayed data.
21881
22061
  */
21882
- export default class RowRepeater extends Control {
22062
+ class RowRepeater extends Control {
21883
22063
  /**
21884
22064
  * Constructor for a new RowRepeater.
21885
22065
  *
@@ -22001,7 +22181,7 @@ declare module "sap/ui/commons/RowRepeater" {
22001
22181
  /**
22002
22182
  * The function to be called when the event occurs
22003
22183
  */
22004
- fnFunction: (p1: Event) => void,
22184
+ fnFunction: (p1: Event<$RowRepeaterFilterEventParameters>) => void,
22005
22185
  /**
22006
22186
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.RowRepeater` itself
22007
22187
  */
@@ -22021,7 +22201,7 @@ declare module "sap/ui/commons/RowRepeater" {
22021
22201
  /**
22022
22202
  * The function to be called when the event occurs
22023
22203
  */
22024
- fnFunction: (p1: Event) => void,
22204
+ fnFunction: (p1: Event<$RowRepeaterFilterEventParameters>) => void,
22025
22205
  /**
22026
22206
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.RowRepeater` itself
22027
22207
  */
@@ -22046,7 +22226,7 @@ declare module "sap/ui/commons/RowRepeater" {
22046
22226
  /**
22047
22227
  * The function to be called when the event occurs
22048
22228
  */
22049
- fnFunction: (p1: Event) => void,
22229
+ fnFunction: (p1: Event<$RowRepeaterPageEventParameters>) => void,
22050
22230
  /**
22051
22231
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.RowRepeater` itself
22052
22232
  */
@@ -22066,7 +22246,7 @@ declare module "sap/ui/commons/RowRepeater" {
22066
22246
  /**
22067
22247
  * The function to be called when the event occurs
22068
22248
  */
22069
- fnFunction: (p1: Event) => void,
22249
+ fnFunction: (p1: Event<$RowRepeaterPageEventParameters>) => void,
22070
22250
  /**
22071
22251
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.RowRepeater` itself
22072
22252
  */
@@ -22091,7 +22271,7 @@ declare module "sap/ui/commons/RowRepeater" {
22091
22271
  /**
22092
22272
  * The function to be called when the event occurs
22093
22273
  */
22094
- fnFunction: (p1: Event) => void,
22274
+ fnFunction: (p1: Event<$RowRepeaterResizeEventParameters>) => void,
22095
22275
  /**
22096
22276
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.RowRepeater` itself
22097
22277
  */
@@ -22111,7 +22291,7 @@ declare module "sap/ui/commons/RowRepeater" {
22111
22291
  /**
22112
22292
  * The function to be called when the event occurs
22113
22293
  */
22114
- fnFunction: (p1: Event) => void,
22294
+ fnFunction: (p1: Event<$RowRepeaterResizeEventParameters>) => void,
22115
22295
  /**
22116
22296
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.RowRepeater` itself
22117
22297
  */
@@ -22136,7 +22316,7 @@ declare module "sap/ui/commons/RowRepeater" {
22136
22316
  /**
22137
22317
  * The function to be called when the event occurs
22138
22318
  */
22139
- fnFunction: (p1: Event) => void,
22319
+ fnFunction: (p1: Event<$RowRepeaterSortEventParameters>) => void,
22140
22320
  /**
22141
22321
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.RowRepeater` itself
22142
22322
  */
@@ -22156,7 +22336,7 @@ declare module "sap/ui/commons/RowRepeater" {
22156
22336
  /**
22157
22337
  * The function to be called when the event occurs
22158
22338
  */
22159
- fnFunction: (p1: Event) => void,
22339
+ fnFunction: (p1: Event<$RowRepeaterSortEventParameters>) => void,
22160
22340
  /**
22161
22341
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.RowRepeater` itself
22162
22342
  */
@@ -22217,7 +22397,7 @@ declare module "sap/ui/commons/RowRepeater" {
22217
22397
  /**
22218
22398
  * The function to be called, when the event occurs
22219
22399
  */
22220
- fnFunction: (p1: Event) => void,
22400
+ fnFunction: (p1: Event<$RowRepeaterFilterEventParameters>) => void,
22221
22401
  /**
22222
22402
  * Context object on which the given function had to be called
22223
22403
  */
@@ -22234,7 +22414,7 @@ declare module "sap/ui/commons/RowRepeater" {
22234
22414
  /**
22235
22415
  * The function to be called, when the event occurs
22236
22416
  */
22237
- fnFunction: (p1: Event) => void,
22417
+ fnFunction: (p1: Event<$RowRepeaterPageEventParameters>) => void,
22238
22418
  /**
22239
22419
  * Context object on which the given function had to be called
22240
22420
  */
@@ -22251,7 +22431,7 @@ declare module "sap/ui/commons/RowRepeater" {
22251
22431
  /**
22252
22432
  * The function to be called, when the event occurs
22253
22433
  */
22254
- fnFunction: (p1: Event) => void,
22434
+ fnFunction: (p1: Event<$RowRepeaterResizeEventParameters>) => void,
22255
22435
  /**
22256
22436
  * Context object on which the given function had to be called
22257
22437
  */
@@ -22268,7 +22448,7 @@ declare module "sap/ui/commons/RowRepeater" {
22268
22448
  /**
22269
22449
  * The function to be called, when the event occurs
22270
22450
  */
22271
- fnFunction: (p1: Event) => void,
22451
+ fnFunction: (p1: Event<$RowRepeaterSortEventParameters>) => void,
22272
22452
  /**
22273
22453
  * Context object on which the given function had to be called
22274
22454
  */
@@ -22285,12 +22465,7 @@ declare module "sap/ui/commons/RowRepeater" {
22285
22465
  /**
22286
22466
  * Parameters to pass along with the event
22287
22467
  */
22288
- mParameters?: {
22289
- /**
22290
- * The ID of the filter that has just been applied.
22291
- */
22292
- filterId?: string;
22293
- }
22468
+ mParameters?: $RowRepeaterFilterEventParameters
22294
22469
  ): this;
22295
22470
  /**
22296
22471
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -22303,16 +22478,7 @@ declare module "sap/ui/commons/RowRepeater" {
22303
22478
  /**
22304
22479
  * Parameters to pass along with the event
22305
22480
  */
22306
- mParameters?: {
22307
- /**
22308
- * The value of the currentPage property after the change.
22309
- */
22310
- currentPage?: int;
22311
- /**
22312
- * The value of the currentPage property before the change.
22313
- */
22314
- previousPage?: int;
22315
- }
22481
+ mParameters?: $RowRepeaterPageEventParameters
22316
22482
  ): this;
22317
22483
  /**
22318
22484
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -22325,16 +22491,7 @@ declare module "sap/ui/commons/RowRepeater" {
22325
22491
  /**
22326
22492
  * Parameters to pass along with the event
22327
22493
  */
22328
- mParameters?: {
22329
- /**
22330
- * The value of the numberOfRows property after the change.
22331
- */
22332
- numberOfRows?: int;
22333
- /**
22334
- * The value of the numberOfRows property before the change.
22335
- */
22336
- previousNumberOfRows?: int;
22337
- }
22494
+ mParameters?: $RowRepeaterResizeEventParameters
22338
22495
  ): this;
22339
22496
  /**
22340
22497
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -22347,12 +22504,7 @@ declare module "sap/ui/commons/RowRepeater" {
22347
22504
  /**
22348
22505
  * Parameters to pass along with the event
22349
22506
  */
22350
- mParameters?: {
22351
- /**
22352
- * The ID of the sorter that has just been applied.
22353
- */
22354
- sorterId?: string;
22355
- }
22507
+ mParameters?: $RowRepeaterSortEventParameters
22356
22508
  ): this;
22357
22509
  /**
22358
22510
  * Switch to first page.
@@ -22755,6 +22907,7 @@ declare module "sap/ui/commons/RowRepeater" {
22755
22907
  */
22756
22908
  unbindRows(): this;
22757
22909
  }
22910
+ export default RowRepeater;
22758
22911
 
22759
22912
  export interface $RowRepeaterSettings extends $ControlSettings {
22760
22913
  /**
@@ -22828,22 +22981,60 @@ declare module "sap/ui/commons/RowRepeater" {
22828
22981
  /**
22829
22982
  * This event is triggered when a filter is set.
22830
22983
  */
22831
- filter?: (oEvent: Event) => void;
22984
+ filter?: (oEvent: Event<$RowRepeaterFilterEventParameters>) => void;
22832
22985
 
22833
22986
  /**
22834
22987
  * This event is triggered when a sorting is applied.
22835
22988
  */
22836
- sort?: (oEvent: Event) => void;
22989
+ sort?: (oEvent: Event<$RowRepeaterSortEventParameters>) => void;
22837
22990
 
22838
22991
  /**
22839
22992
  * This event is triggered when paging was executed.
22840
22993
  */
22841
- page?: (oEvent: Event) => void;
22994
+ page?: (oEvent: Event<$RowRepeaterPageEventParameters>) => void;
22842
22995
 
22843
22996
  /**
22844
22997
  * This event is triggered when the number of rows was changed.
22845
22998
  */
22846
- resize?: (oEvent: Event) => void;
22999
+ resize?: (oEvent: Event<$RowRepeaterResizeEventParameters>) => void;
23000
+ }
23001
+
23002
+ export interface $RowRepeaterFilterEventParameters {
23003
+ /**
23004
+ * The ID of the filter that has just been applied.
23005
+ */
23006
+ filterId?: string;
23007
+ }
23008
+
23009
+ export interface $RowRepeaterPageEventParameters {
23010
+ /**
23011
+ * The value of the currentPage property after the change.
23012
+ */
23013
+ currentPage?: int;
23014
+
23015
+ /**
23016
+ * The value of the currentPage property before the change.
23017
+ */
23018
+ previousPage?: int;
23019
+ }
23020
+
23021
+ export interface $RowRepeaterResizeEventParameters {
23022
+ /**
23023
+ * The value of the numberOfRows property after the change.
23024
+ */
23025
+ numberOfRows?: int;
23026
+
23027
+ /**
23028
+ * The value of the numberOfRows property before the change.
23029
+ */
23030
+ previousNumberOfRows?: int;
23031
+ }
23032
+
23033
+ export interface $RowRepeaterSortEventParameters {
23034
+ /**
23035
+ * The ID of the sorter that has just been applied.
23036
+ */
23037
+ sorterId?: string;
22847
23038
  }
22848
23039
  }
22849
23040
 
@@ -22860,7 +23051,7 @@ declare module "sap/ui/commons/RowRepeaterFilter" {
22860
23051
  * This element is used by the RowRepeater and allows to define a filter in this context along with the
22861
23052
  * related data such as a text and an icon.
22862
23053
  */
22863
- export default class RowRepeaterFilter extends UI5Element {
23054
+ class RowRepeaterFilter extends UI5Element {
22864
23055
  /**
22865
23056
  * Constructor for a new RowRepeaterFilter.
22866
23057
  *
@@ -22991,6 +23182,7 @@ declare module "sap/ui/commons/RowRepeaterFilter" {
22991
23182
  sText?: string
22992
23183
  ): this;
22993
23184
  }
23185
+ export default RowRepeaterFilter;
22994
23186
 
22995
23187
  export interface $RowRepeaterFilterSettings extends $ElementSettings {
22996
23188
  /**
@@ -23023,7 +23215,7 @@ declare module "sap/ui/commons/RowRepeaterSorter" {
23023
23215
  * This element is used by the RowRepeater and allows to define a sorter in this context along with the
23024
23216
  * related data such as a text and an icon.
23025
23217
  */
23026
- export default class RowRepeaterSorter extends UI5Element {
23218
+ class RowRepeaterSorter extends UI5Element {
23027
23219
  /**
23028
23220
  * Constructor for a new RowRepeaterSorter.
23029
23221
  *
@@ -23154,6 +23346,7 @@ declare module "sap/ui/commons/RowRepeaterSorter" {
23154
23346
  sText?: string
23155
23347
  ): this;
23156
23348
  }
23349
+ export default RowRepeaterSorter;
23157
23350
 
23158
23351
  export interface $RowRepeaterSorterSettings extends $ElementSettings {
23159
23352
  /**
@@ -23193,7 +23386,7 @@ declare module "sap/ui/commons/SearchField" {
23193
23386
  *
23194
23387
  * Allows the user to type search queries and to trigger the search. Optionally, suggestions can be added.
23195
23388
  */
23196
- export default class SearchField extends Control implements ToolbarItem {
23389
+ class SearchField extends Control implements ToolbarItem {
23197
23390
  __implements__sap_ui_commons_ToolbarItem: boolean;
23198
23391
  /**
23199
23392
  * Constructor for a new SearchField.
@@ -23296,7 +23489,7 @@ declare module "sap/ui/commons/SearchField" {
23296
23489
  /**
23297
23490
  * The function to be called when the event occurs
23298
23491
  */
23299
- fnFunction: (p1: Event) => void,
23492
+ fnFunction: (p1: Event<$SearchFieldSearchEventParameters>) => void,
23300
23493
  /**
23301
23494
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.SearchField` itself
23302
23495
  */
@@ -23316,7 +23509,7 @@ declare module "sap/ui/commons/SearchField" {
23316
23509
  /**
23317
23510
  * The function to be called when the event occurs
23318
23511
  */
23319
- fnFunction: (p1: Event) => void,
23512
+ fnFunction: (p1: Event<$SearchFieldSearchEventParameters>) => void,
23320
23513
  /**
23321
23514
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.SearchField` itself
23322
23515
  */
@@ -23341,7 +23534,7 @@ declare module "sap/ui/commons/SearchField" {
23341
23534
  /**
23342
23535
  * The function to be called when the event occurs
23343
23536
  */
23344
- fnFunction: (p1: Event) => void,
23537
+ fnFunction: (p1: Event<$SearchFieldSuggestEventParameters>) => void,
23345
23538
  /**
23346
23539
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.SearchField` itself
23347
23540
  */
@@ -23361,7 +23554,7 @@ declare module "sap/ui/commons/SearchField" {
23361
23554
  /**
23362
23555
  * The function to be called when the event occurs
23363
23556
  */
23364
- fnFunction: (p1: Event) => void,
23557
+ fnFunction: (p1: Event<$SearchFieldSuggestEventParameters>) => void,
23365
23558
  /**
23366
23559
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.SearchField` itself
23367
23560
  */
@@ -23388,7 +23581,7 @@ declare module "sap/ui/commons/SearchField" {
23388
23581
  /**
23389
23582
  * The function to be called, when the event occurs
23390
23583
  */
23391
- fnFunction: (p1: Event) => void,
23584
+ fnFunction: (p1: Event<$SearchFieldSearchEventParameters>) => void,
23392
23585
  /**
23393
23586
  * Context object on which the given function had to be called
23394
23587
  */
@@ -23405,7 +23598,7 @@ declare module "sap/ui/commons/SearchField" {
23405
23598
  /**
23406
23599
  * The function to be called, when the event occurs
23407
23600
  */
23408
- fnFunction: (p1: Event) => void,
23601
+ fnFunction: (p1: Event<$SearchFieldSuggestEventParameters>) => void,
23409
23602
  /**
23410
23603
  * Context object on which the given function had to be called
23411
23604
  */
@@ -23422,12 +23615,7 @@ declare module "sap/ui/commons/SearchField" {
23422
23615
  /**
23423
23616
  * Parameters to pass along with the event
23424
23617
  */
23425
- mParameters?: {
23426
- /**
23427
- * The search query
23428
- */
23429
- query?: string;
23430
- }
23618
+ mParameters?: $SearchFieldSearchEventParameters
23431
23619
  ): this;
23432
23620
  /**
23433
23621
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -23440,21 +23628,14 @@ declare module "sap/ui/commons/SearchField" {
23440
23628
  /**
23441
23629
  * Parameters to pass along with the event
23442
23630
  */
23443
- mParameters?: {
23444
- /**
23445
- * The value for which suggestions are required.
23446
- */
23447
- value?: string;
23448
- }
23631
+ mParameters?: $SearchFieldSuggestEventParameters
23449
23632
  ): this;
23450
23633
  /**
23451
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
23452
- * ariaDescribedBy}.
23634
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
23453
23635
  */
23454
23636
  getAriaDescribedBy(): ID[];
23455
23637
  /**
23456
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
23457
- * ariaLabelledBy}.
23638
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
23458
23639
  */
23459
23640
  getAriaLabelledBy(): ID[];
23460
23641
  /**
@@ -24027,6 +24208,7 @@ declare module "sap/ui/commons/SearchField" {
24027
24208
  aASuggestions: string[]
24028
24209
  ): void;
24029
24210
  }
24211
+ export default SearchField;
24030
24212
 
24031
24213
  export interface $SearchFieldSettings extends $ControlSettings {
24032
24214
  /**
@@ -24154,12 +24336,26 @@ declare module "sap/ui/commons/SearchField" {
24154
24336
  /**
24155
24337
  * Event which is fired when the user triggers a search
24156
24338
  */
24157
- search?: (oEvent: Event) => void;
24339
+ search?: (oEvent: Event<$SearchFieldSearchEventParameters>) => void;
24158
24340
 
24159
24341
  /**
24160
24342
  * Event which is fired when new suggest values are required.
24161
24343
  */
24162
- suggest?: (oEvent: Event) => void;
24344
+ suggest?: (oEvent: Event<$SearchFieldSuggestEventParameters>) => void;
24345
+ }
24346
+
24347
+ export interface $SearchFieldSearchEventParameters {
24348
+ /**
24349
+ * The search query
24350
+ */
24351
+ query?: string;
24352
+ }
24353
+
24354
+ export interface $SearchFieldSuggestEventParameters {
24355
+ /**
24356
+ * The value for which suggestions are required.
24357
+ */
24358
+ value?: string;
24163
24359
  }
24164
24360
  }
24165
24361
 
@@ -24176,7 +24372,7 @@ declare module "sap/ui/commons/SearchProvider" {
24176
24372
  *
24177
24373
  * A SearchProvider which can be attached to a Search Field.
24178
24374
  */
24179
- export default class SearchProvider extends OpenSearchProvider {
24375
+ class SearchProvider extends OpenSearchProvider {
24180
24376
  /**
24181
24377
  * Constructor for a new SearchProvider.
24182
24378
  *
@@ -24184,8 +24380,8 @@ declare module "sap/ui/commons/SearchProvider" {
24184
24380
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
24185
24381
  * of the syntax of the settings object.
24186
24382
  *
24187
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.search.OpenSearchProvider#constructor
24188
- * sap.ui.core.search.OpenSearchProvider} can be used.
24383
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.search.OpenSearchProvider#constructor sap.ui.core.search.OpenSearchProvider }
24384
+ * can be used.
24189
24385
  */
24190
24386
  constructor(
24191
24387
  /**
@@ -24200,8 +24396,8 @@ declare module "sap/ui/commons/SearchProvider" {
24200
24396
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
24201
24397
  * of the syntax of the settings object.
24202
24398
  *
24203
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.search.OpenSearchProvider#constructor
24204
- * sap.ui.core.search.OpenSearchProvider} can be used.
24399
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.search.OpenSearchProvider#constructor sap.ui.core.search.OpenSearchProvider }
24400
+ * can be used.
24205
24401
  */
24206
24402
  constructor(
24207
24403
  /**
@@ -24244,6 +24440,7 @@ declare module "sap/ui/commons/SearchProvider" {
24244
24440
  */
24245
24441
  static getMetadata(): ElementMetadata;
24246
24442
  }
24443
+ export default SearchProvider;
24247
24444
 
24248
24445
  export interface $SearchProviderSettings
24249
24446
  extends $OpenSearchProviderSettings {}
@@ -24273,9 +24470,7 @@ declare module "sap/ui/commons/SegmentedButton" {
24273
24470
  * The SegmentedButton provides a group of multiple buttons. Only one button can be active. The behaviour
24274
24471
  * is more ore less like a radio button group.
24275
24472
  */
24276
- export default class SegmentedButton
24277
- extends Control
24278
- implements ToolbarItem, IFormContent {
24473
+ class SegmentedButton extends Control implements ToolbarItem, IFormContent {
24279
24474
  __implements__sap_ui_commons_ToolbarItem: boolean;
24280
24475
  __implements__sap_ui_core_IFormContent: boolean;
24281
24476
  /**
@@ -24374,7 +24569,7 @@ declare module "sap/ui/commons/SegmentedButton" {
24374
24569
  /**
24375
24570
  * The function to be called when the event occurs
24376
24571
  */
24377
- fnFunction: (p1: Event) => void,
24572
+ fnFunction: (p1: Event<$SegmentedButtonSelectEventParameters>) => void,
24378
24573
  /**
24379
24574
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.SegmentedButton` itself
24380
24575
  */
@@ -24394,7 +24589,7 @@ declare module "sap/ui/commons/SegmentedButton" {
24394
24589
  /**
24395
24590
  * The function to be called when the event occurs
24396
24591
  */
24397
- fnFunction: (p1: Event) => void,
24592
+ fnFunction: (p1: Event<$SegmentedButtonSelectEventParameters>) => void,
24398
24593
  /**
24399
24594
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.SegmentedButton` itself
24400
24595
  */
@@ -24417,7 +24612,7 @@ declare module "sap/ui/commons/SegmentedButton" {
24417
24612
  /**
24418
24613
  * The function to be called, when the event occurs
24419
24614
  */
24420
- fnFunction: (p1: Event) => void,
24615
+ fnFunction: (p1: Event<$SegmentedButtonSelectEventParameters>) => void,
24421
24616
  /**
24422
24617
  * Context object on which the given function had to be called
24423
24618
  */
@@ -24434,12 +24629,7 @@ declare module "sap/ui/commons/SegmentedButton" {
24434
24629
  /**
24435
24630
  * Parameters to pass along with the event
24436
24631
  */
24437
- mParameters?: {
24438
- /**
24439
- * Id of selected ToggleButton
24440
- */
24441
- selectedButtonId?: string;
24442
- }
24632
+ mParameters?: $SegmentedButtonSelectEventParameters
24443
24633
  ): this;
24444
24634
  /**
24445
24635
  * Gets content of aggregation {@link #getButtons buttons}.
@@ -24540,6 +24730,7 @@ declare module "sap/ui/commons/SegmentedButton" {
24540
24730
  oSelectedButton: ID | Button
24541
24731
  ): this;
24542
24732
  }
24733
+ export default SegmentedButton;
24543
24734
 
24544
24735
  export interface $SegmentedButtonSettings extends $ControlSettings {
24545
24736
  /**
@@ -24560,7 +24751,14 @@ declare module "sap/ui/commons/SegmentedButton" {
24560
24751
  /**
24561
24752
  * Event fired when button selected
24562
24753
  */
24563
- select?: (oEvent: Event) => void;
24754
+ select?: (oEvent: Event<$SegmentedButtonSelectEventParameters>) => void;
24755
+ }
24756
+
24757
+ export interface $SegmentedButtonSelectEventParameters {
24758
+ /**
24759
+ * Id of selected ToggleButton
24760
+ */
24761
+ selectedButtonId?: string;
24564
24762
  }
24565
24763
  }
24566
24764
 
@@ -24581,7 +24779,7 @@ declare module "sap/ui/commons/Slider" {
24581
24779
  * The interactive control is displayed either as a horizontal or a vertical line with a pointer and units
24582
24780
  * of measurement. Users can move the pointer along the line to change values with graphical support.
24583
24781
  */
24584
- export default class Slider extends Control implements IFormContent {
24782
+ class Slider extends Control implements IFormContent {
24585
24783
  __implements__sap_ui_core_IFormContent: boolean;
24586
24784
  /**
24587
24785
  * Constructor for a new `Slider`.
@@ -24684,7 +24882,7 @@ declare module "sap/ui/commons/Slider" {
24684
24882
  /**
24685
24883
  * The function to be called when the event occurs
24686
24884
  */
24687
- fnFunction: (p1: Event) => void,
24885
+ fnFunction: (p1: Event<$SliderChangeEventParameters>) => void,
24688
24886
  /**
24689
24887
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.Slider` itself
24690
24888
  */
@@ -24704,7 +24902,7 @@ declare module "sap/ui/commons/Slider" {
24704
24902
  /**
24705
24903
  * The function to be called when the event occurs
24706
24904
  */
24707
- fnFunction: (p1: Event) => void,
24905
+ fnFunction: (p1: Event<$SliderChangeEventParameters>) => void,
24708
24906
  /**
24709
24907
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.Slider` itself
24710
24908
  */
@@ -24730,7 +24928,7 @@ declare module "sap/ui/commons/Slider" {
24730
24928
  /**
24731
24929
  * The function to be called when the event occurs
24732
24930
  */
24733
- fnFunction: (p1: Event) => void,
24931
+ fnFunction: (p1: Event<$SliderLiveChangeEventParameters>) => void,
24734
24932
  /**
24735
24933
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.Slider` itself
24736
24934
  */
@@ -24751,7 +24949,7 @@ declare module "sap/ui/commons/Slider" {
24751
24949
  /**
24752
24950
  * The function to be called when the event occurs
24753
24951
  */
24754
- fnFunction: (p1: Event) => void,
24952
+ fnFunction: (p1: Event<$SliderLiveChangeEventParameters>) => void,
24755
24953
  /**
24756
24954
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.Slider` itself
24757
24955
  */
@@ -24768,7 +24966,7 @@ declare module "sap/ui/commons/Slider" {
24768
24966
  /**
24769
24967
  * The function to be called, when the event occurs
24770
24968
  */
24771
- fnFunction: (p1: Event) => void,
24969
+ fnFunction: (p1: Event<$SliderChangeEventParameters>) => void,
24772
24970
  /**
24773
24971
  * Context object on which the given function had to be called
24774
24972
  */
@@ -24785,7 +24983,7 @@ declare module "sap/ui/commons/Slider" {
24785
24983
  /**
24786
24984
  * The function to be called, when the event occurs
24787
24985
  */
24788
- fnFunction: (p1: Event) => void,
24986
+ fnFunction: (p1: Event<$SliderLiveChangeEventParameters>) => void,
24789
24987
  /**
24790
24988
  * Context object on which the given function had to be called
24791
24989
  */
@@ -24802,12 +25000,7 @@ declare module "sap/ui/commons/Slider" {
24802
25000
  /**
24803
25001
  * Parameters to pass along with the event
24804
25002
  */
24805
- mParameters?: {
24806
- /**
24807
- * Current value of the slider after a change.
24808
- */
24809
- value?: float;
24810
- }
25003
+ mParameters?: $SliderChangeEventParameters
24811
25004
  ): this;
24812
25005
  /**
24813
25006
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -24820,21 +25013,14 @@ declare module "sap/ui/commons/Slider" {
24820
25013
  /**
24821
25014
  * Parameters to pass along with the event
24822
25015
  */
24823
- mParameters?: {
24824
- /**
24825
- * Current value of the slider after a change.
24826
- */
24827
- value?: float;
24828
- }
25016
+ mParameters?: $SliderLiveChangeEventParameters
24829
25017
  ): this;
24830
25018
  /**
24831
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
24832
- * ariaDescribedBy}.
25019
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
24833
25020
  */
24834
25021
  getAriaDescribedBy(): ID[];
24835
25022
  /**
24836
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
24837
- * ariaLabelledBy}.
25023
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
24838
25024
  */
24839
25025
  getAriaLabelledBy(): ID[];
24840
25026
  /**
@@ -25212,6 +25398,7 @@ declare module "sap/ui/commons/Slider" {
25212
25398
  sWidth?: CSSSize
25213
25399
  ): this;
25214
25400
  }
25401
+ export default Slider;
25215
25402
 
25216
25403
  export interface $SliderSettings extends $ControlSettings {
25217
25404
  /**
@@ -25301,13 +25488,27 @@ declare module "sap/ui/commons/Slider" {
25301
25488
  /**
25302
25489
  * Value was changed. This event is fired if the value has changed by a user action.
25303
25490
  */
25304
- change?: (oEvent: Event) => void;
25491
+ change?: (oEvent: Event<$SliderChangeEventParameters>) => void;
25305
25492
 
25306
25493
  /**
25307
25494
  * Value was changed. This event is fired during the mouse move. The normal change event is only fired by
25308
25495
  * mouseup.
25309
25496
  */
25310
- liveChange?: (oEvent: Event) => void;
25497
+ liveChange?: (oEvent: Event<$SliderLiveChangeEventParameters>) => void;
25498
+ }
25499
+
25500
+ export interface $SliderChangeEventParameters {
25501
+ /**
25502
+ * Current value of the slider after a change.
25503
+ */
25504
+ value?: float;
25505
+ }
25506
+
25507
+ export interface $SliderLiveChangeEventParameters {
25508
+ /**
25509
+ * Current value of the slider after a change.
25510
+ */
25511
+ value?: float;
25311
25512
  }
25312
25513
  }
25313
25514
 
@@ -25332,7 +25533,7 @@ declare module "sap/ui/commons/Splitter" {
25332
25533
  * height or set an absolute height for the splitter using the height property. Otherwise the height of
25333
25534
  * the splitter is calculated by the height of its contents.
25334
25535
  */
25335
- export default class Splitter extends Control {
25536
+ class Splitter extends Control {
25336
25537
  /**
25337
25538
  * Constructor for a new Splitter.
25338
25539
  *
@@ -25758,6 +25959,7 @@ declare module "sap/ui/commons/Splitter" {
25758
25959
  sWidth?: SplitterSize
25759
25960
  ): this;
25760
25961
  }
25962
+ export default Splitter;
25761
25963
 
25762
25964
  export interface $SplitterSettings extends $ControlSettings {
25763
25965
  /**
@@ -25841,7 +26043,7 @@ declare module "sap/ui/commons/Tab" {
25841
26043
  *
25842
26044
  * Represents a single tab in a TabStrip control.
25843
26045
  */
25844
- export default class Tab extends Panel {
26046
+ class Tab extends Panel {
25845
26047
  /**
25846
26048
  * Constructor for a new Tab.
25847
26049
  *
@@ -26017,6 +26219,7 @@ declare module "sap/ui/commons/Tab" {
26017
26219
  sVerticalScrolling?: Scrolling | keyof typeof Scrolling
26018
26220
  ): this;
26019
26221
  }
26222
+ export default Tab;
26020
26223
 
26021
26224
  export interface $TabSettings extends $PanelSettings {
26022
26225
  /**
@@ -26072,7 +26275,7 @@ declare module "sap/ui/commons/TabStrip" {
26072
26275
  * TabStrip represents a container for tab controls, which contain the content and generally other controls.
26073
26276
  * The user switches between the tabs to display the content.
26074
26277
  */
26075
- export default class TabStrip extends Control {
26278
+ class TabStrip extends Control {
26076
26279
  /**
26077
26280
  * Constructor for a new TabStrip.
26078
26281
  *
@@ -26163,7 +26366,7 @@ declare module "sap/ui/commons/TabStrip" {
26163
26366
  /**
26164
26367
  * The function to be called when the event occurs
26165
26368
  */
26166
- fnFunction: (p1: Event) => void,
26369
+ fnFunction: (p1: Event<$TabStripCloseEventParameters>) => void,
26167
26370
  /**
26168
26371
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.TabStrip` itself
26169
26372
  */
@@ -26183,7 +26386,7 @@ declare module "sap/ui/commons/TabStrip" {
26183
26386
  /**
26184
26387
  * The function to be called when the event occurs
26185
26388
  */
26186
- fnFunction: (p1: Event) => void,
26389
+ fnFunction: (p1: Event<$TabStripCloseEventParameters>) => void,
26187
26390
  /**
26188
26391
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.TabStrip` itself
26189
26392
  */
@@ -26208,7 +26411,7 @@ declare module "sap/ui/commons/TabStrip" {
26208
26411
  /**
26209
26412
  * The function to be called when the event occurs
26210
26413
  */
26211
- fnFunction: (p1: Event) => void,
26414
+ fnFunction: (p1: Event<$TabStripSelectEventParameters>) => void,
26212
26415
  /**
26213
26416
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.TabStrip` itself
26214
26417
  */
@@ -26228,7 +26431,7 @@ declare module "sap/ui/commons/TabStrip" {
26228
26431
  /**
26229
26432
  * The function to be called when the event occurs
26230
26433
  */
26231
- fnFunction: (p1: Event) => void,
26434
+ fnFunction: (p1: Event<$TabStripSelectEventParameters>) => void,
26232
26435
  /**
26233
26436
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.TabStrip` itself
26234
26437
  */
@@ -26279,7 +26482,7 @@ declare module "sap/ui/commons/TabStrip" {
26279
26482
  /**
26280
26483
  * The function to be called, when the event occurs
26281
26484
  */
26282
- fnFunction: (p1: Event) => void,
26485
+ fnFunction: (p1: Event<$TabStripCloseEventParameters>) => void,
26283
26486
  /**
26284
26487
  * Context object on which the given function had to be called
26285
26488
  */
@@ -26296,7 +26499,7 @@ declare module "sap/ui/commons/TabStrip" {
26296
26499
  /**
26297
26500
  * The function to be called, when the event occurs
26298
26501
  */
26299
- fnFunction: (p1: Event) => void,
26502
+ fnFunction: (p1: Event<$TabStripSelectEventParameters>) => void,
26300
26503
  /**
26301
26504
  * Context object on which the given function had to be called
26302
26505
  */
@@ -26313,12 +26516,7 @@ declare module "sap/ui/commons/TabStrip" {
26313
26516
  /**
26314
26517
  * Parameters to pass along with the event
26315
26518
  */
26316
- mParameters?: {
26317
- /**
26318
- * The index of the closed tab.
26319
- */
26320
- index?: int;
26321
- }
26519
+ mParameters?: $TabStripCloseEventParameters
26322
26520
  ): this;
26323
26521
  /**
26324
26522
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -26331,12 +26529,7 @@ declare module "sap/ui/commons/TabStrip" {
26331
26529
  /**
26332
26530
  * Parameters to pass along with the event
26333
26531
  */
26334
- mParameters?: {
26335
- /**
26336
- * The index of the selected tab.
26337
- */
26338
- index?: int;
26339
- }
26532
+ mParameters?: $TabStripSelectEventParameters
26340
26533
  ): this;
26341
26534
  /**
26342
26535
  * Gets current value of property {@link #getEnableTabReordering enableTabReordering}.
@@ -26491,6 +26684,7 @@ declare module "sap/ui/commons/TabStrip" {
26491
26684
  sWidth?: CSSSize
26492
26685
  ): this;
26493
26686
  }
26687
+ export default TabStrip;
26494
26688
 
26495
26689
  export interface $TabStripSettings extends $ControlSettings {
26496
26690
  /**
@@ -26521,12 +26715,26 @@ declare module "sap/ui/commons/TabStrip" {
26521
26715
  /**
26522
26716
  * Fires when the user selects a tab.
26523
26717
  */
26524
- select?: (oEvent: Event) => void;
26718
+ select?: (oEvent: Event<$TabStripSelectEventParameters>) => void;
26525
26719
 
26526
26720
  /**
26527
26721
  * Fires when the user closes a tab.
26528
26722
  */
26529
- close?: (oEvent: Event) => void;
26723
+ close?: (oEvent: Event<$TabStripCloseEventParameters>) => void;
26724
+ }
26725
+
26726
+ export interface $TabStripCloseEventParameters {
26727
+ /**
26728
+ * The index of the closed tab.
26729
+ */
26730
+ index?: int;
26731
+ }
26732
+
26733
+ export interface $TabStripSelectEventParameters {
26734
+ /**
26735
+ * The index of the selected tab.
26736
+ */
26737
+ index?: int;
26530
26738
  }
26531
26739
  }
26532
26740
 
@@ -26547,7 +26755,7 @@ declare module "sap/ui/commons/TextArea" {
26547
26755
  *
26548
26756
  * Control to enter or display multible row text.
26549
26757
  */
26550
- export default class TextArea extends TextField {
26758
+ class TextArea extends TextField {
26551
26759
  /**
26552
26760
  * Constructor for a new TextArea.
26553
26761
  *
@@ -26783,6 +26991,7 @@ declare module "sap/ui/commons/TextArea" {
26783
26991
  sWrapping?: Wrapping | keyof typeof Wrapping
26784
26992
  ): this;
26785
26993
  }
26994
+ export default TextArea;
26786
26995
 
26787
26996
  export interface $TextAreaSettings extends $TextFieldSettings {
26788
26997
  /**
@@ -26856,9 +27065,7 @@ declare module "sap/ui/commons/TextView" {
26856
27065
  *
26857
27066
  * Is used to display some continous text. The control can inherit the text direction from its parent control.
26858
27067
  */
26859
- export default class TextView
26860
- extends Control
26861
- implements ToolbarItem, IFormContent {
27068
+ class TextView extends Control implements ToolbarItem, IFormContent {
26862
27069
  __implements__sap_ui_commons_ToolbarItem: boolean;
26863
27070
  __implements__sap_ui_core_IFormContent: boolean;
26864
27071
  /**
@@ -26975,13 +27182,11 @@ declare module "sap/ui/commons/TextView" {
26975
27182
  */
26976
27183
  getAccessibleRole(): AccessibleRole | keyof typeof AccessibleRole;
26977
27184
  /**
26978
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
26979
- * ariaDescribedBy}.
27185
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
26980
27186
  */
26981
27187
  getAriaDescribedBy(): ID[];
26982
27188
  /**
26983
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
26984
- * ariaLabelledBy}.
27189
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
26985
27190
  */
26986
27191
  getAriaLabelledBy(): ID[];
26987
27192
  /**
@@ -27283,6 +27488,7 @@ declare module "sap/ui/commons/TextView" {
27283
27488
  */
27284
27489
  unbindText(): this;
27285
27490
  }
27491
+ export default TextView;
27286
27492
 
27287
27493
  export interface $TextViewSettings extends $ControlSettings {
27288
27494
  /**
@@ -27379,7 +27585,7 @@ declare module "sap/ui/commons/Title" {
27379
27585
  *
27380
27586
  * Represents a title element that can be used for aggregation with other controls
27381
27587
  */
27382
- export default class Title extends Title1 {
27588
+ class Title extends Title1 {
27383
27589
  /**
27384
27590
  * Constructor for a new Title.
27385
27591
  *
@@ -27387,8 +27593,8 @@ declare module "sap/ui/commons/Title" {
27387
27593
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
27388
27594
  * of the syntax of the settings object.
27389
27595
  *
27390
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.Title#constructor
27391
- * sap.ui.core.Title} can be used.
27596
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.Title#constructor sap.ui.core.Title }
27597
+ * can be used.
27392
27598
  */
27393
27599
  constructor(
27394
27600
  /**
@@ -27403,8 +27609,8 @@ declare module "sap/ui/commons/Title" {
27403
27609
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
27404
27610
  * of the syntax of the settings object.
27405
27611
  *
27406
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.Title#constructor
27407
- * sap.ui.core.Title} can be used.
27612
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.Title#constructor sap.ui.core.Title }
27613
+ * can be used.
27408
27614
  */
27409
27615
  constructor(
27410
27616
  /**
@@ -27475,6 +27681,7 @@ declare module "sap/ui/commons/Title" {
27475
27681
  oLevel: TitleLevel | keyof typeof TitleLevel
27476
27682
  ): this;
27477
27683
  }
27684
+ export default Title;
27478
27685
 
27479
27686
  export interface $TitleSettings extends $TitleSettings1 {}
27480
27687
  }
@@ -27493,7 +27700,7 @@ declare module "sap/ui/commons/ToggleButton" {
27493
27700
  *
27494
27701
  * The ToggleButton Control is a Button that can be toggled between pressed and normal state
27495
27702
  */
27496
- export default class ToggleButton extends Button {
27703
+ class ToggleButton extends Button {
27497
27704
  /**
27498
27705
  * Constructor for a new ToggleButton.
27499
27706
  *
@@ -27591,6 +27798,7 @@ declare module "sap/ui/commons/ToggleButton" {
27591
27798
  bPressed?: boolean
27592
27799
  ): this;
27593
27800
  }
27801
+ export default ToggleButton;
27594
27802
 
27595
27803
  export interface $ToggleButtonSettings extends $ButtonSettings {
27596
27804
  /**
@@ -27621,7 +27829,7 @@ declare module "sap/ui/commons/Toolbar" {
27621
27829
  * Note that all controls with the sap.ui.commons.ToolbarItem interface can be used as item: Button, ComboBox,
27622
27830
  * TextField.
27623
27831
  */
27624
- export default class Toolbar extends Control implements Toolbar1 {
27832
+ class Toolbar extends Control implements Toolbar1 {
27625
27833
  __implements__sap_ui_core_Toolbar: boolean;
27626
27834
  /**
27627
27835
  * Constructor for a new Toolbar.
@@ -27911,6 +28119,7 @@ declare module "sap/ui/commons/Toolbar" {
27911
28119
  sWidth?: CSSSize
27912
28120
  ): this;
27913
28121
  }
28122
+ export default Toolbar;
27914
28123
 
27915
28124
  export interface $ToolbarSettings extends $ControlSettings {
27916
28125
  /**
@@ -27968,9 +28177,7 @@ declare module "sap/ui/commons/ToolbarSeparator" {
27968
28177
  * A small vertical line that is generally added to the tool bar between the items to visually separate
27969
28178
  * them.
27970
28179
  */
27971
- export default class ToolbarSeparator
27972
- extends UI5Element
27973
- implements ToolbarItem {
28180
+ class ToolbarSeparator extends UI5Element implements ToolbarItem {
27974
28181
  __implements__sap_ui_commons_ToolbarItem: boolean;
27975
28182
  /**
27976
28183
  * Constructor for a new ToolbarSeparator.
@@ -28083,6 +28290,7 @@ declare module "sap/ui/commons/ToolbarSeparator" {
28083
28290
  bDisplayVisualSeparator?: boolean
28084
28291
  ): this;
28085
28292
  }
28293
+ export default ToolbarSeparator;
28086
28294
 
28087
28295
  export interface $ToolbarSeparatorSettings extends $ElementSettings {
28088
28296
  /**
@@ -28125,7 +28333,7 @@ declare module "sap/ui/commons/Tree" {
28125
28333
  *
28126
28334
  * Simple tree to display item in a hierarchical way
28127
28335
  */
28128
- export default class Tree extends Control {
28336
+ class Tree extends Control {
28129
28337
  /**
28130
28338
  * Constructor for a new Tree.
28131
28339
  *
@@ -28216,7 +28424,7 @@ declare module "sap/ui/commons/Tree" {
28216
28424
  /**
28217
28425
  * The function to be called when the event occurs
28218
28426
  */
28219
- fnFunction: (p1: Event) => void,
28427
+ fnFunction: (p1: Event<$TreeSelectEventParameters>) => void,
28220
28428
  /**
28221
28429
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.Tree` itself
28222
28430
  */
@@ -28236,7 +28444,7 @@ declare module "sap/ui/commons/Tree" {
28236
28444
  /**
28237
28445
  * The function to be called when the event occurs
28238
28446
  */
28239
- fnFunction: (p1: Event) => void,
28447
+ fnFunction: (p1: Event<$TreeSelectEventParameters>) => void,
28240
28448
  /**
28241
28449
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.Tree` itself
28242
28450
  */
@@ -28262,7 +28470,7 @@ declare module "sap/ui/commons/Tree" {
28262
28470
  /**
28263
28471
  * The function to be called when the event occurs
28264
28472
  */
28265
- fnFunction: (p1: Event) => void,
28473
+ fnFunction: (p1: Event<$TreeSelectionChangeEventParameters>) => void,
28266
28474
  /**
28267
28475
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.Tree` itself
28268
28476
  */
@@ -28283,7 +28491,7 @@ declare module "sap/ui/commons/Tree" {
28283
28491
  /**
28284
28492
  * The function to be called when the event occurs
28285
28493
  */
28286
- fnFunction: (p1: Event) => void,
28494
+ fnFunction: (p1: Event<$TreeSelectionChangeEventParameters>) => void,
28287
28495
  /**
28288
28496
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.Tree` itself
28289
28497
  */
@@ -28324,7 +28532,7 @@ declare module "sap/ui/commons/Tree" {
28324
28532
  /**
28325
28533
  * The function to be called, when the event occurs
28326
28534
  */
28327
- fnFunction: (p1: Event) => void,
28535
+ fnFunction: (p1: Event<$TreeSelectEventParameters>) => void,
28328
28536
  /**
28329
28537
  * Context object on which the given function had to be called
28330
28538
  */
@@ -28342,7 +28550,7 @@ declare module "sap/ui/commons/Tree" {
28342
28550
  /**
28343
28551
  * The function to be called, when the event occurs
28344
28552
  */
28345
- fnFunction: (p1: Event) => void,
28553
+ fnFunction: (p1: Event<$TreeSelectionChangeEventParameters>) => void,
28346
28554
  /**
28347
28555
  * Context object on which the given function had to be called
28348
28556
  */
@@ -28366,16 +28574,7 @@ declare module "sap/ui/commons/Tree" {
28366
28574
  /**
28367
28575
  * Parameters to pass along with the event
28368
28576
  */
28369
- mParameters?: {
28370
- /**
28371
- * The node which has been selected.
28372
- */
28373
- node?: TreeNode;
28374
- /**
28375
- * The binding context of the selected node.
28376
- */
28377
- nodeContext?: object;
28378
- }
28577
+ mParameters?: $TreeSelectEventParameters
28379
28578
  ): boolean;
28380
28579
  /**
28381
28580
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -28388,16 +28587,7 @@ declare module "sap/ui/commons/Tree" {
28388
28587
  /**
28389
28588
  * Parameters to pass along with the event
28390
28589
  */
28391
- mParameters?: {
28392
- /**
28393
- * The nodes which has been selected.
28394
- */
28395
- nodes?: TreeNode[];
28396
- /**
28397
- * The binding context of the selected nodes.
28398
- */
28399
- nodeContexts?: object[];
28400
- }
28590
+ mParameters?: $TreeSelectionChangeEventParameters
28401
28591
  ): this;
28402
28592
  /**
28403
28593
  * Gets current value of property {@link #getHeight height}.
@@ -28683,6 +28873,7 @@ declare module "sap/ui/commons/Tree" {
28683
28873
  */
28684
28874
  unbindNodes(): this;
28685
28875
  }
28876
+ export default Tree;
28686
28877
 
28687
28878
  export interface $TreeSettings extends $ControlSettings {
28688
28879
  /**
@@ -28737,12 +28928,38 @@ declare module "sap/ui/commons/Tree" {
28737
28928
  /**
28738
28929
  * Event is fired when a tree node is selected.
28739
28930
  */
28740
- select?: (oEvent: Event) => void;
28931
+ select?: (oEvent: Event<$TreeSelectEventParameters>) => void;
28741
28932
 
28742
28933
  /**
28743
28934
  * fired when the selection of the tree has been changed
28744
28935
  */
28745
- selectionChange?: (oEvent: Event) => void;
28936
+ selectionChange?: (
28937
+ oEvent: Event<$TreeSelectionChangeEventParameters>
28938
+ ) => void;
28939
+ }
28940
+
28941
+ export interface $TreeSelectEventParameters {
28942
+ /**
28943
+ * The node which has been selected.
28944
+ */
28945
+ node?: TreeNode;
28946
+
28947
+ /**
28948
+ * The binding context of the selected node.
28949
+ */
28950
+ nodeContext?: object;
28951
+ }
28952
+
28953
+ export interface $TreeSelectionChangeEventParameters {
28954
+ /**
28955
+ * The nodes which has been selected.
28956
+ */
28957
+ nodes?: TreeNode[];
28958
+
28959
+ /**
28960
+ * The binding context of the selected nodes.
28961
+ */
28962
+ nodeContexts?: object[];
28746
28963
  }
28747
28964
  }
28748
28965
 
@@ -28767,7 +28984,7 @@ declare module "sap/ui/commons/TreeNode" {
28767
28984
  *
28768
28985
  * Tree node element
28769
28986
  */
28770
- export default class TreeNode extends UI5Element {
28987
+ class TreeNode extends UI5Element {
28771
28988
  /**
28772
28989
  * Constructor for a new TreeNode.
28773
28990
  *
@@ -28926,7 +29143,7 @@ declare module "sap/ui/commons/TreeNode" {
28926
29143
  /**
28927
29144
  * The function to be called when the event occurs
28928
29145
  */
28929
- fnFunction: (p1: Event) => void,
29146
+ fnFunction: (p1: Event<$TreeNodeToggleOpenStateEventParameters>) => void,
28930
29147
  /**
28931
29148
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.TreeNode` itself
28932
29149
  */
@@ -28947,7 +29164,7 @@ declare module "sap/ui/commons/TreeNode" {
28947
29164
  /**
28948
29165
  * The function to be called when the event occurs
28949
29166
  */
28950
- fnFunction: (p1: Event) => void,
29167
+ fnFunction: (p1: Event<$TreeNodeToggleOpenStateEventParameters>) => void,
28951
29168
  /**
28952
29169
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.TreeNode` itself
28953
29170
  */
@@ -29001,7 +29218,7 @@ declare module "sap/ui/commons/TreeNode" {
29001
29218
  /**
29002
29219
  * The function to be called, when the event occurs
29003
29220
  */
29004
- fnFunction: (p1: Event) => void,
29221
+ fnFunction: (p1: Event<$TreeNodeToggleOpenStateEventParameters>) => void,
29005
29222
  /**
29006
29223
  * Context object on which the given function had to be called
29007
29224
  */
@@ -29044,21 +29261,14 @@ declare module "sap/ui/commons/TreeNode" {
29044
29261
  /**
29045
29262
  * Parameters to pass along with the event
29046
29263
  */
29047
- mParameters?: {
29048
- /**
29049
- * Node has been opened if true
29050
- */
29051
- opened?: boolean;
29052
- }
29264
+ mParameters?: $TreeNodeToggleOpenStateEventParameters
29053
29265
  ): this;
29054
29266
  /**
29055
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
29056
- * ariaDescribedBy}.
29267
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
29057
29268
  */
29058
29269
  getAriaDescribedBy(): ID[];
29059
29270
  /**
29060
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
29061
- * ariaLabelledBy}.
29271
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
29062
29272
  */
29063
29273
  getAriaLabelledBy(): ID[];
29064
29274
  /**
@@ -29300,6 +29510,7 @@ declare module "sap/ui/commons/TreeNode" {
29300
29510
  sText?: string
29301
29511
  ): this;
29302
29512
  }
29513
+ export default TreeNode;
29303
29514
 
29304
29515
  export interface $TreeNodeSettings extends $ElementSettings {
29305
29516
  /**
@@ -29350,13 +29561,24 @@ declare module "sap/ui/commons/TreeNode" {
29350
29561
  /**
29351
29562
  * Node state has changed.
29352
29563
  */
29353
- toggleOpenState?: (oEvent: Event) => void;
29564
+ toggleOpenState?: (
29565
+ oEvent: Event<$TreeNodeToggleOpenStateEventParameters>
29566
+ ) => void;
29354
29567
 
29355
29568
  /**
29356
29569
  * Node is selected
29357
29570
  */
29358
29571
  selected?: (oEvent: Event) => void;
29359
29572
  }
29573
+
29574
+ export interface $TreeNodeSelectedEventParameters {}
29575
+
29576
+ export interface $TreeNodeToggleOpenStateEventParameters {
29577
+ /**
29578
+ * Node has been opened if true
29579
+ */
29580
+ opened?: boolean;
29581
+ }
29360
29582
  }
29361
29583
 
29362
29584
  declare module "sap/ui/commons/TriStateCheckBox" {
@@ -29381,7 +29603,7 @@ declare module "sap/ui/commons/TriStateCheckBox" {
29381
29603
  * the particular control. It can be only set by the control's public toggle function, to make a behaviour
29382
29604
  * possible which is e.g. required in checkbox trees.
29383
29605
  */
29384
- export default class TriStateCheckBox extends Control {
29606
+ class TriStateCheckBox extends Control {
29385
29607
  /**
29386
29608
  * Constructor for a new TriStateCheckBox.
29387
29609
  *
@@ -29461,7 +29683,7 @@ declare module "sap/ui/commons/TriStateCheckBox" {
29461
29683
  /**
29462
29684
  * The function to be called when the event occurs
29463
29685
  */
29464
- fnFunction: (p1: Event) => void,
29686
+ fnFunction: (p1: Event<$TriStateCheckBoxChangeEventParameters>) => void,
29465
29687
  /**
29466
29688
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.TriStateCheckBox` itself
29467
29689
  */
@@ -29481,7 +29703,7 @@ declare module "sap/ui/commons/TriStateCheckBox" {
29481
29703
  /**
29482
29704
  * The function to be called when the event occurs
29483
29705
  */
29484
- fnFunction: (p1: Event) => void,
29706
+ fnFunction: (p1: Event<$TriStateCheckBoxChangeEventParameters>) => void,
29485
29707
  /**
29486
29708
  * Context object to call the event handler with. Defaults to this `sap.ui.commons.TriStateCheckBox` itself
29487
29709
  */
@@ -29498,7 +29720,7 @@ declare module "sap/ui/commons/TriStateCheckBox" {
29498
29720
  /**
29499
29721
  * The function to be called, when the event occurs
29500
29722
  */
29501
- fnFunction: (p1: Event) => void,
29723
+ fnFunction: (p1: Event<$TriStateCheckBoxChangeEventParameters>) => void,
29502
29724
  /**
29503
29725
  * Context object on which the given function had to be called
29504
29726
  */
@@ -29515,12 +29737,7 @@ declare module "sap/ui/commons/TriStateCheckBox" {
29515
29737
  /**
29516
29738
  * Parameters to pass along with the event
29517
29739
  */
29518
- mParameters?: {
29519
- /**
29520
- * Checks whether the box is flagged or not flagged.
29521
- */
29522
- selectionState?: string;
29523
- }
29740
+ mParameters?: $TriStateCheckBoxChangeEventParameters
29524
29741
  ): this;
29525
29742
  /**
29526
29743
  * Gets current value of property {@link #getEditable editable}.
@@ -29721,6 +29938,7 @@ declare module "sap/ui/commons/TriStateCheckBox" {
29721
29938
  destState: TriStateCheckBoxState | keyof typeof TriStateCheckBoxState
29722
29939
  ): void;
29723
29940
  }
29941
+ export default TriStateCheckBox;
29724
29942
 
29725
29943
  export interface $TriStateCheckBoxSettings extends $ControlSettings {
29726
29944
  /**
@@ -29772,7 +29990,14 @@ declare module "sap/ui/commons/TriStateCheckBox" {
29772
29990
  /**
29773
29991
  * Event is triggered when the control status is changed by the user by flagging or unflagging the checkbox.
29774
29992
  */
29775
- change?: (oEvent: Event) => void;
29993
+ change?: (oEvent: Event<$TriStateCheckBoxChangeEventParameters>) => void;
29994
+ }
29995
+
29996
+ export interface $TriStateCheckBoxChangeEventParameters {
29997
+ /**
29998
+ * Checks whether the box is flagged or not flagged.
29999
+ */
30000
+ selectionState?: string;
29776
30001
  }
29777
30002
  }
29778
30003
 
@@ -29795,7 +30020,7 @@ declare module "sap/ui/commons/ValueHelpField" {
29795
30020
  *
29796
30021
  * A TextField with an attached icon which triggeres an event.
29797
30022
  */
29798
- export default class ValueHelpField extends TextField {
30023
+ class ValueHelpField extends TextField {
29799
30024
  /**
29800
30025
  * Constructor for a new ValueHelpField.
29801
30026
  *
@@ -30021,6 +30246,7 @@ declare module "sap/ui/commons/ValueHelpField" {
30021
30246
  sIconURL?: URI
30022
30247
  ): this;
30023
30248
  }
30249
+ export default ValueHelpField;
30024
30250
 
30025
30251
  export interface $ValueHelpFieldSettings extends $TextFieldSettings {
30026
30252
  /**
@@ -30046,6 +30272,8 @@ declare module "sap/ui/commons/ValueHelpField" {
30046
30272
  */
30047
30273
  valueHelpRequest?: (oEvent: Event) => void;
30048
30274
  }
30275
+
30276
+ export interface $ValueHelpFieldValueHelpRequestEventParameters {}
30049
30277
  }
30050
30278
 
30051
30279
  declare namespace sap {