@openui5/ts-types 1.120.11 → 1.120.13

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.120.11
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -67,29 +67,74 @@ declare namespace sap {
67
67
  * @deprecated (since 1.38)
68
68
  */
69
69
  namespace form {
70
+ /**
71
+ * Describes the settings that can be provided to the Form constructor.
72
+ *
73
+ * @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
74
+ */
70
75
  interface $FormSettings extends sap.ui.layout.form.$FormSettings {}
71
76
 
77
+ /**
78
+ * Describes the settings that can be provided to the FormContainer constructor.
79
+ *
80
+ * @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
81
+ */
72
82
  interface $FormContainerSettings
73
83
  extends sap.ui.layout.form.$FormContainerSettings {}
74
84
 
85
+ /**
86
+ * Describes the settings that can be provided to the FormElement constructor.
87
+ *
88
+ * @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
89
+ */
75
90
  interface $FormElementSettings
76
91
  extends sap.ui.layout.form.$FormElementSettings {}
77
92
 
93
+ /**
94
+ * Describes the settings that can be provided to the FormLayout constructor.
95
+ *
96
+ * @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
97
+ */
78
98
  interface $FormLayoutSettings
79
99
  extends sap.ui.layout.form.$FormLayoutSettings {}
80
100
 
101
+ /**
102
+ * Describes the settings that can be provided to the GridContainerData constructor.
103
+ *
104
+ * @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
105
+ */
81
106
  interface $GridContainerDataSettings
82
107
  extends sap.ui.layout.form.$GridContainerDataSettings {}
83
108
 
109
+ /**
110
+ * Describes the settings that can be provided to the GridElementData constructor.
111
+ *
112
+ * @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
113
+ */
84
114
  interface $GridElementDataSettings
85
115
  extends sap.ui.layout.form.$GridElementDataSettings {}
86
116
 
117
+ /**
118
+ * Describes the settings that can be provided to the GridLayout constructor.
119
+ *
120
+ * @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
121
+ */
87
122
  interface $GridLayoutSettings
88
123
  extends sap.ui.layout.form.$GridLayoutSettings {}
89
124
 
125
+ /**
126
+ * Describes the settings that can be provided to the ResponsiveLayout constructor.
127
+ *
128
+ * @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
129
+ */
90
130
  interface $ResponsiveLayoutSettings
91
131
  extends sap.ui.layout.form.$ResponsiveLayoutSettings {}
92
132
 
133
+ /**
134
+ * Describes the settings that can be provided to the SimpleForm constructor.
135
+ *
136
+ * @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
137
+ */
93
138
  interface $SimpleFormSettings
94
139
  extends sap.ui.layout.form.$SimpleFormSettings {
95
140
  /**
@@ -936,6 +981,11 @@ declare namespace sap {
936
981
  * @deprecated (since 1.38)
937
982
  */
938
983
  namespace layout {
984
+ /**
985
+ * Describes the settings that can be provided to the AbsoluteLayout constructor.
986
+ *
987
+ * @deprecated (since 1.38)
988
+ */
939
989
  interface $AbsoluteLayoutSettings extends sap.ui.core.$ControlSettings {
940
990
  /**
941
991
  * The overall width of the control. When not set, 100% is automatically set.
@@ -979,6 +1029,11 @@ declare namespace sap {
979
1029
  | `{${string}}`;
980
1030
  }
981
1031
 
1032
+ /**
1033
+ * Describes the settings that can be provided to the BorderLayout constructor.
1034
+ *
1035
+ * @deprecated (since 1.38) - replaced by {@link sap.m.Page}
1036
+ */
982
1037
  interface $BorderLayoutSettings extends sap.ui.core.$ControlSettings {
983
1038
  /**
984
1039
  * The RTL setting swaps the areas Begin and End.
@@ -1032,6 +1087,11 @@ declare namespace sap {
1032
1087
  bottom?: sap.ui.commons.layout.BorderLayoutArea;
1033
1088
  }
1034
1089
 
1090
+ /**
1091
+ * Describes the settings that can be provided to the BorderLayoutArea constructor.
1092
+ *
1093
+ * @deprecated (since 1.38) - Instead, use the `sap.m.Page` control.
1094
+ */
1035
1095
  interface $BorderLayoutAreaSettings
1036
1096
  extends sap.ui.core.$ElementSettings {
1037
1097
  /**
@@ -1085,9 +1145,19 @@ declare namespace sap {
1085
1145
  | `{${string}}`;
1086
1146
  }
1087
1147
 
1148
+ /**
1149
+ * Describes the settings that can be provided to the HorizontalLayout constructor.
1150
+ *
1151
+ * @deprecated (since 1.38) - Instead, use the `sap.ui.layout.HorizontalLayout` control.
1152
+ */
1088
1153
  interface $HorizontalLayoutSettings
1089
1154
  extends sap.ui.layout.$HorizontalLayoutSettings {}
1090
1155
 
1156
+ /**
1157
+ * Describes the settings that can be provided to the MatrixLayout constructor.
1158
+ *
1159
+ * @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
1160
+ */
1091
1161
  interface $MatrixLayoutSettings extends sap.ui.core.$ControlSettings {
1092
1162
  /**
1093
1163
  * CSS width of the matrix layout. If the LayoutFixed = true an adequate width should be provided.
@@ -1143,6 +1213,11 @@ declare namespace sap {
1143
1213
  | `{${string}}`;
1144
1214
  }
1145
1215
 
1216
+ /**
1217
+ * Describes the settings that can be provided to the MatrixLayoutCell constructor.
1218
+ *
1219
+ * @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
1220
+ */
1146
1221
  interface $MatrixLayoutCellSettings
1147
1222
  extends sap.ui.core.$ElementSettings {
1148
1223
  /**
@@ -1218,6 +1293,11 @@ declare namespace sap {
1218
1293
  | `{${string}}`;
1219
1294
  }
1220
1295
 
1296
+ /**
1297
+ * Describes the settings that can be provided to the MatrixLayoutRow constructor.
1298
+ *
1299
+ * @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
1300
+ */
1221
1301
  interface $MatrixLayoutRowSettings
1222
1302
  extends sap.ui.core.$ElementSettings {
1223
1303
  /**
@@ -1238,6 +1318,11 @@ declare namespace sap {
1238
1318
  | `{${string}}`;
1239
1319
  }
1240
1320
 
1321
+ /**
1322
+ * Describes the settings that can be provided to the PositionContainer constructor.
1323
+ *
1324
+ * @deprecated (since 1.38)
1325
+ */
1241
1326
  interface $PositionContainerSettings
1242
1327
  extends sap.ui.core.$ElementSettings {
1243
1328
  /**
@@ -1296,12 +1381,27 @@ declare namespace sap {
1296
1381
  control?: sap.ui.core.Control;
1297
1382
  }
1298
1383
 
1384
+ /**
1385
+ * Describes the settings that can be provided to the ResponsiveFlowLayout constructor.
1386
+ *
1387
+ * @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
1388
+ */
1299
1389
  interface $ResponsiveFlowLayoutSettings
1300
1390
  extends sap.ui.layout.$ResponsiveFlowLayoutSettings {}
1301
1391
 
1392
+ /**
1393
+ * Describes the settings that can be provided to the ResponsiveFlowLayoutData constructor.
1394
+ *
1395
+ * @deprecated (since 1.16.0) - moved to sap.ui.layout library. Please use this one.
1396
+ */
1302
1397
  interface $ResponsiveFlowLayoutDataSettings
1303
1398
  extends sap.ui.layout.$ResponsiveFlowLayoutDataSettings {}
1304
1399
 
1400
+ /**
1401
+ * Describes the settings that can be provided to the VerticalLayout constructor.
1402
+ *
1403
+ * @deprecated (since 1.16.0) - Moved to sap.ui.layout library. Please use this one.
1404
+ */
1305
1405
  interface $VerticalLayoutSettings
1306
1406
  extends sap.ui.layout.$VerticalLayoutSettings {}
1307
1407
 
@@ -4269,6 +4369,11 @@ declare namespace sap {
4269
4369
  __implements__sap_ui_commons_ToolbarItem: boolean;
4270
4370
  }
4271
4371
 
4372
+ /**
4373
+ * Describes the settings that can be provided to the Accordion constructor.
4374
+ *
4375
+ * @deprecated (since 1.38)
4376
+ */
4272
4377
  interface $AccordionSettings extends sap.ui.core.$ControlSettings {
4273
4378
  /**
4274
4379
  * When the specified width is less than the width of a section content, a horizontal scroll bar is provided.
@@ -4310,6 +4415,11 @@ declare namespace sap {
4310
4415
  sectionsReorder?: (oEvent: Accordion$SectionsReorderEvent) => void;
4311
4416
  }
4312
4417
 
4418
+ /**
4419
+ * Describes the settings that can be provided to the AccordionSection constructor.
4420
+ *
4421
+ * @deprecated (since 1.38)
4422
+ */
4313
4423
  interface $AccordionSectionSettings extends sap.ui.core.$ElementSettings {
4314
4424
  /**
4315
4425
  * When the section content exceeds maxHeight, a vertical scroll bar appears.
@@ -4360,6 +4470,11 @@ declare namespace sap {
4360
4470
  scroll?: (oEvent: AccordionSection$ScrollEvent) => void;
4361
4471
  }
4362
4472
 
4473
+ /**
4474
+ * Describes the settings that can be provided to the ApplicationHeader constructor.
4475
+ *
4476
+ * @deprecated (since 1.38) - Instead, use the `sap.tnt.ToolHeader` control.
4477
+ */
4363
4478
  interface $ApplicationHeaderSettings
4364
4479
  extends sap.ui.core.$ControlSettings {
4365
4480
  /**
@@ -4402,6 +4517,11 @@ declare namespace sap {
4402
4517
  logoff?: (oEvent: sap.ui.base.Event) => void;
4403
4518
  }
4404
4519
 
4520
+ /**
4521
+ * Describes the settings that can be provided to the Area constructor.
4522
+ *
4523
+ * @deprecated (since 1.38)
4524
+ */
4405
4525
  interface $AreaSettings extends sap.ui.core.$ElementSettings {
4406
4526
  /**
4407
4527
  * The value is a string and can be 'rect' for rectangle, 'poly' for poligon, 'circle', or default.
@@ -4427,6 +4547,11 @@ declare namespace sap {
4427
4547
  alt?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
4428
4548
  }
4429
4549
 
4550
+ /**
4551
+ * Describes the settings that can be provided to the AutoComplete constructor.
4552
+ *
4553
+ * @deprecated (since 1.38)
4554
+ */
4430
4555
  interface $AutoCompleteSettings extends sap.ui.commons.$ComboBoxSettings {
4431
4556
  /**
4432
4557
  * Determines whether scrolling should be enabled when the number of items is higher than maxPopupItems.
@@ -4443,6 +4568,11 @@ declare namespace sap {
4443
4568
  suggest?: (oEvent: AutoComplete$SuggestEvent) => void;
4444
4569
  }
4445
4570
 
4571
+ /**
4572
+ * Describes the settings that can be provided to the Button constructor.
4573
+ *
4574
+ * @deprecated (since 1.38) - replaced by {@link sap.m.Button}
4575
+ */
4446
4576
  interface $ButtonSettings extends sap.ui.core.$ControlSettings {
4447
4577
  /**
4448
4578
  * Button text displayed at runtime.
@@ -4558,6 +4688,12 @@ declare namespace sap {
4558
4688
  press?: (oEvent: sap.ui.base.Event) => void;
4559
4689
  }
4560
4690
 
4691
+ /**
4692
+ * Describes the settings that can be provided to the Callout constructor.
4693
+ *
4694
+ * @deprecated (since 1.38) - If you want to achieve a similar behavior, use a `sap.m.Popover` control and
4695
+ * open it next to your control.
4696
+ */
4561
4697
  interface $CalloutSettings extends sap.ui.commons.$CalloutBaseSettings {
4562
4698
  /**
4563
4699
  * Determines the content of the Callout
@@ -4569,6 +4705,11 @@ declare namespace sap {
4569
4705
  | `{${string}}`;
4570
4706
  }
4571
4707
 
4708
+ /**
4709
+ * Describes the settings that can be provided to the CalloutBase constructor.
4710
+ *
4711
+ * @deprecated (since 1.38)
4712
+ */
4572
4713
  interface $CalloutBaseSettings extends sap.ui.core.$TooltipBaseSettings {
4573
4714
  /**
4574
4715
  * The event is fired when the popup is opened.
@@ -4594,6 +4735,11 @@ declare namespace sap {
4594
4735
  opened?: (oEvent: sap.ui.base.Event) => void;
4595
4736
  }
4596
4737
 
4738
+ /**
4739
+ * Describes the settings that can be provided to the Carousel constructor.
4740
+ *
4741
+ * @deprecated (since 1.38) - Instead, use the `sap.m.Carousel` control.
4742
+ */
4597
4743
  interface $CarouselSettings extends sap.ui.core.$ControlSettings {
4598
4744
  /**
4599
4745
  * Determines the orientation of the Carousel. Can be either "horizontal" or "vertical"
@@ -4679,6 +4825,11 @@ declare namespace sap {
4679
4825
  | `{${string}}`;
4680
4826
  }
4681
4827
 
4828
+ /**
4829
+ * Describes the settings that can be provided to the CheckBox constructor.
4830
+ *
4831
+ * @deprecated (since 1.38) - Instead, use the `sap.m.CheckBox` control.
4832
+ */
4682
4833
  interface $CheckBoxSettings extends sap.ui.core.$ControlSettings {
4683
4834
  /**
4684
4835
  * Contains the state of the control whether it is flagged with a check mark, or not
@@ -4757,9 +4908,19 @@ declare namespace sap {
4757
4908
  change?: (oEvent: CheckBox$ChangeEvent) => void;
4758
4909
  }
4759
4910
 
4911
+ /**
4912
+ * Describes the settings that can be provided to the ColorPicker constructor.
4913
+ *
4914
+ * @deprecated (since 1.38) - replaced by {@link sap.ui.unified.ColorPicker}
4915
+ */
4760
4916
  interface $ColorPickerSettings
4761
4917
  extends sap.ui.unified.$ColorPickerSettings {}
4762
4918
 
4919
+ /**
4920
+ * Describes the settings that can be provided to the ComboBox constructor.
4921
+ *
4922
+ * @deprecated (since 1.38) - replaced by {@link sap.m.ComboBox}
4923
+ */
4763
4924
  interface $ComboBoxSettings extends sap.ui.commons.$TextFieldSettings {
4764
4925
  /**
4765
4926
  * Defines the number of items that shall be displayed at once. If the overall number of items is higher
@@ -4818,6 +4979,11 @@ declare namespace sap {
4818
4979
  listBox?: sap.ui.commons.ListBox | string;
4819
4980
  }
4820
4981
 
4982
+ /**
4983
+ * Describes the settings that can be provided to the DatePicker constructor.
4984
+ *
4985
+ * @deprecated (since 1.38) - replaced by {@link sap.m.DatePicker}
4986
+ */
4821
4987
  interface $DatePickerSettings extends sap.ui.commons.$TextFieldSettings {
4822
4988
  /**
4823
4989
  * Defines the locale (language and country), e.g. "en-US", whose translations and Date formatters should
@@ -4833,6 +4999,11 @@ declare namespace sap {
4833
4999
  yyyymmdd?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
4834
5000
  }
4835
5001
 
5002
+ /**
5003
+ * Describes the settings that can be provided to the Dialog constructor.
5004
+ *
5005
+ * @deprecated (since 1.38) - Instead, use the `sap.m.Dialog` control.
5006
+ */
4836
5007
  interface $DialogSettings extends sap.ui.core.$ControlSettings {
4837
5008
  /**
4838
5009
  * Outer width of dialog window. When not set and not constrained by one of the width parameters (minWidth/maxWidth),
@@ -5023,6 +5194,11 @@ declare namespace sap {
5023
5194
  closed?: (oEvent: Dialog$ClosedEvent) => void;
5024
5195
  }
5025
5196
 
5197
+ /**
5198
+ * Describes the settings that can be provided to the DropdownBox constructor.
5199
+ *
5200
+ * @deprecated (since 1.38) - replaced by {@link sap.m.ComboBox}
5201
+ */
5026
5202
  interface $DropdownBoxSettings extends sap.ui.commons.$ComboBoxSettings {
5027
5203
  /**
5028
5204
  * Whether the DropdownBox's search help should be enabled.
@@ -5070,12 +5246,29 @@ declare namespace sap {
5070
5246
  searchHelp?: (oEvent: DropdownBox$SearchHelpEvent) => void;
5071
5247
  }
5072
5248
 
5249
+ /**
5250
+ * Describes the settings that can be provided to the FileUploader constructor.
5251
+ *
5252
+ * @deprecated (since 1.21.0) - Please use the control sap.ui.unified.FileUploader of the library sap.ui.unified
5253
+ * instead.
5254
+ */
5073
5255
  interface $FileUploaderSettings
5074
5256
  extends sap.ui.unified.$FileUploaderSettings {}
5075
5257
 
5258
+ /**
5259
+ * Describes the settings that can be provided to the FileUploaderParameter constructor.
5260
+ *
5261
+ * @deprecated (since 1.21.0) - Please use the element sap.ui.unified.FileUploaderParameter of the library
5262
+ * sap.ui.unified instead.
5263
+ */
5076
5264
  interface $FileUploaderParameterSettings
5077
5265
  extends sap.ui.unified.$FileUploaderParameterSettings {}
5078
5266
 
5267
+ /**
5268
+ * Describes the settings that can be provided to the FormattedTextView constructor.
5269
+ *
5270
+ * @deprecated (since 1.38) - Instead, use the `sap.ui.core.HTML` control.
5271
+ */
5079
5272
  interface $FormattedTextViewSettings
5080
5273
  extends sap.ui.core.$ControlSettings {
5081
5274
  /**
@@ -5101,6 +5294,11 @@ declare namespace sap {
5101
5294
  | `{${string}}`;
5102
5295
  }
5103
5296
 
5297
+ /**
5298
+ * Describes the settings that can be provided to the HorizontalDivider constructor.
5299
+ *
5300
+ * @deprecated (since 1.38)
5301
+ */
5104
5302
  interface $HorizontalDividerSettings
5105
5303
  extends sap.ui.core.$ControlSettings {
5106
5304
  /**
@@ -5128,6 +5326,11 @@ declare namespace sap {
5128
5326
  | `{${string}}`;
5129
5327
  }
5130
5328
 
5329
+ /**
5330
+ * Describes the settings that can be provided to the Image constructor.
5331
+ *
5332
+ * @deprecated (since 1.38) - replaced by {@link sap.m.Image}
5333
+ */
5131
5334
  interface $ImageSettings extends sap.ui.core.$ControlSettings {
5132
5335
  /**
5133
5336
  * Relative or absolute path to URL where the image file is stored.
@@ -5183,6 +5386,11 @@ declare namespace sap {
5183
5386
  press?: (oEvent: sap.ui.base.Event) => void;
5184
5387
  }
5185
5388
 
5389
+ /**
5390
+ * Describes the settings that can be provided to the ImageMap constructor.
5391
+ *
5392
+ * @deprecated (since 1.38) - There's not replacement because of the archaic design pattern.
5393
+ */
5186
5394
  interface $ImageMapSettings extends sap.ui.core.$ControlSettings {
5187
5395
  /**
5188
5396
  * Name for the image that serves as reference
@@ -5204,6 +5412,11 @@ declare namespace sap {
5204
5412
  press?: (oEvent: ImageMap$PressEvent) => void;
5205
5413
  }
5206
5414
 
5415
+ /**
5416
+ * Describes the settings that can be provided to the InPlaceEdit constructor.
5417
+ *
5418
+ * @deprecated (since 1.38) - replaced by {@link sap.m.Input}
5419
+ */
5207
5420
  interface $InPlaceEditSettings extends sap.ui.core.$ControlSettings {
5208
5421
  /**
5209
5422
  * Visualizes warnings or errors related to the InPlaceEdit. Possible values: Warning, Error, Success. If
@@ -5254,6 +5467,11 @@ declare namespace sap {
5254
5467
  liveChange?: (oEvent: InPlaceEdit$LiveChangeEvent) => void;
5255
5468
  }
5256
5469
 
5470
+ /**
5471
+ * Describes the settings that can be provided to the Label constructor.
5472
+ *
5473
+ * @deprecated (since 1.38) - Instead, use the `sap.m.Label` control.
5474
+ */
5257
5475
  interface $LabelSettings extends sap.ui.core.$ControlSettings {
5258
5476
  /**
5259
5477
  * Defines whether the labels are in bold format.
@@ -5341,6 +5559,11 @@ declare namespace sap {
5341
5559
  labelFor?: sap.ui.core.Control | string;
5342
5560
  }
5343
5561
 
5562
+ /**
5563
+ * Describes the settings that can be provided to the Link constructor.
5564
+ *
5565
+ * @deprecated (since 1.38) - Instead, use the `sap.m.Link` control.
5566
+ */
5344
5567
  interface $LinkSettings extends sap.ui.core.$ControlSettings {
5345
5568
  /**
5346
5569
  * Link text to be displayed.
@@ -5401,6 +5624,11 @@ declare namespace sap {
5401
5624
  press?: (oEvent: sap.ui.base.Event) => void;
5402
5625
  }
5403
5626
 
5627
+ /**
5628
+ * Describes the settings that can be provided to the ListBox constructor.
5629
+ *
5630
+ * @deprecated (since 1.38) - Instead, use the `sap.m.List` control.
5631
+ */
5404
5632
  interface $ListBoxSettings extends sap.ui.core.$ControlSettings {
5405
5633
  /**
5406
5634
  * Determines whether the ListBox is interactive or not. Can be used to disable interaction with mouse or
@@ -5547,8 +5775,18 @@ declare namespace sap {
5547
5775
  select?: (oEvent: ListBox$SelectEvent) => void;
5548
5776
  }
5549
5777
 
5778
+ /**
5779
+ * Describes the settings that can be provided to the Menu constructor.
5780
+ *
5781
+ * @deprecated (since 1.21.0) - replaced by {@link sap.ui.unified.Menu}
5782
+ */
5550
5783
  interface $MenuSettings extends sap.ui.unified.$MenuSettings {}
5551
5784
 
5785
+ /**
5786
+ * Describes the settings that can be provided to the MenuBar constructor.
5787
+ *
5788
+ * @deprecated (since 1.38) - Instead, use the `sap.m.OverflowToolbar` control.
5789
+ */
5552
5790
  interface $MenuBarSettings extends sap.ui.core.$ControlSettings {
5553
5791
  /**
5554
5792
  * When the MenuBar is not enabled, automatically all single menu items are also displayed as 'disabled'.
@@ -5584,6 +5822,11 @@ declare namespace sap {
5584
5822
  | `{${string}}`;
5585
5823
  }
5586
5824
 
5825
+ /**
5826
+ * Describes the settings that can be provided to the MenuButton constructor.
5827
+ *
5828
+ * @deprecated (since 1.38) - Instead, use the `sap.m.MenuButton` control.
5829
+ */
5587
5830
  interface $MenuButtonSettings extends sap.ui.commons.$ButtonSettings {
5588
5831
  /**
5589
5832
  * The position / edge (see sap.ui.core.Popup.Dock) of the button where the menu is docked. Default is 'begin
@@ -5608,14 +5851,36 @@ declare namespace sap {
5608
5851
  itemSelected?: (oEvent: MenuButton$ItemSelectedEvent) => void;
5609
5852
  }
5610
5853
 
5854
+ /**
5855
+ * Describes the settings that can be provided to the MenuItem constructor.
5856
+ *
5857
+ * @deprecated (since 1.21.0) - replaced by {@link sap.ui.unified.MenuItem}
5858
+ */
5611
5859
  interface $MenuItemSettings extends sap.ui.unified.$MenuItemSettings {}
5612
5860
 
5861
+ /**
5862
+ * Describes the settings that can be provided to the MenuItemBase constructor.
5863
+ *
5864
+ * @deprecated (since 1.21.0) - replaced by {@link sap.ui.unified.MenuItemBase}
5865
+ */
5613
5866
  interface $MenuItemBaseSettings
5614
5867
  extends sap.ui.unified.$MenuItemBaseSettings {}
5615
5868
 
5869
+ /**
5870
+ * Describes the settings that can be provided to the MenuTextFieldItem constructor.
5871
+ *
5872
+ * @deprecated (since 1.21.0) - Please use the control `sap.ui.unified.MenuTextFieldItem` of the library
5873
+ * `sap.ui.unified` instead.
5874
+ */
5616
5875
  interface $MenuTextFieldItemSettings
5617
5876
  extends sap.ui.unified.$MenuTextFieldItemSettings {}
5618
5877
 
5878
+ /**
5879
+ * Describes the settings that can be provided to the Message constructor.
5880
+ *
5881
+ * @deprecated (since 1.4.0) - A new messaging concept will be created in future. Therefore this control
5882
+ * might be removed in one of the next versions.
5883
+ */
5619
5884
  interface $MessageSettings extends sap.ui.core.$ControlSettings {
5620
5885
  /**
5621
5886
  * "Success", or "Warning", or "Error" messages. (Mandatory)
@@ -5643,6 +5908,11 @@ declare namespace sap {
5643
5908
  design?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
5644
5909
  }
5645
5910
 
5911
+ /**
5912
+ * Describes the settings that can be provided to the MessageBar constructor.
5913
+ *
5914
+ * @deprecated (since 1.4.0) - Instead, use the `sap.m.MessagePopover` control.
5915
+ */
5646
5916
  interface $MessageBarSettings extends sap.ui.core.$ControlSettings {
5647
5917
  /**
5648
5918
  * Element ID upon which the MessageBar will be initially positioned.
@@ -5686,6 +5956,12 @@ declare namespace sap {
5686
5956
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
5687
5957
  }
5688
5958
 
5959
+ /**
5960
+ * Describes the settings that can be provided to the MessageList constructor.
5961
+ *
5962
+ * @deprecated (since 1.4.0) - A new messaging concept will be created in future. Therefore this control
5963
+ * might be removed in one of the next versions.
5964
+ */
5689
5965
  interface $MessageListSettings extends sap.ui.core.$ControlSettings {
5690
5966
  /**
5691
5967
  * Specifies whether or not the MessageList is visible. Invisible controls are not rendered.
@@ -5706,6 +5982,11 @@ declare namespace sap {
5706
5982
  maxListed?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
5707
5983
  }
5708
5984
 
5985
+ /**
5986
+ * Describes the settings that can be provided to the MessageToast constructor.
5987
+ *
5988
+ * @deprecated (since 1.4.0) - Instead, use the `sap.m.MessageToast` control.
5989
+ */
5709
5990
  interface $MessageToastSettings extends sap.ui.core.$ControlSettings {
5710
5991
  /**
5711
5992
  * ID of the anchor on top of which the MessageToast is to render.
@@ -5718,6 +5999,11 @@ declare namespace sap {
5718
5999
  next?: (oEvent: sap.ui.base.Event) => void;
5719
6000
  }
5720
6001
 
6002
+ /**
6003
+ * Describes the settings that can be provided to the Paginator constructor.
6004
+ *
6005
+ * @deprecated (since 1.38)
6006
+ */
5721
6007
  interface $PaginatorSettings extends sap.ui.core.$ControlSettings {
5722
6008
  /**
5723
6009
  * Represents the current page (first page has index 1, not 0, to match the visual number)
@@ -5741,6 +6027,11 @@ declare namespace sap {
5741
6027
  page?: (oEvent: Paginator$PageEvent) => void;
5742
6028
  }
5743
6029
 
6030
+ /**
6031
+ * Describes the settings that can be provided to the Panel constructor.
6032
+ *
6033
+ * @deprecated (since 1.38) - Instead, use the `sap.m.Panel` control.
6034
+ */
5744
6035
  interface $PanelSettings extends sap.ui.core.$ControlSettings {
5745
6036
  /**
5746
6037
  * Determines the width of the Panel in CSS size.
@@ -5857,9 +6148,19 @@ declare namespace sap {
5857
6148
  | `{${string}}`;
5858
6149
  }
5859
6150
 
6151
+ /**
6152
+ * Describes the settings that can be provided to the PasswordField constructor.
6153
+ *
6154
+ * @deprecated (since 1.38) - Instead, use the `sap.m.Input` control.
6155
+ */
5860
6156
  interface $PasswordFieldSettings
5861
6157
  extends sap.ui.commons.$TextFieldSettings {}
5862
6158
 
6159
+ /**
6160
+ * Describes the settings that can be provided to the ProgressIndicator constructor.
6161
+ *
6162
+ * @deprecated (since 1.38) - Instead, use the `sap.m.ProgressIndicator` control.
6163
+ */
5863
6164
  interface $ProgressIndicatorSettings
5864
6165
  extends sap.ui.core.$ControlSettings {
5865
6166
  /**
@@ -5911,6 +6212,11 @@ declare namespace sap {
5911
6212
  | `{${string}}`;
5912
6213
  }
5913
6214
 
6215
+ /**
6216
+ * Describes the settings that can be provided to the RadioButton constructor.
6217
+ *
6218
+ * @deprecated (since 1.38) - Instead, use the `sap.m.RadioButton` control.
6219
+ */
5914
6220
  interface $RadioButtonSettings extends sap.ui.core.$ControlSettings {
5915
6221
  /**
5916
6222
  * Defines the text displayed next to the RadioButton.
@@ -5995,6 +6301,11 @@ declare namespace sap {
5995
6301
  select?: (oEvent: sap.ui.base.Event) => void;
5996
6302
  }
5997
6303
 
6304
+ /**
6305
+ * Describes the settings that can be provided to the RadioButtonGroup constructor.
6306
+ *
6307
+ * @deprecated (since 1.38) - Instead, use the `sap.m.RadioButtonGroup` control.
6308
+ */
5998
6309
  interface $RadioButtonGroupSettings extends sap.ui.core.$ControlSettings {
5999
6310
  /**
6000
6311
  * Defines the width of the RadioButtonGroup.
@@ -6078,6 +6389,11 @@ declare namespace sap {
6078
6389
  select?: (oEvent: RadioButtonGroup$SelectEvent) => void;
6079
6390
  }
6080
6391
 
6392
+ /**
6393
+ * Describes the settings that can be provided to the RangeSlider constructor.
6394
+ *
6395
+ * @deprecated (since 1.38) - replaced by {@link sap.m.RangeSlider}
6396
+ */
6081
6397
  interface $RangeSliderSettings extends sap.ui.commons.$SliderSettings {
6082
6398
  /**
6083
6399
  * Current second value of the slider. (Position of the second grip.)
@@ -6091,6 +6407,11 @@ declare namespace sap {
6091
6407
  | `{${string}}`;
6092
6408
  }
6093
6409
 
6410
+ /**
6411
+ * Describes the settings that can be provided to the RatingIndicator constructor.
6412
+ *
6413
+ * @deprecated (since 1.38) - Instead, use the `sap.m.RatingIndicator` control.
6414
+ */
6094
6415
  interface $RatingIndicatorSettings extends sap.ui.core.$ControlSettings {
6095
6416
  /**
6096
6417
  * Determines if the rating symbols can be edited.
@@ -6179,6 +6500,11 @@ declare namespace sap {
6179
6500
  change?: (oEvent: RatingIndicator$ChangeEvent) => void;
6180
6501
  }
6181
6502
 
6503
+ /**
6504
+ * Describes the settings that can be provided to the ResponsiveContainer constructor.
6505
+ *
6506
+ * @deprecated (since 1.38) - Use a container by choice from the {@link sap.m} library, instead.
6507
+ */
6182
6508
  interface $ResponsiveContainerSettings
6183
6509
  extends sap.ui.core.$ControlSettings {
6184
6510
  /**
@@ -6217,6 +6543,11 @@ declare namespace sap {
6217
6543
  rangeSwitch?: (oEvent: ResponsiveContainer$RangeSwitchEvent) => void;
6218
6544
  }
6219
6545
 
6546
+ /**
6547
+ * Describes the settings that can be provided to the ResponsiveContainerRange constructor.
6548
+ *
6549
+ * @deprecated (since 1.38)
6550
+ */
6220
6551
  interface $ResponsiveContainerRangeSettings
6221
6552
  extends sap.ui.core.$ElementSettings {
6222
6553
  /**
@@ -6246,6 +6577,12 @@ declare namespace sap {
6246
6577
  content?: sap.ui.core.Control | string;
6247
6578
  }
6248
6579
 
6580
+ /**
6581
+ * Describes the settings that can be provided to the RichTooltip constructor.
6582
+ *
6583
+ * @deprecated (since 1.38) - Tf you want to achieve a similar behavior, use a `sap.m.Popover` control and
6584
+ * open it next to your control.
6585
+ */
6249
6586
  interface $RichTooltipSettings extends sap.ui.core.$TooltipBaseSettings {
6250
6587
  /**
6251
6588
  * Tool tip title to be displayed in the header.
@@ -6275,6 +6612,11 @@ declare namespace sap {
6275
6612
  imageAltText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
6276
6613
  }
6277
6614
 
6615
+ /**
6616
+ * Describes the settings that can be provided to the RoadMap constructor.
6617
+ *
6618
+ * @deprecated (since 1.38) - Instead, use the `sap.m.Wizard` control.
6619
+ */
6278
6620
  interface $RoadMapSettings extends sap.ui.core.$ControlSettings {
6279
6621
  /**
6280
6622
  * Total number of steps to be displayed at once
@@ -6324,6 +6666,11 @@ declare namespace sap {
6324
6666
  stepExpanded?: (oEvent: RoadMap$StepExpandedEvent) => void;
6325
6667
  }
6326
6668
 
6669
+ /**
6670
+ * Describes the settings that can be provided to the RoadMapStep constructor.
6671
+ *
6672
+ * @deprecated (since 1.38) - Instead, use the `sap.m.Wizard` control.
6673
+ */
6327
6674
  interface $RoadMapStepSettings extends sap.ui.core.$ElementSettings {
6328
6675
  /**
6329
6676
  * Label of the step
@@ -6371,6 +6718,11 @@ declare namespace sap {
6371
6718
  | `{${string}}`;
6372
6719
  }
6373
6720
 
6721
+ /**
6722
+ * Describes the settings that can be provided to the RowRepeater constructor.
6723
+ *
6724
+ * @deprecated (since 1.38) - Instead, use the `sap.ui.table.Table` control.
6725
+ */
6374
6726
  interface $RowRepeaterSettings extends sap.ui.core.$ControlSettings {
6375
6727
  /**
6376
6728
  * Number of rows displayed.
@@ -6480,6 +6832,11 @@ declare namespace sap {
6480
6832
  resize?: (oEvent: RowRepeater$ResizeEvent) => void;
6481
6833
  }
6482
6834
 
6835
+ /**
6836
+ * Describes the settings that can be provided to the RowRepeaterFilter constructor.
6837
+ *
6838
+ * @deprecated (since 1.38) - Instead, use the `sap.ui.table.Table` control.
6839
+ */
6483
6840
  interface $RowRepeaterFilterSettings
6484
6841
  extends sap.ui.core.$ElementSettings {
6485
6842
  /**
@@ -6501,6 +6858,11 @@ declare namespace sap {
6501
6858
  | `{${string}}`;
6502
6859
  }
6503
6860
 
6861
+ /**
6862
+ * Describes the settings that can be provided to the RowRepeaterSorter constructor.
6863
+ *
6864
+ * @deprecated (since 1.38) - Instead, use the `sap.ui.table.Table` control.
6865
+ */
6504
6866
  interface $RowRepeaterSorterSettings
6505
6867
  extends sap.ui.core.$ElementSettings {
6506
6868
  /**
@@ -6522,6 +6884,11 @@ declare namespace sap {
6522
6884
  | `{${string}}`;
6523
6885
  }
6524
6886
 
6887
+ /**
6888
+ * Describes the settings that can be provided to the SearchField constructor.
6889
+ *
6890
+ * @deprecated (since 1.38) - Instead, use the `sap.m.SearchField` control.
6891
+ */
6525
6892
  interface $SearchFieldSettings extends sap.ui.core.$ControlSettings {
6526
6893
  /**
6527
6894
  * Defines whether a pop up list shall be provided for suggestions
@@ -6698,9 +7065,19 @@ declare namespace sap {
6698
7065
  suggest?: (oEvent: SearchField$SuggestEvent) => void;
6699
7066
  }
6700
7067
 
7068
+ /**
7069
+ * Describes the settings that can be provided to the SearchProvider constructor.
7070
+ *
7071
+ * @deprecated (since 1.6.0) - Replaced by sap.ui.core.search.OpenSearchProvider
7072
+ */
6701
7073
  interface $SearchProviderSettings
6702
7074
  extends sap.ui.core.search.$OpenSearchProviderSettings {}
6703
7075
 
7076
+ /**
7077
+ * Describes the settings that can be provided to the SegmentedButton constructor.
7078
+ *
7079
+ * @deprecated (since 1.38) - replaced by {@link sap.m.SegmentedButton}
7080
+ */
6704
7081
  interface $SegmentedButtonSettings extends sap.ui.core.$ControlSettings {
6705
7082
  /**
6706
7083
  * enabled
@@ -6730,6 +7107,11 @@ declare namespace sap {
6730
7107
  select?: (oEvent: SegmentedButton$SelectEvent) => void;
6731
7108
  }
6732
7109
 
7110
+ /**
7111
+ * Describes the settings that can be provided to the Slider constructor.
7112
+ *
7113
+ * @deprecated (since 1.38) - replaced by {@link sap.m.Slider}
7114
+ */
6733
7115
  interface $SliderSettings extends sap.ui.core.$ControlSettings {
6734
7116
  /**
6735
7117
  * Width of the horizontal slider.
@@ -6863,6 +7245,11 @@ declare namespace sap {
6863
7245
  liveChange?: (oEvent: Slider$LiveChangeEvent) => void;
6864
7246
  }
6865
7247
 
7248
+ /**
7249
+ * Describes the settings that can be provided to the Splitter constructor.
7250
+ *
7251
+ * @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Splitter` control.
7252
+ */
6866
7253
  interface $SplitterSettings extends sap.ui.core.$ControlSettings {
6867
7254
  /**
6868
7255
  * The splitter can have horizontal or vertical orientation.
@@ -6951,6 +7338,11 @@ declare namespace sap {
6951
7338
  | `{${string}}`;
6952
7339
  }
6953
7340
 
7341
+ /**
7342
+ * Describes the settings that can be provided to the Tab constructor.
7343
+ *
7344
+ * @deprecated (since 1.38) - Instead, use the `sap.m.TabContainer` control.
7345
+ */
6954
7346
  interface $TabSettings extends sap.ui.commons.$PanelSettings {
6955
7347
  /**
6956
7348
  * Specifies the vertical scrolling.
@@ -6988,6 +7380,11 @@ declare namespace sap {
6988
7380
  | `{${string}}`;
6989
7381
  }
6990
7382
 
7383
+ /**
7384
+ * Describes the settings that can be provided to the TabStrip constructor.
7385
+ *
7386
+ * @deprecated (since 1.38) - Instead, use the `sap.m.TabContainer` control.
7387
+ */
6991
7388
  interface $TabStripSettings extends sap.ui.core.$ControlSettings {
6992
7389
  /**
6993
7390
  * Specifies the height of the tab bar and content area.
@@ -7041,6 +7438,11 @@ declare namespace sap {
7041
7438
  close?: (oEvent: TabStrip$CloseEvent) => void;
7042
7439
  }
7043
7440
 
7441
+ /**
7442
+ * Describes the settings that can be provided to the TextArea constructor.
7443
+ *
7444
+ * @deprecated (since 1.38) - Instead, use the `sap.m.TextArea` control.
7445
+ */
7044
7446
  interface $TextAreaSettings extends sap.ui.commons.$TextFieldSettings {
7045
7447
  /**
7046
7448
  * Height of text field. When it is set (CSS-size such as % or px), this is the exact size.
@@ -7096,6 +7498,11 @@ declare namespace sap {
7096
7498
  labeledBy?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
7097
7499
  }
7098
7500
 
7501
+ /**
7502
+ * Describes the settings that can be provided to the TextField constructor.
7503
+ *
7504
+ * @deprecated (since 1.38) - replaced by {@link sap.m.Input}
7505
+ */
7099
7506
  interface $TextFieldSettings extends sap.ui.core.$ControlSettings {
7100
7507
  /**
7101
7508
  * Text inside the `TextField`
@@ -7234,6 +7641,11 @@ declare namespace sap {
7234
7641
  liveChange?: (oEvent: TextField$LiveChangeEvent) => void;
7235
7642
  }
7236
7643
 
7644
+ /**
7645
+ * Describes the settings that can be provided to the TextView constructor.
7646
+ *
7647
+ * @deprecated (since 1.38)
7648
+ */
7237
7649
  interface $TextViewSettings extends sap.ui.core.$ControlSettings {
7238
7650
  /**
7239
7651
  * Text to be displayed.
@@ -7322,8 +7734,18 @@ declare namespace sap {
7322
7734
  ariaLabelledBy?: Array<sap.ui.core.Control | string>;
7323
7735
  }
7324
7736
 
7737
+ /**
7738
+ * Describes the settings that can be provided to the Title constructor.
7739
+ *
7740
+ * @deprecated (since 1.16.0) - moved to sap.ui.core library. Please use this one.
7741
+ */
7325
7742
  interface $TitleSettings extends sap.ui.core.$TitleSettings {}
7326
7743
 
7744
+ /**
7745
+ * Describes the settings that can be provided to the ToggleButton constructor.
7746
+ *
7747
+ * @deprecated (since 1.38) - replaced by {@link sap.m.ToggleButton}
7748
+ */
7327
7749
  interface $ToggleButtonSettings extends sap.ui.commons.$ButtonSettings {
7328
7750
  /**
7329
7751
  * The property is “true” when the control is toggled. The default state of this property is "false".
@@ -7334,6 +7756,11 @@ declare namespace sap {
7334
7756
  | `{${string}}`;
7335
7757
  }
7336
7758
 
7759
+ /**
7760
+ * Describes the settings that can be provided to the Toolbar constructor.
7761
+ *
7762
+ * @deprecated (since 1.38) - replaced by {@link sap.m.Toolbar}
7763
+ */
7337
7764
  interface $ToolbarSettings extends sap.ui.core.$ControlSettings {
7338
7765
  /**
7339
7766
  * When there is not enough space for the toolbar to display all items, the rightmost items are overflowing
@@ -7380,6 +7807,11 @@ declare namespace sap {
7380
7807
  | `{${string}}`;
7381
7808
  }
7382
7809
 
7810
+ /**
7811
+ * Describes the settings that can be provided to the ToolbarSeparator constructor.
7812
+ *
7813
+ * @deprecated (since 1.38) - Instead, use the `sap.m.Toolbar` control.
7814
+ */
7383
7815
  interface $ToolbarSeparatorSettings extends sap.ui.core.$ElementSettings {
7384
7816
  /**
7385
7817
  * When set to false, there is no visual indication of separation by a vertical line but by a wider space.
@@ -7398,6 +7830,11 @@ declare namespace sap {
7398
7830
  | `{${string}}`;
7399
7831
  }
7400
7832
 
7833
+ /**
7834
+ * Describes the settings that can be provided to the Tree constructor.
7835
+ *
7836
+ * @deprecated (since 1.38) - replaced by {@link sap.m.Tree}
7837
+ */
7401
7838
  interface $TreeSettings extends sap.ui.core.$ControlSettings {
7402
7839
  /**
7403
7840
  * Tree title
@@ -7481,6 +7918,11 @@ declare namespace sap {
7481
7918
  selectionChange?: (oEvent: Tree$SelectionChangeEvent) => void;
7482
7919
  }
7483
7920
 
7921
+ /**
7922
+ * Describes the settings that can be provided to the TreeNode constructor.
7923
+ *
7924
+ * @deprecated (since 1.38) - replaced by {@link sap.m.Tree}
7925
+ */
7484
7926
  interface $TreeNodeSettings extends sap.ui.core.$ElementSettings {
7485
7927
  /**
7486
7928
  * Node text
@@ -7557,6 +7999,11 @@ declare namespace sap {
7557
7999
  selected?: (oEvent: sap.ui.base.Event) => void;
7558
8000
  }
7559
8001
 
8002
+ /**
8003
+ * Describes the settings that can be provided to the TriStateCheckBox constructor.
8004
+ *
8005
+ * @deprecated (since 1.38)
8006
+ */
7560
8007
  interface $TriStateCheckBoxSettings extends sap.ui.core.$ControlSettings {
7561
8008
  /**
7562
8009
  * Defines the states of the checkbox
@@ -7619,6 +8066,11 @@ declare namespace sap {
7619
8066
  change?: (oEvent: TriStateCheckBox$ChangeEvent) => void;
7620
8067
  }
7621
8068
 
8069
+ /**
8070
+ * Describes the settings that can be provided to the ValueHelpField constructor.
8071
+ *
8072
+ * @deprecated (since 1.38) - Instead, use the `sap.m.Input` control.
8073
+ */
7622
8074
  interface $ValueHelpFieldSettings
7623
8075
  extends sap.ui.commons.$TextFieldSettings {
7624
8076
  /**
@@ -7654,6 +8106,9 @@ declare namespace sap {
7654
8106
  valueHelpRequest?: (oEvent: sap.ui.base.Event) => void;
7655
8107
  }
7656
8108
 
8109
+ /**
8110
+ * Parameters of the Accordion#sectionClose event.
8111
+ */
7657
8112
  interface Accordion$SectionCloseEventParameters {
7658
8113
  /**
7659
8114
  * ID of the closed section
@@ -7661,6 +8116,9 @@ declare namespace sap {
7661
8116
  closeSectionId?: string;
7662
8117
  }
7663
8118
 
8119
+ /**
8120
+ * Parameters of the Accordion#sectionOpen event.
8121
+ */
7664
8122
  interface Accordion$SectionOpenEventParameters {
7665
8123
  /**
7666
8124
  * ID of the opened section
@@ -7673,6 +8131,9 @@ declare namespace sap {
7673
8131
  closeSectionIds?: string[];
7674
8132
  }
7675
8133
 
8134
+ /**
8135
+ * Parameters of the Accordion#sectionsReorder event.
8136
+ */
7676
8137
  interface Accordion$SectionsReorderEventParameters {
7677
8138
  /**
7678
8139
  * ID of the moved section
@@ -7685,6 +8146,9 @@ declare namespace sap {
7685
8146
  newIndex?: int;
7686
8147
  }
7687
8148
 
8149
+ /**
8150
+ * Parameters of the AccordionSection#scroll event.
8151
+ */
7688
8152
  interface AccordionSection$ScrollEventParameters {
7689
8153
  /**
7690
8154
  * Horizontal scroll position
@@ -7697,8 +8161,14 @@ declare namespace sap {
7697
8161
  top?: int;
7698
8162
  }
7699
8163
 
8164
+ /**
8165
+ * Parameters of the ApplicationHeader#logoff event.
8166
+ */
7700
8167
  interface ApplicationHeader$LogoffEventParameters {}
7701
8168
 
8169
+ /**
8170
+ * Parameters of the AutoComplete#suggest event.
8171
+ */
7702
8172
  interface AutoComplete$SuggestEventParameters {
7703
8173
  /**
7704
8174
  * The current value which was typed in.
@@ -7706,8 +8176,14 @@ declare namespace sap {
7706
8176
  suggestValue?: string;
7707
8177
  }
7708
8178
 
8179
+ /**
8180
+ * Parameters of the Button#press event.
8181
+ */
7709
8182
  interface Button$PressEventParameters {}
7710
8183
 
8184
+ /**
8185
+ * Parameters of the CalloutBase#beforeOpen event.
8186
+ */
7711
8187
  interface CalloutBase$BeforeOpenEventParameters {
7712
8188
  /**
7713
8189
  * Parent control that has this Callout as a tooltip
@@ -7715,8 +8191,14 @@ declare namespace sap {
7715
8191
  parent?: sap.ui.core.Control;
7716
8192
  }
7717
8193
 
8194
+ /**
8195
+ * Parameters of the CalloutBase#close event.
8196
+ */
7718
8197
  interface CalloutBase$CloseEventParameters {}
7719
8198
 
8199
+ /**
8200
+ * Parameters of the CalloutBase#open event.
8201
+ */
7720
8202
  interface CalloutBase$OpenEventParameters {
7721
8203
  /**
7722
8204
  * Parent control that has this Callout as a tooltip
@@ -7724,8 +8206,14 @@ declare namespace sap {
7724
8206
  parent?: sap.ui.core.Control;
7725
8207
  }
7726
8208
 
8209
+ /**
8210
+ * Parameters of the CalloutBase#opened event.
8211
+ */
7727
8212
  interface CalloutBase$OpenedEventParameters {}
7728
8213
 
8214
+ /**
8215
+ * Parameters of the CheckBox#change event.
8216
+ */
7729
8217
  interface CheckBox$ChangeEventParameters {
7730
8218
  /**
7731
8219
  * Checks whether the box is flagged or not flagged.
@@ -7733,6 +8221,9 @@ declare namespace sap {
7733
8221
  checked?: boolean;
7734
8222
  }
7735
8223
 
8224
+ /**
8225
+ * Parameters of the ComboBox#change event.
8226
+ */
7736
8227
  interface ComboBox$ChangeEventParameters
7737
8228
  extends sap.ui.commons.TextField$ChangeEventParameters {
7738
8229
  /**
@@ -7741,6 +8232,9 @@ declare namespace sap {
7741
8232
  selectedItem?: sap.ui.core.ListItem;
7742
8233
  }
7743
8234
 
8235
+ /**
8236
+ * Parameters of the Dialog#closed event.
8237
+ */
7744
8238
  interface Dialog$ClosedEventParameters {
7745
8239
  /**
7746
8240
  * The width of the dialog when closed
@@ -7763,6 +8257,9 @@ declare namespace sap {
7763
8257
  left?: int;
7764
8258
  }
7765
8259
 
8260
+ /**
8261
+ * Parameters of the DropdownBox#searchHelp event.
8262
+ */
7766
8263
  interface DropdownBox$SearchHelpEventParameters {
7767
8264
  /**
7768
8265
  * The current value of the DropdownBox.
@@ -7770,8 +8267,14 @@ declare namespace sap {
7770
8267
  value?: string;
7771
8268
  }
7772
8269
 
8270
+ /**
8271
+ * Parameters of the Image#press event.
8272
+ */
7773
8273
  interface Image$PressEventParameters {}
7774
8274
 
8275
+ /**
8276
+ * Parameters of the ImageMap#press event.
8277
+ */
7775
8278
  interface ImageMap$PressEventParameters {
7776
8279
  /**
7777
8280
  * Id of clicked Area.
@@ -7779,6 +8282,9 @@ declare namespace sap {
7779
8282
  areaId?: string;
7780
8283
  }
7781
8284
 
8285
+ /**
8286
+ * Parameters of the InPlaceEdit#change event.
8287
+ */
7782
8288
  interface InPlaceEdit$ChangeEventParameters {
7783
8289
  /**
7784
8290
  * The new / changed value of the InPlaceEdit.
@@ -7786,6 +8292,9 @@ declare namespace sap {
7786
8292
  newValue?: string;
7787
8293
  }
7788
8294
 
8295
+ /**
8296
+ * Parameters of the InPlaceEdit#liveChange event.
8297
+ */
7789
8298
  interface InPlaceEdit$LiveChangeEventParameters {
7790
8299
  /**
7791
8300
  * Current value of the Textfield.
@@ -7793,8 +8302,14 @@ declare namespace sap {
7793
8302
  liveValue?: string;
7794
8303
  }
7795
8304
 
8305
+ /**
8306
+ * Parameters of the Link#press event.
8307
+ */
7796
8308
  interface Link$PressEventParameters {}
7797
8309
 
8310
+ /**
8311
+ * Parameters of the ListBox#select event.
8312
+ */
7798
8313
  interface ListBox$SelectEventParameters {
7799
8314
  /**
7800
8315
  * ID of the ListBox which triggered the event.
@@ -7820,6 +8335,9 @@ declare namespace sap {
7820
8335
  selectedIndices?: int[];
7821
8336
  }
7822
8337
 
8338
+ /**
8339
+ * Parameters of the MenuButton#itemSelected event.
8340
+ */
7823
8341
  interface MenuButton$ItemSelectedEventParameters {
7824
8342
  /**
7825
8343
  * The ID of the selected item
@@ -7832,6 +8350,9 @@ declare namespace sap {
7832
8350
  item?: sap.ui.unified.MenuItemBase;
7833
8351
  }
7834
8352
 
8353
+ /**
8354
+ * Parameters of the MenuButton#press event.
8355
+ */
7835
8356
  interface MenuButton$PressEventParameters
7836
8357
  extends sap.ui.commons.Button$PressEventParameters {
7837
8358
  /**
@@ -7845,8 +8366,14 @@ declare namespace sap {
7845
8366
  item?: sap.ui.commons.MenuItemBase;
7846
8367
  }
7847
8368
 
8369
+ /**
8370
+ * Parameters of the MessageToast#next event.
8371
+ */
7848
8372
  interface MessageToast$NextEventParameters {}
7849
8373
 
8374
+ /**
8375
+ * Parameters of the Paginator#page event.
8376
+ */
7850
8377
  interface Paginator$PageEventParameters {
7851
8378
  /**
7852
8379
  * The page which is the current one before the page event is fired (and another page is displayed)
@@ -7868,8 +8395,14 @@ declare namespace sap {
7868
8395
  type?: sap.ui.commons.PaginatorEvent;
7869
8396
  }
7870
8397
 
8398
+ /**
8399
+ * Parameters of the RadioButton#select event.
8400
+ */
7871
8401
  interface RadioButton$SelectEventParameters {}
7872
8402
 
8403
+ /**
8404
+ * Parameters of the RadioButtonGroup#select event.
8405
+ */
7873
8406
  interface RadioButtonGroup$SelectEventParameters {
7874
8407
  /**
7875
8408
  * Index of the selected RadioButton.
@@ -7877,6 +8410,9 @@ declare namespace sap {
7877
8410
  selectedIndex?: int;
7878
8411
  }
7879
8412
 
8413
+ /**
8414
+ * Parameters of the RatingIndicator#change event.
8415
+ */
7880
8416
  interface RatingIndicator$ChangeEventParameters {
7881
8417
  /**
7882
8418
  * The value of the user rating
@@ -7884,6 +8420,9 @@ declare namespace sap {
7884
8420
  value?: int;
7885
8421
  }
7886
8422
 
8423
+ /**
8424
+ * Parameters of the ResponsiveContainer#rangeSwitch event.
8425
+ */
7887
8426
  interface ResponsiveContainer$RangeSwitchEventParameters {
7888
8427
  /**
7889
8428
  * The current range
@@ -7891,6 +8430,9 @@ declare namespace sap {
7891
8430
  currentRange?: sap.ui.commons.ResponsiveContainerRange;
7892
8431
  }
7893
8432
 
8433
+ /**
8434
+ * Parameters of the RoadMap#stepExpanded event.
8435
+ */
7894
8436
  interface RoadMap$StepExpandedEventParameters {
7895
8437
  /**
7896
8438
  * ID of the expanded/collapsed step
@@ -7898,6 +8440,9 @@ declare namespace sap {
7898
8440
  stepId?: string;
7899
8441
  }
7900
8442
 
8443
+ /**
8444
+ * Parameters of the RoadMap#stepSelected event.
8445
+ */
7901
8446
  interface RoadMap$StepSelectedEventParameters {
7902
8447
  /**
7903
8448
  * ID of the selected step
@@ -7905,6 +8450,9 @@ declare namespace sap {
7905
8450
  stepId?: string;
7906
8451
  }
7907
8452
 
8453
+ /**
8454
+ * Parameters of the RowRepeater#filter event.
8455
+ */
7908
8456
  interface RowRepeater$FilterEventParameters {
7909
8457
  /**
7910
8458
  * The ID of the filter that has just been applied.
@@ -7912,6 +8460,9 @@ declare namespace sap {
7912
8460
  filterId?: string;
7913
8461
  }
7914
8462
 
8463
+ /**
8464
+ * Parameters of the RowRepeater#page event.
8465
+ */
7915
8466
  interface RowRepeater$PageEventParameters {
7916
8467
  /**
7917
8468
  * The value of the currentPage property after the change.
@@ -7924,6 +8475,9 @@ declare namespace sap {
7924
8475
  previousPage?: int;
7925
8476
  }
7926
8477
 
8478
+ /**
8479
+ * Parameters of the RowRepeater#resize event.
8480
+ */
7927
8481
  interface RowRepeater$ResizeEventParameters {
7928
8482
  /**
7929
8483
  * The value of the numberOfRows property after the change.
@@ -7936,6 +8490,9 @@ declare namespace sap {
7936
8490
  previousNumberOfRows?: int;
7937
8491
  }
7938
8492
 
8493
+ /**
8494
+ * Parameters of the RowRepeater#sort event.
8495
+ */
7939
8496
  interface RowRepeater$SortEventParameters {
7940
8497
  /**
7941
8498
  * The ID of the sorter that has just been applied.
@@ -7943,6 +8500,9 @@ declare namespace sap {
7943
8500
  sorterId?: string;
7944
8501
  }
7945
8502
 
8503
+ /**
8504
+ * Parameters of the SearchField#search event.
8505
+ */
7946
8506
  interface SearchField$SearchEventParameters {
7947
8507
  /**
7948
8508
  * The search query
@@ -7950,6 +8510,9 @@ declare namespace sap {
7950
8510
  query?: string;
7951
8511
  }
7952
8512
 
8513
+ /**
8514
+ * Parameters of the SearchField#suggest event.
8515
+ */
7953
8516
  interface SearchField$SuggestEventParameters {
7954
8517
  /**
7955
8518
  * The value for which suggestions are required.
@@ -7957,6 +8520,9 @@ declare namespace sap {
7957
8520
  value?: string;
7958
8521
  }
7959
8522
 
8523
+ /**
8524
+ * Parameters of the SegmentedButton#select event.
8525
+ */
7960
8526
  interface SegmentedButton$SelectEventParameters {
7961
8527
  /**
7962
8528
  * Id of selected ToggleButton
@@ -7964,6 +8530,9 @@ declare namespace sap {
7964
8530
  selectedButtonId?: string;
7965
8531
  }
7966
8532
 
8533
+ /**
8534
+ * Parameters of the Slider#change event.
8535
+ */
7967
8536
  interface Slider$ChangeEventParameters {
7968
8537
  /**
7969
8538
  * Current value of the slider after a change.
@@ -7971,6 +8540,9 @@ declare namespace sap {
7971
8540
  value?: float;
7972
8541
  }
7973
8542
 
8543
+ /**
8544
+ * Parameters of the Slider#liveChange event.
8545
+ */
7974
8546
  interface Slider$LiveChangeEventParameters {
7975
8547
  /**
7976
8548
  * Current value of the slider after a change.
@@ -7978,6 +8550,9 @@ declare namespace sap {
7978
8550
  value?: float;
7979
8551
  }
7980
8552
 
8553
+ /**
8554
+ * Parameters of the TabStrip#close event.
8555
+ */
7981
8556
  interface TabStrip$CloseEventParameters {
7982
8557
  /**
7983
8558
  * The index of the closed tab.
@@ -7985,6 +8560,9 @@ declare namespace sap {
7985
8560
  index?: int;
7986
8561
  }
7987
8562
 
8563
+ /**
8564
+ * Parameters of the TabStrip#select event.
8565
+ */
7988
8566
  interface TabStrip$SelectEventParameters {
7989
8567
  /**
7990
8568
  * The index of the selected tab.
@@ -7992,6 +8570,9 @@ declare namespace sap {
7992
8570
  index?: int;
7993
8571
  }
7994
8572
 
8573
+ /**
8574
+ * Parameters of the TextField#change event.
8575
+ */
7995
8576
  interface TextField$ChangeEventParameters {
7996
8577
  /**
7997
8578
  * The new / changed value of the `TextField`.
@@ -7999,6 +8580,9 @@ declare namespace sap {
7999
8580
  newValue?: string;
8000
8581
  }
8001
8582
 
8583
+ /**
8584
+ * Parameters of the TextField#liveChange event.
8585
+ */
8002
8586
  interface TextField$LiveChangeEventParameters {
8003
8587
  /**
8004
8588
  * Current visible value of the `TextField`.
@@ -8006,6 +8590,9 @@ declare namespace sap {
8006
8590
  liveValue?: string;
8007
8591
  }
8008
8592
 
8593
+ /**
8594
+ * Parameters of the Tree#select event.
8595
+ */
8009
8596
  interface Tree$SelectEventParameters {
8010
8597
  /**
8011
8598
  * The node which has been selected.
@@ -8018,6 +8605,9 @@ declare namespace sap {
8018
8605
  nodeContext?: object;
8019
8606
  }
8020
8607
 
8608
+ /**
8609
+ * Parameters of the Tree#selectionChange event.
8610
+ */
8021
8611
  interface Tree$SelectionChangeEventParameters {
8022
8612
  /**
8023
8613
  * The nodes which has been selected.
@@ -8030,8 +8620,14 @@ declare namespace sap {
8030
8620
  nodeContexts?: object[];
8031
8621
  }
8032
8622
 
8623
+ /**
8624
+ * Parameters of the TreeNode#selected event.
8625
+ */
8033
8626
  interface TreeNode$SelectedEventParameters {}
8034
8627
 
8628
+ /**
8629
+ * Parameters of the TreeNode#toggleOpenState event.
8630
+ */
8035
8631
  interface TreeNode$ToggleOpenStateEventParameters {
8036
8632
  /**
8037
8633
  * Node has been opened if true
@@ -8039,6 +8635,9 @@ declare namespace sap {
8039
8635
  opened?: boolean;
8040
8636
  }
8041
8637
 
8638
+ /**
8639
+ * Parameters of the TriStateCheckBox#change event.
8640
+ */
8042
8641
  interface TriStateCheckBox$ChangeEventParameters {
8043
8642
  /**
8044
8643
  * Checks whether the box is flagged or not flagged.
@@ -8046,6 +8645,9 @@ declare namespace sap {
8046
8645
  selectionState?: string;
8047
8646
  }
8048
8647
 
8648
+ /**
8649
+ * Parameters of the ValueHelpField#valueHelpRequest event.
8650
+ */
8049
8651
  interface ValueHelpField$ValueHelpRequestEventParameters {}
8050
8652
 
8051
8653
  /**
@@ -30997,248 +31599,398 @@ declare namespace sap {
30997
31599
  */
30998
31600
  type TitleLevel = sap.ui.core.TitleLevel;
30999
31601
 
31602
+ /**
31603
+ * Event object of the Accordion#sectionClose event.
31604
+ */
31000
31605
  type Accordion$SectionCloseEvent = sap.ui.base.Event<
31001
31606
  Accordion$SectionCloseEventParameters,
31002
31607
  Accordion
31003
31608
  >;
31004
31609
 
31610
+ /**
31611
+ * Event object of the Accordion#sectionOpen event.
31612
+ */
31005
31613
  type Accordion$SectionOpenEvent = sap.ui.base.Event<
31006
31614
  Accordion$SectionOpenEventParameters,
31007
31615
  Accordion
31008
31616
  >;
31009
31617
 
31618
+ /**
31619
+ * Event object of the Accordion#sectionsReorder event.
31620
+ */
31010
31621
  type Accordion$SectionsReorderEvent = sap.ui.base.Event<
31011
31622
  Accordion$SectionsReorderEventParameters,
31012
31623
  Accordion
31013
31624
  >;
31014
31625
 
31626
+ /**
31627
+ * Event object of the AccordionSection#scroll event.
31628
+ */
31015
31629
  type AccordionSection$ScrollEvent = sap.ui.base.Event<
31016
31630
  AccordionSection$ScrollEventParameters,
31017
31631
  AccordionSection
31018
31632
  >;
31019
31633
 
31634
+ /**
31635
+ * Event object of the ApplicationHeader#logoff event.
31636
+ */
31020
31637
  type ApplicationHeader$LogoffEvent = sap.ui.base.Event<
31021
31638
  ApplicationHeader$LogoffEventParameters,
31022
31639
  ApplicationHeader
31023
31640
  >;
31024
31641
 
31642
+ /**
31643
+ * Event object of the AutoComplete#suggest event.
31644
+ */
31025
31645
  type AutoComplete$SuggestEvent = sap.ui.base.Event<
31026
31646
  AutoComplete$SuggestEventParameters,
31027
31647
  AutoComplete
31028
31648
  >;
31029
31649
 
31650
+ /**
31651
+ * Event object of the Button#press event.
31652
+ */
31030
31653
  type Button$PressEvent = sap.ui.base.Event<
31031
31654
  Button$PressEventParameters,
31032
31655
  Button
31033
31656
  >;
31034
31657
 
31658
+ /**
31659
+ * Event object of the CalloutBase#beforeOpen event.
31660
+ */
31035
31661
  type CalloutBase$BeforeOpenEvent = sap.ui.base.Event<
31036
31662
  CalloutBase$BeforeOpenEventParameters,
31037
31663
  CalloutBase
31038
31664
  >;
31039
31665
 
31666
+ /**
31667
+ * Event object of the CalloutBase#close event.
31668
+ */
31040
31669
  type CalloutBase$CloseEvent = sap.ui.base.Event<
31041
31670
  CalloutBase$CloseEventParameters,
31042
31671
  CalloutBase
31043
31672
  >;
31044
31673
 
31674
+ /**
31675
+ * Event object of the CalloutBase#open event.
31676
+ */
31045
31677
  type CalloutBase$OpenEvent = sap.ui.base.Event<
31046
31678
  CalloutBase$OpenEventParameters,
31047
31679
  CalloutBase
31048
31680
  >;
31049
31681
 
31682
+ /**
31683
+ * Event object of the CalloutBase#opened event.
31684
+ */
31050
31685
  type CalloutBase$OpenedEvent = sap.ui.base.Event<
31051
31686
  CalloutBase$OpenedEventParameters,
31052
31687
  CalloutBase
31053
31688
  >;
31054
31689
 
31690
+ /**
31691
+ * Event object of the CheckBox#change event.
31692
+ */
31055
31693
  type CheckBox$ChangeEvent = sap.ui.base.Event<
31056
31694
  CheckBox$ChangeEventParameters,
31057
31695
  CheckBox
31058
31696
  >;
31059
31697
 
31698
+ /**
31699
+ * Event object of the ComboBox#change event.
31700
+ */
31060
31701
  type ComboBox$ChangeEvent = sap.ui.base.Event<
31061
31702
  ComboBox$ChangeEventParameters,
31062
31703
  ComboBox
31063
31704
  >;
31064
31705
 
31706
+ /**
31707
+ * Event object of the Dialog#closed event.
31708
+ */
31065
31709
  type Dialog$ClosedEvent = sap.ui.base.Event<
31066
31710
  Dialog$ClosedEventParameters,
31067
31711
  Dialog
31068
31712
  >;
31069
31713
 
31714
+ /**
31715
+ * Event object of the DropdownBox#searchHelp event.
31716
+ */
31070
31717
  type DropdownBox$SearchHelpEvent = sap.ui.base.Event<
31071
31718
  DropdownBox$SearchHelpEventParameters,
31072
31719
  DropdownBox
31073
31720
  >;
31074
31721
 
31722
+ /**
31723
+ * Event object of the Image#press event.
31724
+ */
31075
31725
  type Image$PressEvent = sap.ui.base.Event<
31076
31726
  Image$PressEventParameters,
31077
31727
  Image
31078
31728
  >;
31079
31729
 
31730
+ /**
31731
+ * Event object of the ImageMap#press event.
31732
+ */
31080
31733
  type ImageMap$PressEvent = sap.ui.base.Event<
31081
31734
  ImageMap$PressEventParameters,
31082
31735
  ImageMap
31083
31736
  >;
31084
31737
 
31738
+ /**
31739
+ * Event object of the InPlaceEdit#change event.
31740
+ */
31085
31741
  type InPlaceEdit$ChangeEvent = sap.ui.base.Event<
31086
31742
  InPlaceEdit$ChangeEventParameters,
31087
31743
  InPlaceEdit
31088
31744
  >;
31089
31745
 
31746
+ /**
31747
+ * Event object of the InPlaceEdit#liveChange event.
31748
+ */
31090
31749
  type InPlaceEdit$LiveChangeEvent = sap.ui.base.Event<
31091
31750
  InPlaceEdit$LiveChangeEventParameters,
31092
31751
  InPlaceEdit
31093
31752
  >;
31094
31753
 
31754
+ /**
31755
+ * Event object of the Link#press event.
31756
+ */
31095
31757
  type Link$PressEvent = sap.ui.base.Event<Link$PressEventParameters, Link>;
31096
31758
 
31759
+ /**
31760
+ * Event object of the ListBox#select event.
31761
+ */
31097
31762
  type ListBox$SelectEvent = sap.ui.base.Event<
31098
31763
  ListBox$SelectEventParameters,
31099
31764
  ListBox
31100
31765
  >;
31101
31766
 
31767
+ /**
31768
+ * Event object of the MenuButton#itemSelected event.
31769
+ */
31102
31770
  type MenuButton$ItemSelectedEvent = sap.ui.base.Event<
31103
31771
  MenuButton$ItemSelectedEventParameters,
31104
31772
  MenuButton
31105
31773
  >;
31106
31774
 
31775
+ /**
31776
+ * Event object of the MenuButton#press event.
31777
+ */
31107
31778
  type MenuButton$PressEvent = sap.ui.base.Event<
31108
31779
  MenuButton$PressEventParameters,
31109
31780
  MenuButton
31110
31781
  >;
31111
31782
 
31783
+ /**
31784
+ * Event object of the MessageToast#next event.
31785
+ */
31112
31786
  type MessageToast$NextEvent = sap.ui.base.Event<
31113
31787
  MessageToast$NextEventParameters,
31114
31788
  MessageToast
31115
31789
  >;
31116
31790
 
31791
+ /**
31792
+ * Event object of the Paginator#page event.
31793
+ */
31117
31794
  type Paginator$PageEvent = sap.ui.base.Event<
31118
31795
  Paginator$PageEventParameters,
31119
31796
  Paginator
31120
31797
  >;
31121
31798
 
31799
+ /**
31800
+ * Event object of the RadioButton#select event.
31801
+ */
31122
31802
  type RadioButton$SelectEvent = sap.ui.base.Event<
31123
31803
  RadioButton$SelectEventParameters,
31124
31804
  RadioButton
31125
31805
  >;
31126
31806
 
31807
+ /**
31808
+ * Event object of the RadioButtonGroup#select event.
31809
+ */
31127
31810
  type RadioButtonGroup$SelectEvent = sap.ui.base.Event<
31128
31811
  RadioButtonGroup$SelectEventParameters,
31129
31812
  RadioButtonGroup
31130
31813
  >;
31131
31814
 
31815
+ /**
31816
+ * Event object of the RatingIndicator#change event.
31817
+ */
31132
31818
  type RatingIndicator$ChangeEvent = sap.ui.base.Event<
31133
31819
  RatingIndicator$ChangeEventParameters,
31134
31820
  RatingIndicator
31135
31821
  >;
31136
31822
 
31823
+ /**
31824
+ * Event object of the ResponsiveContainer#rangeSwitch event.
31825
+ */
31137
31826
  type ResponsiveContainer$RangeSwitchEvent = sap.ui.base.Event<
31138
31827
  ResponsiveContainer$RangeSwitchEventParameters,
31139
31828
  ResponsiveContainer
31140
31829
  >;
31141
31830
 
31831
+ /**
31832
+ * Event object of the RoadMap#stepExpanded event.
31833
+ */
31142
31834
  type RoadMap$StepExpandedEvent = sap.ui.base.Event<
31143
31835
  RoadMap$StepExpandedEventParameters,
31144
31836
  RoadMap
31145
31837
  >;
31146
31838
 
31839
+ /**
31840
+ * Event object of the RoadMap#stepSelected event.
31841
+ */
31147
31842
  type RoadMap$StepSelectedEvent = sap.ui.base.Event<
31148
31843
  RoadMap$StepSelectedEventParameters,
31149
31844
  RoadMap
31150
31845
  >;
31151
31846
 
31847
+ /**
31848
+ * Event object of the RowRepeater#filter event.
31849
+ */
31152
31850
  type RowRepeater$FilterEvent = sap.ui.base.Event<
31153
31851
  RowRepeater$FilterEventParameters,
31154
31852
  RowRepeater
31155
31853
  >;
31156
31854
 
31855
+ /**
31856
+ * Event object of the RowRepeater#page event.
31857
+ */
31157
31858
  type RowRepeater$PageEvent = sap.ui.base.Event<
31158
31859
  RowRepeater$PageEventParameters,
31159
31860
  RowRepeater
31160
31861
  >;
31161
31862
 
31863
+ /**
31864
+ * Event object of the RowRepeater#resize event.
31865
+ */
31162
31866
  type RowRepeater$ResizeEvent = sap.ui.base.Event<
31163
31867
  RowRepeater$ResizeEventParameters,
31164
31868
  RowRepeater
31165
31869
  >;
31166
31870
 
31871
+ /**
31872
+ * Event object of the RowRepeater#sort event.
31873
+ */
31167
31874
  type RowRepeater$SortEvent = sap.ui.base.Event<
31168
31875
  RowRepeater$SortEventParameters,
31169
31876
  RowRepeater
31170
31877
  >;
31171
31878
 
31879
+ /**
31880
+ * Event object of the SearchField#search event.
31881
+ */
31172
31882
  type SearchField$SearchEvent = sap.ui.base.Event<
31173
31883
  SearchField$SearchEventParameters,
31174
31884
  SearchField
31175
31885
  >;
31176
31886
 
31887
+ /**
31888
+ * Event object of the SearchField#suggest event.
31889
+ */
31177
31890
  type SearchField$SuggestEvent = sap.ui.base.Event<
31178
31891
  SearchField$SuggestEventParameters,
31179
31892
  SearchField
31180
31893
  >;
31181
31894
 
31895
+ /**
31896
+ * Event object of the SegmentedButton#select event.
31897
+ */
31182
31898
  type SegmentedButton$SelectEvent = sap.ui.base.Event<
31183
31899
  SegmentedButton$SelectEventParameters,
31184
31900
  SegmentedButton
31185
31901
  >;
31186
31902
 
31903
+ /**
31904
+ * Event object of the Slider#change event.
31905
+ */
31187
31906
  type Slider$ChangeEvent = sap.ui.base.Event<
31188
31907
  Slider$ChangeEventParameters,
31189
31908
  Slider
31190
31909
  >;
31191
31910
 
31911
+ /**
31912
+ * Event object of the Slider#liveChange event.
31913
+ */
31192
31914
  type Slider$LiveChangeEvent = sap.ui.base.Event<
31193
31915
  Slider$LiveChangeEventParameters,
31194
31916
  Slider
31195
31917
  >;
31196
31918
 
31919
+ /**
31920
+ * Event object of the TabStrip#close event.
31921
+ */
31197
31922
  type TabStrip$CloseEvent = sap.ui.base.Event<
31198
31923
  TabStrip$CloseEventParameters,
31199
31924
  TabStrip
31200
31925
  >;
31201
31926
 
31927
+ /**
31928
+ * Event object of the TabStrip#select event.
31929
+ */
31202
31930
  type TabStrip$SelectEvent = sap.ui.base.Event<
31203
31931
  TabStrip$SelectEventParameters,
31204
31932
  TabStrip
31205
31933
  >;
31206
31934
 
31935
+ /**
31936
+ * Event object of the TextField#change event.
31937
+ */
31207
31938
  type TextField$ChangeEvent = sap.ui.base.Event<
31208
31939
  TextField$ChangeEventParameters,
31209
31940
  TextField
31210
31941
  >;
31211
31942
 
31943
+ /**
31944
+ * Event object of the TextField#liveChange event.
31945
+ */
31212
31946
  type TextField$LiveChangeEvent = sap.ui.base.Event<
31213
31947
  TextField$LiveChangeEventParameters,
31214
31948
  TextField
31215
31949
  >;
31216
31950
 
31951
+ /**
31952
+ * Event object of the Tree#select event.
31953
+ */
31217
31954
  type Tree$SelectEvent = sap.ui.base.Event<
31218
31955
  Tree$SelectEventParameters,
31219
31956
  Tree
31220
31957
  >;
31221
31958
 
31959
+ /**
31960
+ * Event object of the Tree#selectionChange event.
31961
+ */
31222
31962
  type Tree$SelectionChangeEvent = sap.ui.base.Event<
31223
31963
  Tree$SelectionChangeEventParameters,
31224
31964
  Tree
31225
31965
  >;
31226
31966
 
31967
+ /**
31968
+ * Event object of the TreeNode#selected event.
31969
+ */
31227
31970
  type TreeNode$SelectedEvent = sap.ui.base.Event<
31228
31971
  TreeNode$SelectedEventParameters,
31229
31972
  TreeNode
31230
31973
  >;
31231
31974
 
31975
+ /**
31976
+ * Event object of the TreeNode#toggleOpenState event.
31977
+ */
31232
31978
  type TreeNode$ToggleOpenStateEvent = sap.ui.base.Event<
31233
31979
  TreeNode$ToggleOpenStateEventParameters,
31234
31980
  TreeNode
31235
31981
  >;
31236
31982
 
31983
+ /**
31984
+ * Event object of the TriStateCheckBox#change event.
31985
+ */
31237
31986
  type TriStateCheckBox$ChangeEvent = sap.ui.base.Event<
31238
31987
  TriStateCheckBox$ChangeEventParameters,
31239
31988
  TriStateCheckBox
31240
31989
  >;
31241
31990
 
31991
+ /**
31992
+ * Event object of the ValueHelpField#valueHelpRequest event.
31993
+ */
31242
31994
  type ValueHelpField$ValueHelpRequestEvent = sap.ui.base.Event<
31243
31995
  ValueHelpField$ValueHelpRequestEventParameters,
31244
31996
  ValueHelpField