@openui5/types 1.116.0 → 1.117.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.116.0
1
+ // For Library Version: 1.117.0
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -1122,7 +1122,10 @@ declare module "sap/ui/commons/Accordion" {
1122
1122
  closeSectionId?: string;
1123
1123
  }
1124
1124
 
1125
- export type Accordion$SectionCloseEvent = Event<Accordion$SectionCloseEventParameters>;
1125
+ export type Accordion$SectionCloseEvent = Event<
1126
+ Accordion$SectionCloseEventParameters,
1127
+ Accordion
1128
+ >;
1126
1129
 
1127
1130
  export interface Accordion$SectionOpenEventParameters {
1128
1131
  /**
@@ -1136,7 +1139,10 @@ declare module "sap/ui/commons/Accordion" {
1136
1139
  closeSectionIds?: string[];
1137
1140
  }
1138
1141
 
1139
- export type Accordion$SectionOpenEvent = Event<Accordion$SectionOpenEventParameters>;
1142
+ export type Accordion$SectionOpenEvent = Event<
1143
+ Accordion$SectionOpenEventParameters,
1144
+ Accordion
1145
+ >;
1140
1146
 
1141
1147
  export interface Accordion$SectionsReorderEventParameters {
1142
1148
  /**
@@ -1150,7 +1156,10 @@ declare module "sap/ui/commons/Accordion" {
1150
1156
  newIndex?: int;
1151
1157
  }
1152
1158
 
1153
- export type Accordion$SectionsReorderEvent = Event<Accordion$SectionsReorderEventParameters>;
1159
+ export type Accordion$SectionsReorderEvent = Event<
1160
+ Accordion$SectionsReorderEventParameters,
1161
+ Accordion
1162
+ >;
1154
1163
  }
1155
1164
 
1156
1165
  declare module "sap/ui/commons/AccordionSection" {
@@ -1525,7 +1534,10 @@ declare module "sap/ui/commons/AccordionSection" {
1525
1534
  top?: int;
1526
1535
  }
1527
1536
 
1528
- export type AccordionSection$ScrollEvent = Event<AccordionSection$ScrollEventParameters>;
1537
+ export type AccordionSection$ScrollEvent = Event<
1538
+ AccordionSection$ScrollEventParameters,
1539
+ AccordionSection
1540
+ >;
1529
1541
  }
1530
1542
 
1531
1543
  declare module "sap/ui/commons/ApplicationHeader" {
@@ -1840,7 +1852,10 @@ declare module "sap/ui/commons/ApplicationHeader" {
1840
1852
 
1841
1853
  export interface ApplicationHeader$LogoffEventParameters {}
1842
1854
 
1843
- export type ApplicationHeader$LogoffEvent = Event<ApplicationHeader$LogoffEventParameters>;
1855
+ export type ApplicationHeader$LogoffEvent = Event<
1856
+ ApplicationHeader$LogoffEventParameters,
1857
+ ApplicationHeader
1858
+ >;
1844
1859
  }
1845
1860
 
1846
1861
  declare module "sap/ui/commons/Area" {
@@ -2283,7 +2298,10 @@ declare module "sap/ui/commons/AutoComplete" {
2283
2298
  suggestValue?: string;
2284
2299
  }
2285
2300
 
2286
- export type AutoComplete$SuggestEvent = Event<AutoComplete$SuggestEventParameters>;
2301
+ export type AutoComplete$SuggestEvent = Event<
2302
+ AutoComplete$SuggestEventParameters,
2303
+ AutoComplete
2304
+ >;
2287
2305
  }
2288
2306
 
2289
2307
  declare module "sap/ui/commons/layout/BorderLayout" {
@@ -3493,7 +3511,7 @@ declare module "sap/ui/commons/Button" {
3493
3511
 
3494
3512
  export interface Button$PressEventParameters {}
3495
3513
 
3496
- export type Button$PressEvent = Event<Button$PressEventParameters>;
3514
+ export type Button$PressEvent = Event<Button$PressEventParameters, Button>;
3497
3515
  }
3498
3516
 
3499
3517
  declare module "sap/ui/commons/Callout" {
@@ -4108,11 +4126,17 @@ declare module "sap/ui/commons/CalloutBase" {
4108
4126
  parent?: Control;
4109
4127
  }
4110
4128
 
4111
- export type CalloutBase$BeforeOpenEvent = Event<CalloutBase$BeforeOpenEventParameters>;
4129
+ export type CalloutBase$BeforeOpenEvent = Event<
4130
+ CalloutBase$BeforeOpenEventParameters,
4131
+ CalloutBase
4132
+ >;
4112
4133
 
4113
4134
  export interface CalloutBase$CloseEventParameters {}
4114
4135
 
4115
- export type CalloutBase$CloseEvent = Event<CalloutBase$CloseEventParameters>;
4136
+ export type CalloutBase$CloseEvent = Event<
4137
+ CalloutBase$CloseEventParameters,
4138
+ CalloutBase
4139
+ >;
4116
4140
 
4117
4141
  export interface CalloutBase$OpenEventParameters {
4118
4142
  /**
@@ -4121,11 +4145,17 @@ declare module "sap/ui/commons/CalloutBase" {
4121
4145
  parent?: Control;
4122
4146
  }
4123
4147
 
4124
- export type CalloutBase$OpenEvent = Event<CalloutBase$OpenEventParameters>;
4148
+ export type CalloutBase$OpenEvent = Event<
4149
+ CalloutBase$OpenEventParameters,
4150
+ CalloutBase
4151
+ >;
4125
4152
 
4126
4153
  export interface CalloutBase$OpenedEventParameters {}
4127
4154
 
4128
- export type CalloutBase$OpenedEvent = Event<CalloutBase$OpenedEventParameters>;
4155
+ export type CalloutBase$OpenedEvent = Event<
4156
+ CalloutBase$OpenedEventParameters,
4157
+ CalloutBase
4158
+ >;
4129
4159
  }
4130
4160
 
4131
4161
  declare module "sap/ui/commons/Carousel" {
@@ -5175,7 +5205,10 @@ declare module "sap/ui/commons/CheckBox" {
5175
5205
  checked?: boolean;
5176
5206
  }
5177
5207
 
5178
- export type CheckBox$ChangeEvent = Event<CheckBox$ChangeEventParameters>;
5208
+ export type CheckBox$ChangeEvent = Event<
5209
+ CheckBox$ChangeEventParameters,
5210
+ CheckBox
5211
+ >;
5179
5212
  }
5180
5213
 
5181
5214
  declare module "sap/ui/commons/ColorPicker" {
@@ -5749,7 +5782,10 @@ declare module "sap/ui/commons/ComboBox" {
5749
5782
  selectedItem?: ListItem;
5750
5783
  }
5751
5784
 
5752
- export type ComboBox$ChangeEvent = Event<ComboBox$ChangeEventParameters>;
5785
+ export type ComboBox$ChangeEvent = Event<
5786
+ ComboBox$ChangeEventParameters,
5787
+ ComboBox
5788
+ >;
5753
5789
  }
5754
5790
 
5755
5791
  declare module "sap/ui/commons/DatePicker" {
@@ -6957,7 +6993,7 @@ declare module "sap/ui/commons/Dialog" {
6957
6993
  left?: int;
6958
6994
  }
6959
6995
 
6960
- export type Dialog$ClosedEvent = Event<Dialog$ClosedEventParameters>;
6996
+ export type Dialog$ClosedEvent = Event<Dialog$ClosedEventParameters, Dialog>;
6961
6997
  }
6962
6998
 
6963
6999
  declare module "sap/ui/commons/DropdownBox" {
@@ -7452,7 +7488,10 @@ declare module "sap/ui/commons/DropdownBox" {
7452
7488
  value?: string;
7453
7489
  }
7454
7490
 
7455
- export type DropdownBox$SearchHelpEvent = Event<DropdownBox$SearchHelpEventParameters>;
7491
+ export type DropdownBox$SearchHelpEvent = Event<
7492
+ DropdownBox$SearchHelpEventParameters,
7493
+ DropdownBox
7494
+ >;
7456
7495
  }
7457
7496
 
7458
7497
  declare module "sap/ui/commons/FileUploader" {
@@ -8622,7 +8661,10 @@ declare module "sap/ui/commons/TextField" {
8622
8661
  newValue?: string;
8623
8662
  }
8624
8663
 
8625
- export type TextField$ChangeEvent = Event<TextField$ChangeEventParameters>;
8664
+ export type TextField$ChangeEvent = Event<
8665
+ TextField$ChangeEventParameters,
8666
+ TextField
8667
+ >;
8626
8668
 
8627
8669
  export interface TextField$LiveChangeEventParameters {
8628
8670
  /**
@@ -8631,7 +8673,10 @@ declare module "sap/ui/commons/TextField" {
8631
8673
  liveValue?: string;
8632
8674
  }
8633
8675
 
8634
- export type TextField$LiveChangeEvent = Event<TextField$LiveChangeEventParameters>;
8676
+ export type TextField$LiveChangeEvent = Event<
8677
+ TextField$LiveChangeEventParameters,
8678
+ TextField
8679
+ >;
8635
8680
  }
8636
8681
 
8637
8682
  declare module "sap/ui/commons/form/Form" {
@@ -9410,10 +9455,12 @@ declare module "sap/ui/commons/form/SimpleForm" {
9410
9455
  $SimpleFormSettings as $SimpleFormSettings1,
9411
9456
  } from "sap/ui/layout/form/SimpleForm";
9412
9457
 
9413
- import { form } from "sap/ui/commons/library";
9458
+ import { form } from "sap/ui/layout/library";
9414
9459
 
9415
9460
  import ElementMetadata from "sap/ui/core/ElementMetadata";
9416
9461
 
9462
+ import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
9463
+
9417
9464
  /**
9418
9465
  * @since 1.12
9419
9466
  * @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
@@ -9430,9 +9477,6 @@ declare module "sap/ui/commons/form/SimpleForm" {
9430
9477
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
9431
9478
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
9432
9479
  * of the syntax of the settings object.
9433
- *
9434
- * 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 }
9435
- * can be used.
9436
9480
  */
9437
9481
  constructor(
9438
9482
  /**
@@ -9446,9 +9490,6 @@ declare module "sap/ui/commons/form/SimpleForm" {
9446
9490
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
9447
9491
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
9448
9492
  * of the syntax of the settings object.
9449
- *
9450
- * 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 }
9451
- * can be used.
9452
9493
  */
9453
9494
  constructor(
9454
9495
  /**
@@ -9493,31 +9534,71 @@ declare module "sap/ui/commons/form/SimpleForm" {
9493
9534
  /**
9494
9535
  * @since 1.14
9495
9536
  *
9496
- * Getter for property `layout`. The FormLayout that is used to render the SimpleForm
9537
+ * Gets current value of property {@link #getLayout layout}.
9538
+ *
9539
+ * The `FormLayout` that is used to render the `SimpleForm`.
9497
9540
  *
9498
- * Default value is `ResponsiveLayout`
9541
+ * We recommend using the `GridLayout` for rendering a `SimpleForm` in `sap.ui.commons` library, as responsive
9542
+ * layouts are not designed for this library.
9499
9543
  *
9500
- * @returns the value of property `layout`
9544
+ * **Note** If possible, set the `layout` before adding content to prevent calculations for the default
9545
+ * layout.
9546
+ *
9547
+ * **Note** The `ResponsiveLayout` has been deprecated and must no longer be used.
9548
+ *
9549
+ * Default value is `ResponsiveLayout`.
9550
+ *
9551
+ * @returns Value of property `layout`
9501
9552
  */
9502
- getLayout(): form.SimpleFormLayout;
9553
+ getLayout(): form.SimpleFormLayout | keyof typeof form.SimpleFormLayout;
9503
9554
  /**
9504
9555
  * @since 1.14
9505
9556
  *
9506
- * Setter for property `layout`.
9557
+ * Sets a new value for property {@link #getLayout layout}.
9507
9558
  *
9508
- * Default value is `ResponsiveLayout`
9559
+ * The `FormLayout` that is used to render the `SimpleForm`.
9509
9560
  *
9510
- * @returns `this` to allow method chaining
9561
+ * We recommend using the `GridLayout` for rendering a `SimpleForm` in `sap.ui.commons` library, as responsive
9562
+ * layouts are not designed for this library.
9563
+ *
9564
+ * **Note** If possible, set the `layout` before adding content to prevent calculations for the default
9565
+ * layout.
9566
+ *
9567
+ * **Note** The `ResponsiveLayout` has been deprecated and must no longer be used.
9568
+ *
9569
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
9570
+ *
9571
+ * Default value is `ResponsiveLayout`.
9572
+ *
9573
+ * @returns Reference to `this` in order to allow method chaining
9511
9574
  */
9512
9575
  setLayout(
9513
9576
  /**
9514
- * new value for property `layout`
9577
+ * New value for property `layout`
9515
9578
  */
9516
- oLayout: form.SimpleFormLayout
9579
+ sLayout?: form.SimpleFormLayout | keyof typeof form.SimpleFormLayout
9517
9580
  ): this;
9518
9581
  }
9519
9582
 
9520
- export interface $SimpleFormSettings extends $SimpleFormSettings1 {}
9583
+ export interface $SimpleFormSettings extends $SimpleFormSettings1 {
9584
+ /**
9585
+ * @since 1.14
9586
+ *
9587
+ * The `FormLayout` that is used to render the `SimpleForm`.
9588
+ *
9589
+ * We recommend using the `GridLayout` for rendering a `SimpleForm` in `sap.ui.commons` library, as responsive
9590
+ * layouts are not designed for this library.
9591
+ *
9592
+ * **Note** If possible, set the `layout` before adding content to prevent calculations for the default
9593
+ * layout.
9594
+ *
9595
+ * **Note** The `ResponsiveLayout` has been deprecated and must no longer be used.
9596
+ */
9597
+ layout?:
9598
+ | (form.SimpleFormLayout | keyof typeof form.SimpleFormLayout)
9599
+ | PropertyBindingInfo
9600
+ | `{${string}}`;
9601
+ }
9521
9602
  }
9522
9603
 
9523
9604
  declare module "sap/ui/commons/FormattedTextView" {
@@ -10309,7 +10390,7 @@ declare module "sap/ui/commons/Image" {
10309
10390
 
10310
10391
  export interface Image$PressEventParameters {}
10311
10392
 
10312
- export type Image$PressEvent = Event<Image$PressEventParameters>;
10393
+ export type Image$PressEvent = Event<Image$PressEventParameters, Image>;
10313
10394
  }
10314
10395
 
10315
10396
  declare module "sap/ui/commons/ImageMap" {
@@ -10600,7 +10681,10 @@ declare module "sap/ui/commons/ImageMap" {
10600
10681
  areaId?: string;
10601
10682
  }
10602
10683
 
10603
- export type ImageMap$PressEvent = Event<ImageMap$PressEventParameters>;
10684
+ export type ImageMap$PressEvent = Event<
10685
+ ImageMap$PressEventParameters,
10686
+ ImageMap
10687
+ >;
10604
10688
  }
10605
10689
 
10606
10690
  declare module "sap/ui/commons/InPlaceEdit" {
@@ -11061,7 +11145,10 @@ declare module "sap/ui/commons/InPlaceEdit" {
11061
11145
  newValue?: string;
11062
11146
  }
11063
11147
 
11064
- export type InPlaceEdit$ChangeEvent = Event<InPlaceEdit$ChangeEventParameters>;
11148
+ export type InPlaceEdit$ChangeEvent = Event<
11149
+ InPlaceEdit$ChangeEventParameters,
11150
+ InPlaceEdit
11151
+ >;
11065
11152
 
11066
11153
  export interface InPlaceEdit$LiveChangeEventParameters {
11067
11154
  /**
@@ -11070,7 +11157,10 @@ declare module "sap/ui/commons/InPlaceEdit" {
11070
11157
  liveValue?: string;
11071
11158
  }
11072
11159
 
11073
- export type InPlaceEdit$LiveChangeEvent = Event<InPlaceEdit$LiveChangeEventParameters>;
11160
+ export type InPlaceEdit$LiveChangeEvent = Event<
11161
+ InPlaceEdit$LiveChangeEventParameters,
11162
+ InPlaceEdit
11163
+ >;
11074
11164
  }
11075
11165
 
11076
11166
  declare module "sap/ui/commons/Label" {
@@ -14466,7 +14556,7 @@ declare module "sap/ui/commons/Link" {
14466
14556
 
14467
14557
  export interface Link$PressEventParameters {}
14468
14558
 
14469
- export type Link$PressEvent = Event<Link$PressEventParameters>;
14559
+ export type Link$PressEvent = Event<Link$PressEventParameters, Link>;
14470
14560
  }
14471
14561
 
14472
14562
  declare module "sap/ui/commons/ListBox" {
@@ -15382,7 +15472,10 @@ declare module "sap/ui/commons/ListBox" {
15382
15472
  selectedIndices?: int[];
15383
15473
  }
15384
15474
 
15385
- export type ListBox$SelectEvent = Event<ListBox$SelectEventParameters>;
15475
+ export type ListBox$SelectEvent = Event<
15476
+ ListBox$SelectEventParameters,
15477
+ ListBox
15478
+ >;
15386
15479
  }
15387
15480
 
15388
15481
  declare module "sap/ui/commons/Menu" {
@@ -16095,7 +16188,10 @@ declare module "sap/ui/commons/MenuButton" {
16095
16188
  item?: MenuItemBase;
16096
16189
  }
16097
16190
 
16098
- export type MenuButton$ItemSelectedEvent = Event<MenuButton$ItemSelectedEventParameters>;
16191
+ export type MenuButton$ItemSelectedEvent = Event<
16192
+ MenuButton$ItemSelectedEventParameters,
16193
+ MenuButton
16194
+ >;
16099
16195
 
16100
16196
  export interface MenuButton$PressEventParameters
16101
16197
  extends Button$PressEventParameters {
@@ -16110,7 +16206,10 @@ declare module "sap/ui/commons/MenuButton" {
16110
16206
  item?: MenuItemBase1;
16111
16207
  }
16112
16208
 
16113
- export type MenuButton$PressEvent = Event<MenuButton$PressEventParameters>;
16209
+ export type MenuButton$PressEvent = Event<
16210
+ MenuButton$PressEventParameters,
16211
+ MenuButton
16212
+ >;
16114
16213
  }
16115
16214
 
16116
16215
  declare module "sap/ui/commons/MenuItem" {
@@ -17458,7 +17557,10 @@ declare module "sap/ui/commons/MessageToast" {
17458
17557
 
17459
17558
  export interface MessageToast$NextEventParameters {}
17460
17559
 
17461
- export type MessageToast$NextEvent = Event<MessageToast$NextEventParameters>;
17560
+ export type MessageToast$NextEvent = Event<
17561
+ MessageToast$NextEventParameters,
17562
+ MessageToast
17563
+ >;
17462
17564
  }
17463
17565
 
17464
17566
  declare module "sap/ui/commons/Paginator" {
@@ -17703,7 +17805,10 @@ declare module "sap/ui/commons/Paginator" {
17703
17805
  type?: PaginatorEvent | keyof typeof PaginatorEvent;
17704
17806
  }
17705
17807
 
17706
- export type Paginator$PageEvent = Event<Paginator$PageEventParameters>;
17808
+ export type Paginator$PageEvent = Event<
17809
+ Paginator$PageEventParameters,
17810
+ Paginator
17811
+ >;
17707
17812
  }
17708
17813
 
17709
17814
  declare module "sap/ui/commons/Panel" {
@@ -19227,7 +19332,10 @@ declare module "sap/ui/commons/RadioButton" {
19227
19332
 
19228
19333
  export interface RadioButton$SelectEventParameters {}
19229
19334
 
19230
- export type RadioButton$SelectEvent = Event<RadioButton$SelectEventParameters>;
19335
+ export type RadioButton$SelectEvent = Event<
19336
+ RadioButton$SelectEventParameters,
19337
+ RadioButton
19338
+ >;
19231
19339
  }
19232
19340
 
19233
19341
  declare module "sap/ui/commons/RadioButtonGroup" {
@@ -19819,7 +19927,10 @@ declare module "sap/ui/commons/RadioButtonGroup" {
19819
19927
  selectedIndex?: int;
19820
19928
  }
19821
19929
 
19822
- export type RadioButtonGroup$SelectEvent = Event<RadioButtonGroup$SelectEventParameters>;
19930
+ export type RadioButtonGroup$SelectEvent = Event<
19931
+ RadioButtonGroup$SelectEventParameters,
19932
+ RadioButtonGroup
19933
+ >;
19823
19934
  }
19824
19935
 
19825
19936
  declare module "sap/ui/commons/RangeSlider" {
@@ -20486,7 +20597,10 @@ declare module "sap/ui/commons/RatingIndicator" {
20486
20597
  value?: int;
20487
20598
  }
20488
20599
 
20489
- export type RatingIndicator$ChangeEvent = Event<RatingIndicator$ChangeEventParameters>;
20600
+ export type RatingIndicator$ChangeEvent = Event<
20601
+ RatingIndicator$ChangeEventParameters,
20602
+ RatingIndicator
20603
+ >;
20490
20604
  }
20491
20605
 
20492
20606
  declare module "sap/ui/commons/ResponsiveContainer" {
@@ -20832,7 +20946,10 @@ declare module "sap/ui/commons/ResponsiveContainer" {
20832
20946
  currentRange?: ResponsiveContainerRange;
20833
20947
  }
20834
20948
 
20835
- export type ResponsiveContainer$RangeSwitchEvent = Event<ResponsiveContainer$RangeSwitchEventParameters>;
20949
+ export type ResponsiveContainer$RangeSwitchEvent = Event<
20950
+ ResponsiveContainer$RangeSwitchEventParameters,
20951
+ ResponsiveContainer
20952
+ >;
20836
20953
  }
20837
20954
 
20838
20955
  declare module "sap/ui/commons/ResponsiveContainerRange" {
@@ -21690,7 +21807,10 @@ declare module "sap/ui/commons/RoadMap" {
21690
21807
  stepId?: string;
21691
21808
  }
21692
21809
 
21693
- export type RoadMap$StepExpandedEvent = Event<RoadMap$StepExpandedEventParameters>;
21810
+ export type RoadMap$StepExpandedEvent = Event<
21811
+ RoadMap$StepExpandedEventParameters,
21812
+ RoadMap
21813
+ >;
21694
21814
 
21695
21815
  export interface RoadMap$StepSelectedEventParameters {
21696
21816
  /**
@@ -21699,7 +21819,10 @@ declare module "sap/ui/commons/RoadMap" {
21699
21819
  stepId?: string;
21700
21820
  }
21701
21821
 
21702
- export type RoadMap$StepSelectedEvent = Event<RoadMap$StepSelectedEventParameters>;
21822
+ export type RoadMap$StepSelectedEvent = Event<
21823
+ RoadMap$StepSelectedEventParameters,
21824
+ RoadMap
21825
+ >;
21703
21826
  }
21704
21827
 
21705
21828
  declare module "sap/ui/commons/RoadMapStep" {
@@ -22996,7 +23119,10 @@ declare module "sap/ui/commons/RowRepeater" {
22996
23119
  filterId?: string;
22997
23120
  }
22998
23121
 
22999
- export type RowRepeater$FilterEvent = Event<RowRepeater$FilterEventParameters>;
23122
+ export type RowRepeater$FilterEvent = Event<
23123
+ RowRepeater$FilterEventParameters,
23124
+ RowRepeater
23125
+ >;
23000
23126
 
23001
23127
  export interface RowRepeater$PageEventParameters {
23002
23128
  /**
@@ -23010,7 +23136,10 @@ declare module "sap/ui/commons/RowRepeater" {
23010
23136
  previousPage?: int;
23011
23137
  }
23012
23138
 
23013
- export type RowRepeater$PageEvent = Event<RowRepeater$PageEventParameters>;
23139
+ export type RowRepeater$PageEvent = Event<
23140
+ RowRepeater$PageEventParameters,
23141
+ RowRepeater
23142
+ >;
23014
23143
 
23015
23144
  export interface RowRepeater$ResizeEventParameters {
23016
23145
  /**
@@ -23024,7 +23153,10 @@ declare module "sap/ui/commons/RowRepeater" {
23024
23153
  previousNumberOfRows?: int;
23025
23154
  }
23026
23155
 
23027
- export type RowRepeater$ResizeEvent = Event<RowRepeater$ResizeEventParameters>;
23156
+ export type RowRepeater$ResizeEvent = Event<
23157
+ RowRepeater$ResizeEventParameters,
23158
+ RowRepeater
23159
+ >;
23028
23160
 
23029
23161
  export interface RowRepeater$SortEventParameters {
23030
23162
  /**
@@ -23033,7 +23165,10 @@ declare module "sap/ui/commons/RowRepeater" {
23033
23165
  sorterId?: string;
23034
23166
  }
23035
23167
 
23036
- export type RowRepeater$SortEvent = Event<RowRepeater$SortEventParameters>;
23168
+ export type RowRepeater$SortEvent = Event<
23169
+ RowRepeater$SortEventParameters,
23170
+ RowRepeater
23171
+ >;
23037
23172
  }
23038
23173
 
23039
23174
  declare module "sap/ui/commons/RowRepeaterFilter" {
@@ -24346,7 +24481,10 @@ declare module "sap/ui/commons/SearchField" {
24346
24481
  query?: string;
24347
24482
  }
24348
24483
 
24349
- export type SearchField$SearchEvent = Event<SearchField$SearchEventParameters>;
24484
+ export type SearchField$SearchEvent = Event<
24485
+ SearchField$SearchEventParameters,
24486
+ SearchField
24487
+ >;
24350
24488
 
24351
24489
  export interface SearchField$SuggestEventParameters {
24352
24490
  /**
@@ -24355,7 +24493,10 @@ declare module "sap/ui/commons/SearchField" {
24355
24493
  value?: string;
24356
24494
  }
24357
24495
 
24358
- export type SearchField$SuggestEvent = Event<SearchField$SuggestEventParameters>;
24496
+ export type SearchField$SuggestEvent = Event<
24497
+ SearchField$SuggestEventParameters,
24498
+ SearchField
24499
+ >;
24359
24500
  }
24360
24501
 
24361
24502
  declare module "sap/ui/commons/SearchProvider" {
@@ -24760,7 +24901,10 @@ declare module "sap/ui/commons/SegmentedButton" {
24760
24901
  selectedButtonId?: string;
24761
24902
  }
24762
24903
 
24763
- export type SegmentedButton$SelectEvent = Event<SegmentedButton$SelectEventParameters>;
24904
+ export type SegmentedButton$SelectEvent = Event<
24905
+ SegmentedButton$SelectEventParameters,
24906
+ SegmentedButton
24907
+ >;
24764
24908
  }
24765
24909
 
24766
24910
  declare module "sap/ui/commons/Slider" {
@@ -25504,7 +25648,7 @@ declare module "sap/ui/commons/Slider" {
25504
25648
  value?: float;
25505
25649
  }
25506
25650
 
25507
- export type Slider$ChangeEvent = Event<Slider$ChangeEventParameters>;
25651
+ export type Slider$ChangeEvent = Event<Slider$ChangeEventParameters, Slider>;
25508
25652
 
25509
25653
  export interface Slider$LiveChangeEventParameters {
25510
25654
  /**
@@ -25513,7 +25657,10 @@ declare module "sap/ui/commons/Slider" {
25513
25657
  value?: float;
25514
25658
  }
25515
25659
 
25516
- export type Slider$LiveChangeEvent = Event<Slider$LiveChangeEventParameters>;
25660
+ export type Slider$LiveChangeEvent = Event<
25661
+ Slider$LiveChangeEventParameters,
25662
+ Slider
25663
+ >;
25517
25664
  }
25518
25665
 
25519
25666
  declare module "sap/ui/commons/Splitter" {
@@ -26731,7 +26878,10 @@ declare module "sap/ui/commons/TabStrip" {
26731
26878
  index?: int;
26732
26879
  }
26733
26880
 
26734
- export type TabStrip$CloseEvent = Event<TabStrip$CloseEventParameters>;
26881
+ export type TabStrip$CloseEvent = Event<
26882
+ TabStrip$CloseEventParameters,
26883
+ TabStrip
26884
+ >;
26735
26885
 
26736
26886
  export interface TabStrip$SelectEventParameters {
26737
26887
  /**
@@ -26740,7 +26890,10 @@ declare module "sap/ui/commons/TabStrip" {
26740
26890
  index?: int;
26741
26891
  }
26742
26892
 
26743
- export type TabStrip$SelectEvent = Event<TabStrip$SelectEventParameters>;
26893
+ export type TabStrip$SelectEvent = Event<
26894
+ TabStrip$SelectEventParameters,
26895
+ TabStrip
26896
+ >;
26744
26897
  }
26745
26898
 
26746
26899
  declare module "sap/ui/commons/TextArea" {
@@ -28950,7 +29103,7 @@ declare module "sap/ui/commons/Tree" {
28950
29103
  nodeContext?: object;
28951
29104
  }
28952
29105
 
28953
- export type Tree$SelectEvent = Event<Tree$SelectEventParameters>;
29106
+ export type Tree$SelectEvent = Event<Tree$SelectEventParameters, Tree>;
28954
29107
 
28955
29108
  export interface Tree$SelectionChangeEventParameters {
28956
29109
  /**
@@ -28964,7 +29117,10 @@ declare module "sap/ui/commons/Tree" {
28964
29117
  nodeContexts?: object[];
28965
29118
  }
28966
29119
 
28967
- export type Tree$SelectionChangeEvent = Event<Tree$SelectionChangeEventParameters>;
29120
+ export type Tree$SelectionChangeEvent = Event<
29121
+ Tree$SelectionChangeEventParameters,
29122
+ Tree
29123
+ >;
28968
29124
  }
28969
29125
 
28970
29126
  declare module "sap/ui/commons/TreeNode" {
@@ -29574,7 +29730,10 @@ declare module "sap/ui/commons/TreeNode" {
29574
29730
 
29575
29731
  export interface TreeNode$SelectedEventParameters {}
29576
29732
 
29577
- export type TreeNode$SelectedEvent = Event<TreeNode$SelectedEventParameters>;
29733
+ export type TreeNode$SelectedEvent = Event<
29734
+ TreeNode$SelectedEventParameters,
29735
+ TreeNode
29736
+ >;
29578
29737
 
29579
29738
  export interface TreeNode$ToggleOpenStateEventParameters {
29580
29739
  /**
@@ -29583,7 +29742,10 @@ declare module "sap/ui/commons/TreeNode" {
29583
29742
  opened?: boolean;
29584
29743
  }
29585
29744
 
29586
- export type TreeNode$ToggleOpenStateEvent = Event<TreeNode$ToggleOpenStateEventParameters>;
29745
+ export type TreeNode$ToggleOpenStateEvent = Event<
29746
+ TreeNode$ToggleOpenStateEventParameters,
29747
+ TreeNode
29748
+ >;
29587
29749
  }
29588
29750
 
29589
29751
  declare module "sap/ui/commons/TriStateCheckBox" {
@@ -30004,7 +30166,10 @@ declare module "sap/ui/commons/TriStateCheckBox" {
30004
30166
  selectionState?: string;
30005
30167
  }
30006
30168
 
30007
- export type TriStateCheckBox$ChangeEvent = Event<TriStateCheckBox$ChangeEventParameters>;
30169
+ export type TriStateCheckBox$ChangeEvent = Event<
30170
+ TriStateCheckBox$ChangeEventParameters,
30171
+ TriStateCheckBox
30172
+ >;
30008
30173
  }
30009
30174
 
30010
30175
  declare module "sap/ui/commons/ValueHelpField" {
@@ -30280,7 +30445,10 @@ declare module "sap/ui/commons/ValueHelpField" {
30280
30445
 
30281
30446
  export interface ValueHelpField$ValueHelpRequestEventParameters {}
30282
30447
 
30283
- export type ValueHelpField$ValueHelpRequestEvent = Event<ValueHelpField$ValueHelpRequestEventParameters>;
30448
+ export type ValueHelpField$ValueHelpRequestEvent = Event<
30449
+ ValueHelpField$ValueHelpRequestEventParameters,
30450
+ ValueHelpField
30451
+ >;
30284
30452
  }
30285
30453
 
30286
30454
  declare namespace sap {