@openui5/ts-types 1.115.1 → 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.115.1
1
+ // For Library Version: 1.117.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -91,7 +91,25 @@ declare namespace sap {
91
91
  extends sap.ui.layout.form.$ResponsiveLayoutSettings {}
92
92
 
93
93
  interface $SimpleFormSettings
94
- extends sap.ui.layout.form.$SimpleFormSettings {}
94
+ extends sap.ui.layout.form.$SimpleFormSettings {
95
+ /**
96
+ * @since 1.14
97
+ *
98
+ * The `FormLayout` that is used to render the `SimpleForm`.
99
+ *
100
+ * We recommend using the `GridLayout` for rendering a `SimpleForm` in `sap.ui.commons` library, as responsive
101
+ * layouts are not designed for this library.
102
+ *
103
+ * **Note** If possible, set the `layout` before adding content to prevent calculations for the default
104
+ * layout.
105
+ *
106
+ * **Note** The `ResponsiveLayout` has been deprecated and must no longer be used.
107
+ */
108
+ layout?:
109
+ | sap.ui.layout.form.SimpleFormLayout
110
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
111
+ | `{${string}}`;
112
+ }
95
113
 
96
114
  /**
97
115
  * @since 1.9.1
@@ -784,9 +802,6 @@ declare namespace sap {
784
802
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
785
803
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
786
804
  * of the syntax of the settings object.
787
- *
788
- * 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 }
789
- * can be used.
790
805
  */
791
806
  constructor(
792
807
  /**
@@ -800,9 +815,6 @@ declare namespace sap {
800
815
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
801
816
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
802
817
  * of the syntax of the settings object.
803
- *
804
- * 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 }
805
- * can be used.
806
818
  */
807
819
  constructor(
808
820
  /**
@@ -847,27 +859,49 @@ declare namespace sap {
847
859
  /**
848
860
  * @since 1.14
849
861
  *
850
- * Getter for property `layout`. The FormLayout that is used to render the SimpleForm
862
+ * Gets current value of property {@link #getLayout layout}.
863
+ *
864
+ * The `FormLayout` that is used to render the `SimpleForm`.
851
865
  *
852
- * Default value is `ResponsiveLayout`
866
+ * We recommend using the `GridLayout` for rendering a `SimpleForm` in `sap.ui.commons` library, as responsive
867
+ * layouts are not designed for this library.
853
868
  *
854
- * @returns the value of property `layout`
869
+ * **Note** If possible, set the `layout` before adding content to prevent calculations for the default
870
+ * layout.
871
+ *
872
+ * **Note** The `ResponsiveLayout` has been deprecated and must no longer be used.
873
+ *
874
+ * Default value is `ResponsiveLayout`.
875
+ *
876
+ * @returns Value of property `layout`
855
877
  */
856
- getLayout(): sap.ui.commons.form.SimpleFormLayout;
878
+ getLayout(): sap.ui.layout.form.SimpleFormLayout;
857
879
  /**
858
880
  * @since 1.14
859
881
  *
860
- * Setter for property `layout`.
882
+ * Sets a new value for property {@link #getLayout layout}.
861
883
  *
862
- * Default value is `ResponsiveLayout`
884
+ * The `FormLayout` that is used to render the `SimpleForm`.
863
885
  *
864
- * @returns `this` to allow method chaining
886
+ * We recommend using the `GridLayout` for rendering a `SimpleForm` in `sap.ui.commons` library, as responsive
887
+ * layouts are not designed for this library.
888
+ *
889
+ * **Note** If possible, set the `layout` before adding content to prevent calculations for the default
890
+ * layout.
891
+ *
892
+ * **Note** The `ResponsiveLayout` has been deprecated and must no longer be used.
893
+ *
894
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
895
+ *
896
+ * Default value is `ResponsiveLayout`.
897
+ *
898
+ * @returns Reference to `this` in order to allow method chaining
865
899
  */
866
900
  setLayout(
867
901
  /**
868
- * new value for property `layout`
902
+ * New value for property `layout`
869
903
  */
870
- oLayout: sap.ui.commons.form.SimpleFormLayout
904
+ sLayout?: sap.ui.layout.form.SimpleFormLayout
871
905
  ): this;
872
906
  }
873
907
 
@@ -4108,23 +4142,17 @@ declare namespace sap {
4108
4142
  /**
4109
4143
  * Event is triggered when the user opens a section.
4110
4144
  */
4111
- sectionOpen?: (
4112
- oEvent: sap.ui.base.Event<sap.ui.commons.Accordion$SectionOpenEventParameters>
4113
- ) => void;
4145
+ sectionOpen?: (oEvent: Accordion$SectionOpenEvent) => void;
4114
4146
 
4115
4147
  /**
4116
4148
  * Event is triggered when the user closes a section.
4117
4149
  */
4118
- sectionClose?: (
4119
- oEvent: sap.ui.base.Event<sap.ui.commons.Accordion$SectionCloseEventParameters>
4120
- ) => void;
4150
+ sectionClose?: (oEvent: Accordion$SectionCloseEvent) => void;
4121
4151
 
4122
4152
  /**
4123
4153
  * Event is triggered when the user changes the position of a section.
4124
4154
  */
4125
- sectionsReorder?: (
4126
- oEvent: sap.ui.base.Event<sap.ui.commons.Accordion$SectionsReorderEventParameters>
4127
- ) => void;
4155
+ sectionsReorder?: (oEvent: Accordion$SectionsReorderEvent) => void;
4128
4156
  }
4129
4157
 
4130
4158
  interface $AccordionSectionSettings extends sap.ui.core.$ElementSettings {
@@ -4174,9 +4202,7 @@ declare namespace sap {
4174
4202
  /**
4175
4203
  * Event is fired when the user scrolls the panel
4176
4204
  */
4177
- scroll?: (
4178
- oEvent: sap.ui.base.Event<sap.ui.commons.AccordionSection$ScrollEventParameters>
4179
- ) => void;
4205
+ scroll?: (oEvent: AccordionSection$ScrollEvent) => void;
4180
4206
  }
4181
4207
 
4182
4208
  interface $ApplicationHeaderSettings
@@ -4259,9 +4285,7 @@ declare namespace sap {
4259
4285
  /**
4260
4286
  * Fired when the user has changed the value and a suggestion list update should occur.
4261
4287
  */
4262
- suggest?: (
4263
- oEvent: sap.ui.base.Event<sap.ui.commons.AutoComplete$SuggestEventParameters>
4264
- ) => void;
4288
+ suggest?: (oEvent: AutoComplete$SuggestEvent) => void;
4265
4289
  }
4266
4290
 
4267
4291
  interface $ButtonSettings extends sap.ui.core.$ControlSettings {
@@ -4394,9 +4418,7 @@ declare namespace sap {
4394
4418
  /**
4395
4419
  * The event is fired when the popup is opened.
4396
4420
  */
4397
- open?: (
4398
- oEvent: sap.ui.base.Event<sap.ui.commons.CalloutBase$OpenEventParameters>
4399
- ) => void;
4421
+ open?: (oEvent: CalloutBase$OpenEvent) => void;
4400
4422
 
4401
4423
  /**
4402
4424
  * Event is fired when the Callout window is closed.
@@ -4407,9 +4429,7 @@ declare namespace sap {
4407
4429
  * Event is fired before a Callout is displayed. Call the preventDefault method of the event object to postpone
4408
4430
  * opening. Application may use this event to start asynchronous Ajax call to load the Callout content
4409
4431
  */
4410
- beforeOpen?: (
4411
- oEvent: sap.ui.base.Event<sap.ui.commons.CalloutBase$BeforeOpenEventParameters>
4412
- ) => void;
4432
+ beforeOpen?: (oEvent: CalloutBase$BeforeOpenEvent) => void;
4413
4433
 
4414
4434
  /**
4415
4435
  * @since 1.11.0
@@ -4579,9 +4599,7 @@ declare namespace sap {
4579
4599
  /**
4580
4600
  * Event is triggered when the control status is changed by the user by flagging or unflagging the checkbox.
4581
4601
  */
4582
- change?: (
4583
- oEvent: sap.ui.base.Event<sap.ui.commons.CheckBox$ChangeEventParameters>
4584
- ) => void;
4602
+ change?: (oEvent: CheckBox$ChangeEvent) => void;
4585
4603
  }
4586
4604
 
4587
4605
  interface $ColorPickerSettings
@@ -4847,9 +4865,7 @@ declare namespace sap {
4847
4865
  * Event is fired when the dialog has been closed (after closing-animation etc.). Event parameters provide
4848
4866
  * information about last position and last size.
4849
4867
  */
4850
- closed?: (
4851
- oEvent: sap.ui.base.Event<sap.ui.commons.Dialog$ClosedEventParameters>
4852
- ) => void;
4868
+ closed?: (oEvent: Dialog$ClosedEvent) => void;
4853
4869
  }
4854
4870
 
4855
4871
  interface $DropdownBoxSettings extends sap.ui.commons.$ComboBoxSettings {
@@ -4896,9 +4912,7 @@ declare namespace sap {
4896
4912
  * Event fired whenever the configured searchHelpItem is clicked or the searchHelpItem is configured and
4897
4913
  * F4 key is pressed.
4898
4914
  */
4899
- searchHelp?: (
4900
- oEvent: sap.ui.base.Event<sap.ui.commons.DropdownBox$SearchHelpEventParameters>
4901
- ) => void;
4915
+ searchHelp?: (oEvent: DropdownBox$SearchHelpEvent) => void;
4902
4916
  }
4903
4917
 
4904
4918
  interface $FileUploaderSettings
@@ -5032,9 +5046,7 @@ declare namespace sap {
5032
5046
  /**
5033
5047
  * Event for the areas that can be clicked in an ImageMap
5034
5048
  */
5035
- press?: (
5036
- oEvent: sap.ui.base.Event<sap.ui.commons.ImageMap$PressEventParameters>
5037
- ) => void;
5049
+ press?: (oEvent: ImageMap$PressEvent) => void;
5038
5050
  }
5039
5051
 
5040
5052
  interface $InPlaceEditSettings extends sap.ui.core.$ControlSettings {
@@ -5075,9 +5087,7 @@ declare namespace sap {
5075
5087
  * Event is fired when the text in the field has changed AND the focus leaves the InPlaceEdit or the Enter
5076
5088
  * key is pressed.
5077
5089
  */
5078
- change?: (
5079
- oEvent: sap.ui.base.Event<sap.ui.commons.InPlaceEdit$ChangeEventParameters>
5080
- ) => void;
5090
+ change?: (oEvent: InPlaceEdit$ChangeEvent) => void;
5081
5091
 
5082
5092
  /**
5083
5093
  * @since 1.16.5
@@ -5086,9 +5096,7 @@ declare namespace sap {
5086
5096
  * is not the content of the value property. The value property is only updated by ENTER and by leaving
5087
5097
  * the control.
5088
5098
  */
5089
- liveChange?: (
5090
- oEvent: sap.ui.base.Event<sap.ui.commons.InPlaceEdit$LiveChangeEventParameters>
5091
- ) => void;
5099
+ liveChange?: (oEvent: InPlaceEdit$LiveChangeEvent) => void;
5092
5100
  }
5093
5101
 
5094
5102
  interface $LabelSettings extends sap.ui.core.$ControlSettings {
@@ -5381,9 +5389,7 @@ declare namespace sap {
5381
5389
  /**
5382
5390
  * Event is fired when selection is changed by user interaction.
5383
5391
  */
5384
- select?: (
5385
- oEvent: sap.ui.base.Event<sap.ui.commons.ListBox$SelectEventParameters>
5386
- ) => void;
5392
+ select?: (oEvent: ListBox$SelectEvent) => void;
5387
5393
  }
5388
5394
 
5389
5395
  interface $MenuSettings extends sap.ui.unified.$MenuSettings {}
@@ -5444,9 +5450,7 @@ declare namespace sap {
5444
5450
  /**
5445
5451
  * Event that is fired when a menu item is selected by the user
5446
5452
  */
5447
- itemSelected?: (
5448
- oEvent: sap.ui.base.Event<sap.ui.commons.MenuButton$ItemSelectedEventParameters>
5449
- ) => void;
5453
+ itemSelected?: (oEvent: MenuButton$ItemSelectedEvent) => void;
5450
5454
  }
5451
5455
 
5452
5456
  interface $MenuItemSettings extends sap.ui.unified.$MenuItemSettings {}
@@ -5579,9 +5583,7 @@ declare namespace sap {
5579
5583
  /**
5580
5584
  * Event is fired when the user navigates to another page by selecting it directly, or by jumping forward/backward.
5581
5585
  */
5582
- page?: (
5583
- oEvent: sap.ui.base.Event<sap.ui.commons.Paginator$PageEventParameters>
5584
- ) => void;
5586
+ page?: (oEvent: Paginator$PageEvent) => void;
5585
5587
  }
5586
5588
 
5587
5589
  interface $PanelSettings extends sap.ui.core.$ControlSettings {
@@ -5918,9 +5920,7 @@ declare namespace sap {
5918
5920
  /**
5919
5921
  * Fires when selection is changed by user interaction.
5920
5922
  */
5921
- select?: (
5922
- oEvent: sap.ui.base.Event<sap.ui.commons.RadioButtonGroup$SelectEventParameters>
5923
- ) => void;
5923
+ select?: (oEvent: RadioButtonGroup$SelectEvent) => void;
5924
5924
  }
5925
5925
 
5926
5926
  interface $RangeSliderSettings extends sap.ui.commons.$SliderSettings {
@@ -6021,9 +6021,7 @@ declare namespace sap {
6021
6021
  /**
6022
6022
  * The event is fired when the user has done a rating.
6023
6023
  */
6024
- change?: (
6025
- oEvent: sap.ui.base.Event<sap.ui.commons.RatingIndicator$ChangeEventParameters>
6026
- ) => void;
6024
+ change?: (oEvent: RatingIndicator$ChangeEvent) => void;
6027
6025
  }
6028
6026
 
6029
6027
  interface $ResponsiveContainerSettings
@@ -6061,9 +6059,7 @@ declare namespace sap {
6061
6059
  /**
6062
6060
  * The event is fired the width of the container reaches a new range.
6063
6061
  */
6064
- rangeSwitch?: (
6065
- oEvent: sap.ui.base.Event<sap.ui.commons.ResponsiveContainer$RangeSwitchEventParameters>
6066
- ) => void;
6062
+ rangeSwitch?: (oEvent: ResponsiveContainer$RangeSwitchEvent) => void;
6067
6063
  }
6068
6064
 
6069
6065
  interface $ResponsiveContainerRangeSettings
@@ -6165,16 +6161,12 @@ declare namespace sap {
6165
6161
  /**
6166
6162
  * Event is fired when the user selects a step.
6167
6163
  */
6168
- stepSelected?: (
6169
- oEvent: sap.ui.base.Event<sap.ui.commons.RoadMap$StepSelectedEventParameters>
6170
- ) => void;
6164
+ stepSelected?: (oEvent: RoadMap$StepSelectedEvent) => void;
6171
6165
 
6172
6166
  /**
6173
6167
  * Event is fired when a given step is expanded or collapsed by user.
6174
6168
  */
6175
- stepExpanded?: (
6176
- oEvent: sap.ui.base.Event<sap.ui.commons.RoadMap$StepExpandedEventParameters>
6177
- ) => void;
6169
+ stepExpanded?: (oEvent: RoadMap$StepExpandedEvent) => void;
6178
6170
  }
6179
6171
 
6180
6172
  interface $RoadMapStepSettings extends sap.ui.core.$ElementSettings {
@@ -6315,30 +6307,22 @@ declare namespace sap {
6315
6307
  /**
6316
6308
  * This event is triggered when a filter is set.
6317
6309
  */
6318
- filter?: (
6319
- oEvent: sap.ui.base.Event<sap.ui.commons.RowRepeater$FilterEventParameters>
6320
- ) => void;
6310
+ filter?: (oEvent: RowRepeater$FilterEvent) => void;
6321
6311
 
6322
6312
  /**
6323
6313
  * This event is triggered when a sorting is applied.
6324
6314
  */
6325
- sort?: (
6326
- oEvent: sap.ui.base.Event<sap.ui.commons.RowRepeater$SortEventParameters>
6327
- ) => void;
6315
+ sort?: (oEvent: RowRepeater$SortEvent) => void;
6328
6316
 
6329
6317
  /**
6330
6318
  * This event is triggered when paging was executed.
6331
6319
  */
6332
- page?: (
6333
- oEvent: sap.ui.base.Event<sap.ui.commons.RowRepeater$PageEventParameters>
6334
- ) => void;
6320
+ page?: (oEvent: RowRepeater$PageEvent) => void;
6335
6321
 
6336
6322
  /**
6337
6323
  * This event is triggered when the number of rows was changed.
6338
6324
  */
6339
- resize?: (
6340
- oEvent: sap.ui.base.Event<sap.ui.commons.RowRepeater$ResizeEventParameters>
6341
- ) => void;
6325
+ resize?: (oEvent: RowRepeater$ResizeEvent) => void;
6342
6326
  }
6343
6327
 
6344
6328
  interface $RowRepeaterFilterSettings
@@ -6551,16 +6535,12 @@ declare namespace sap {
6551
6535
  /**
6552
6536
  * Event which is fired when the user triggers a search
6553
6537
  */
6554
- search?: (
6555
- oEvent: sap.ui.base.Event<sap.ui.commons.SearchField$SearchEventParameters>
6556
- ) => void;
6538
+ search?: (oEvent: SearchField$SearchEvent) => void;
6557
6539
 
6558
6540
  /**
6559
6541
  * Event which is fired when new suggest values are required.
6560
6542
  */
6561
- suggest?: (
6562
- oEvent: sap.ui.base.Event<sap.ui.commons.SearchField$SuggestEventParameters>
6563
- ) => void;
6543
+ suggest?: (oEvent: SearchField$SuggestEvent) => void;
6564
6544
  }
6565
6545
 
6566
6546
  interface $SearchProviderSettings
@@ -6592,9 +6572,7 @@ declare namespace sap {
6592
6572
  /**
6593
6573
  * Event fired when button selected
6594
6574
  */
6595
- select?: (
6596
- oEvent: sap.ui.base.Event<sap.ui.commons.SegmentedButton$SelectEventParameters>
6597
- ) => void;
6575
+ select?: (oEvent: SegmentedButton$SelectEvent) => void;
6598
6576
  }
6599
6577
 
6600
6578
  interface $SliderSettings extends sap.ui.core.$ControlSettings {
@@ -6721,17 +6699,13 @@ declare namespace sap {
6721
6699
  /**
6722
6700
  * Value was changed. This event is fired if the value has changed by a user action.
6723
6701
  */
6724
- change?: (
6725
- oEvent: sap.ui.base.Event<sap.ui.commons.Slider$ChangeEventParameters>
6726
- ) => void;
6702
+ change?: (oEvent: Slider$ChangeEvent) => void;
6727
6703
 
6728
6704
  /**
6729
6705
  * Value was changed. This event is fired during the mouse move. The normal change event is only fired by
6730
6706
  * mouseup.
6731
6707
  */
6732
- liveChange?: (
6733
- oEvent: sap.ui.base.Event<sap.ui.commons.Slider$LiveChangeEventParameters>
6734
- ) => void;
6708
+ liveChange?: (oEvent: Slider$LiveChangeEvent) => void;
6735
6709
  }
6736
6710
 
6737
6711
  interface $SplitterSettings extends sap.ui.core.$ControlSettings {
@@ -6904,16 +6878,12 @@ declare namespace sap {
6904
6878
  /**
6905
6879
  * Fires when the user selects a tab.
6906
6880
  */
6907
- select?: (
6908
- oEvent: sap.ui.base.Event<sap.ui.commons.TabStrip$SelectEventParameters>
6909
- ) => void;
6881
+ select?: (oEvent: TabStrip$SelectEvent) => void;
6910
6882
 
6911
6883
  /**
6912
6884
  * Fires when the user closes a tab.
6913
6885
  */
6914
- close?: (
6915
- oEvent: sap.ui.base.Event<sap.ui.commons.TabStrip$CloseEventParameters>
6916
- ) => void;
6886
+ close?: (oEvent: TabStrip$CloseEvent) => void;
6917
6887
  }
6918
6888
 
6919
6889
  interface $TextAreaSettings extends sap.ui.commons.$TextFieldSettings {
@@ -7099,18 +7069,14 @@ declare namespace sap {
7099
7069
  * Event is fired when the text in the field has changed AND the focus leaves the TextField or the Enter
7100
7070
  * key is pressed.
7101
7071
  */
7102
- change?: (
7103
- oEvent: sap.ui.base.Event<sap.ui.commons.TextField$ChangeEventParameters>
7104
- ) => void;
7072
+ change?: (oEvent: TextField$ChangeEvent) => void;
7105
7073
 
7106
7074
  /**
7107
7075
  * This event if fired during typing into the `TextField` and returns the currently entered value. **Note:**
7108
7076
  * This is not the content of the value property. The value property is only updated by ENTER and by leaving
7109
7077
  * the control.
7110
7078
  */
7111
- liveChange?: (
7112
- oEvent: sap.ui.base.Event<sap.ui.commons.TextField$LiveChangeEventParameters>
7113
- ) => void;
7079
+ liveChange?: (oEvent: TextField$LiveChangeEvent) => void;
7114
7080
  }
7115
7081
 
7116
7082
  interface $TextViewSettings extends sap.ui.core.$ControlSettings {
@@ -7352,16 +7318,12 @@ declare namespace sap {
7352
7318
  /**
7353
7319
  * Event is fired when a tree node is selected.
7354
7320
  */
7355
- select?: (
7356
- oEvent: sap.ui.base.Event<sap.ui.commons.Tree$SelectEventParameters>
7357
- ) => void;
7321
+ select?: (oEvent: Tree$SelectEvent) => void;
7358
7322
 
7359
7323
  /**
7360
7324
  * fired when the selection of the tree has been changed
7361
7325
  */
7362
- selectionChange?: (
7363
- oEvent: sap.ui.base.Event<sap.ui.commons.Tree$SelectionChangeEventParameters>
7364
- ) => void;
7326
+ selectionChange?: (oEvent: Tree$SelectionChangeEvent) => void;
7365
7327
  }
7366
7328
 
7367
7329
  interface $TreeNodeSettings extends sap.ui.core.$ElementSettings {
@@ -7432,9 +7394,7 @@ declare namespace sap {
7432
7394
  /**
7433
7395
  * Node state has changed.
7434
7396
  */
7435
- toggleOpenState?: (
7436
- oEvent: sap.ui.base.Event<sap.ui.commons.TreeNode$ToggleOpenStateEventParameters>
7437
- ) => void;
7397
+ toggleOpenState?: (oEvent: TreeNode$ToggleOpenStateEvent) => void;
7438
7398
 
7439
7399
  /**
7440
7400
  * Node is selected
@@ -7501,9 +7461,7 @@ declare namespace sap {
7501
7461
  /**
7502
7462
  * Event is triggered when the control status is changed by the user by flagging or unflagging the checkbox.
7503
7463
  */
7504
- change?: (
7505
- oEvent: sap.ui.base.Event<sap.ui.commons.TriStateCheckBox$ChangeEventParameters>
7506
- ) => void;
7464
+ change?: (oEvent: TriStateCheckBox$ChangeEvent) => void;
7507
7465
  }
7508
7466
 
7509
7467
  interface $ValueHelpFieldSettings
@@ -29715,405 +29673,252 @@ declare namespace sap {
29715
29673
  */
29716
29674
  type TitleLevel = sap.ui.core.TitleLevel;
29717
29675
 
29718
- /**
29719
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Accordion$SectionCloseEventParameters'
29720
- * in 1.115.1 and any later releases.
29721
- */
29722
- type $AccordionSectionCloseEventParameters = sap.ui.commons.Accordion$SectionCloseEventParameters;
29723
-
29724
- type Accordion$SectionCloseEvent = sap.ui.base.Event<Accordion$SectionCloseEventParameters>;
29725
-
29726
- /**
29727
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Accordion$SectionOpenEventParameters'
29728
- * in 1.115.1 and any later releases.
29729
- */
29730
- type $AccordionSectionOpenEventParameters = sap.ui.commons.Accordion$SectionOpenEventParameters;
29731
-
29732
- type Accordion$SectionOpenEvent = sap.ui.base.Event<Accordion$SectionOpenEventParameters>;
29733
-
29734
- /**
29735
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Accordion$SectionsReorderEventParameters'
29736
- * in 1.115.1 and any later releases.
29737
- */
29738
- type $AccordionSectionsReorderEventParameters = sap.ui.commons.Accordion$SectionsReorderEventParameters;
29739
-
29740
- type Accordion$SectionsReorderEvent = sap.ui.base.Event<Accordion$SectionsReorderEventParameters>;
29741
-
29742
- /**
29743
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'AccordionSection$ScrollEventParameters'
29744
- * in 1.115.1 and any later releases.
29745
- */
29746
- type $AccordionSectionScrollEventParameters = sap.ui.commons.AccordionSection$ScrollEventParameters;
29747
-
29748
- type AccordionSection$ScrollEvent = sap.ui.base.Event<AccordionSection$ScrollEventParameters>;
29749
-
29750
- /**
29751
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ApplicationHeader$LogoffEventParameters'
29752
- * in 1.115.1 and any later releases.
29753
- */
29754
- type $ApplicationHeaderLogoffEventParameters = sap.ui.commons.ApplicationHeader$LogoffEventParameters;
29755
-
29756
- type ApplicationHeader$LogoffEvent = sap.ui.base.Event<ApplicationHeader$LogoffEventParameters>;
29757
-
29758
- /**
29759
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'AutoComplete$SuggestEventParameters'
29760
- * in 1.115.1 and any later releases.
29761
- */
29762
- type $AutoCompleteSuggestEventParameters = sap.ui.commons.AutoComplete$SuggestEventParameters;
29763
-
29764
- type AutoComplete$SuggestEvent = sap.ui.base.Event<AutoComplete$SuggestEventParameters>;
29765
-
29766
- /**
29767
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Button$PressEventParameters'
29768
- * in 1.115.1 and any later releases.
29769
- */
29770
- type $ButtonPressEventParameters = sap.ui.commons.Button$PressEventParameters;
29771
-
29772
- type Button$PressEvent = sap.ui.base.Event<Button$PressEventParameters>;
29773
-
29774
- /**
29775
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalloutBase$BeforeOpenEventParameters'
29776
- * in 1.115.1 and any later releases.
29777
- */
29778
- type $CalloutBaseBeforeOpenEventParameters = sap.ui.commons.CalloutBase$BeforeOpenEventParameters;
29779
-
29780
- type CalloutBase$BeforeOpenEvent = sap.ui.base.Event<CalloutBase$BeforeOpenEventParameters>;
29781
-
29782
- /**
29783
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalloutBase$CloseEventParameters'
29784
- * in 1.115.1 and any later releases.
29785
- */
29786
- type $CalloutBaseCloseEventParameters = sap.ui.commons.CalloutBase$CloseEventParameters;
29787
-
29788
- type CalloutBase$CloseEvent = sap.ui.base.Event<CalloutBase$CloseEventParameters>;
29789
-
29790
- /**
29791
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalloutBase$OpenEventParameters'
29792
- * in 1.115.1 and any later releases.
29793
- */
29794
- type $CalloutBaseOpenEventParameters = sap.ui.commons.CalloutBase$OpenEventParameters;
29795
-
29796
- type CalloutBase$OpenEvent = sap.ui.base.Event<CalloutBase$OpenEventParameters>;
29797
-
29798
- /**
29799
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalloutBase$OpenedEventParameters'
29800
- * in 1.115.1 and any later releases.
29801
- */
29802
- type $CalloutBaseOpenedEventParameters = sap.ui.commons.CalloutBase$OpenedEventParameters;
29803
-
29804
- type CalloutBase$OpenedEvent = sap.ui.base.Event<CalloutBase$OpenedEventParameters>;
29805
-
29806
- /**
29807
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CheckBox$ChangeEventParameters'
29808
- * in 1.115.1 and any later releases.
29809
- */
29810
- type $CheckBoxChangeEventParameters = sap.ui.commons.CheckBox$ChangeEventParameters;
29811
-
29812
- type CheckBox$ChangeEvent = sap.ui.base.Event<CheckBox$ChangeEventParameters>;
29813
-
29814
- /**
29815
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ComboBox$ChangeEventParameters'
29816
- * in 1.115.1 and any later releases.
29817
- */
29818
- type $ComboBoxChangeEventParameters = sap.ui.commons.ComboBox$ChangeEventParameters;
29819
-
29820
- type ComboBox$ChangeEvent = sap.ui.base.Event<ComboBox$ChangeEventParameters>;
29821
-
29822
- /**
29823
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Dialog$ClosedEventParameters'
29824
- * in 1.115.1 and any later releases.
29825
- */
29826
- type $DialogClosedEventParameters = sap.ui.commons.Dialog$ClosedEventParameters;
29827
-
29828
- type Dialog$ClosedEvent = sap.ui.base.Event<Dialog$ClosedEventParameters>;
29829
-
29830
- /**
29831
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DropdownBox$SearchHelpEventParameters'
29832
- * in 1.115.1 and any later releases.
29833
- */
29834
- type $DropdownBoxSearchHelpEventParameters = sap.ui.commons.DropdownBox$SearchHelpEventParameters;
29835
-
29836
- type DropdownBox$SearchHelpEvent = sap.ui.base.Event<DropdownBox$SearchHelpEventParameters>;
29837
-
29838
- /**
29839
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Image$PressEventParameters'
29840
- * in 1.115.1 and any later releases.
29841
- */
29842
- type $ImagePressEventParameters = sap.ui.commons.Image$PressEventParameters;
29843
-
29844
- type Image$PressEvent = sap.ui.base.Event<Image$PressEventParameters>;
29845
-
29846
- /**
29847
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ImageMap$PressEventParameters'
29848
- * in 1.115.1 and any later releases.
29849
- */
29850
- type $ImageMapPressEventParameters = sap.ui.commons.ImageMap$PressEventParameters;
29851
-
29852
- type ImageMap$PressEvent = sap.ui.base.Event<ImageMap$PressEventParameters>;
29853
-
29854
- /**
29855
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'InPlaceEdit$ChangeEventParameters'
29856
- * in 1.115.1 and any later releases.
29857
- */
29858
- type $InPlaceEditChangeEventParameters = sap.ui.commons.InPlaceEdit$ChangeEventParameters;
29859
-
29860
- type InPlaceEdit$ChangeEvent = sap.ui.base.Event<InPlaceEdit$ChangeEventParameters>;
29861
-
29862
- /**
29863
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'InPlaceEdit$LiveChangeEventParameters'
29864
- * in 1.115.1 and any later releases.
29865
- */
29866
- type $InPlaceEditLiveChangeEventParameters = sap.ui.commons.InPlaceEdit$LiveChangeEventParameters;
29867
-
29868
- type InPlaceEdit$LiveChangeEvent = sap.ui.base.Event<InPlaceEdit$LiveChangeEventParameters>;
29869
-
29870
- /**
29871
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Link$PressEventParameters'
29872
- * in 1.115.1 and any later releases.
29873
- */
29874
- type $LinkPressEventParameters = sap.ui.commons.Link$PressEventParameters;
29875
-
29876
- type Link$PressEvent = sap.ui.base.Event<Link$PressEventParameters>;
29877
-
29878
- /**
29879
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ListBox$SelectEventParameters'
29880
- * in 1.115.1 and any later releases.
29881
- */
29882
- type $ListBoxSelectEventParameters = sap.ui.commons.ListBox$SelectEventParameters;
29883
-
29884
- type ListBox$SelectEvent = sap.ui.base.Event<ListBox$SelectEventParameters>;
29885
-
29886
- /**
29887
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MenuButton$ItemSelectedEventParameters'
29888
- * in 1.115.1 and any later releases.
29889
- */
29890
- type $MenuButtonItemSelectedEventParameters = sap.ui.commons.MenuButton$ItemSelectedEventParameters;
29891
-
29892
- type MenuButton$ItemSelectedEvent = sap.ui.base.Event<MenuButton$ItemSelectedEventParameters>;
29893
-
29894
- /**
29895
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MenuButton$PressEventParameters'
29896
- * in 1.115.1 and any later releases.
29897
- */
29898
- type $MenuButtonPressEventParameters = sap.ui.commons.MenuButton$PressEventParameters;
29899
-
29900
- type MenuButton$PressEvent = sap.ui.base.Event<MenuButton$PressEventParameters>;
29901
-
29902
- /**
29903
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MessageToast$NextEventParameters'
29904
- * in 1.115.1 and any later releases.
29905
- */
29906
- type $MessageToastNextEventParameters = sap.ui.commons.MessageToast$NextEventParameters;
29907
-
29908
- type MessageToast$NextEvent = sap.ui.base.Event<MessageToast$NextEventParameters>;
29909
-
29910
- /**
29911
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Paginator$PageEventParameters'
29912
- * in 1.115.1 and any later releases.
29913
- */
29914
- type $PaginatorPageEventParameters = sap.ui.commons.Paginator$PageEventParameters;
29915
-
29916
- type Paginator$PageEvent = sap.ui.base.Event<Paginator$PageEventParameters>;
29917
-
29918
- /**
29919
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RadioButton$SelectEventParameters'
29920
- * in 1.115.1 and any later releases.
29921
- */
29922
- type $RadioButtonSelectEventParameters = sap.ui.commons.RadioButton$SelectEventParameters;
29923
-
29924
- type RadioButton$SelectEvent = sap.ui.base.Event<RadioButton$SelectEventParameters>;
29925
-
29926
- /**
29927
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RadioButtonGroup$SelectEventParameters'
29928
- * in 1.115.1 and any later releases.
29929
- */
29930
- type $RadioButtonGroupSelectEventParameters = sap.ui.commons.RadioButtonGroup$SelectEventParameters;
29931
-
29932
- type RadioButtonGroup$SelectEvent = sap.ui.base.Event<RadioButtonGroup$SelectEventParameters>;
29933
-
29934
- /**
29935
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RatingIndicator$ChangeEventParameters'
29936
- * in 1.115.1 and any later releases.
29937
- */
29938
- type $RatingIndicatorChangeEventParameters = sap.ui.commons.RatingIndicator$ChangeEventParameters;
29939
-
29940
- type RatingIndicator$ChangeEvent = sap.ui.base.Event<RatingIndicator$ChangeEventParameters>;
29941
-
29942
- /**
29943
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ResponsiveContainer$RangeSwitchEventParameters'
29944
- * in 1.115.1 and any later releases.
29945
- */
29946
- type $ResponsiveContainerRangeSwitchEventParameters = sap.ui.commons.ResponsiveContainer$RangeSwitchEventParameters;
29947
-
29948
- type ResponsiveContainer$RangeSwitchEvent = sap.ui.base.Event<ResponsiveContainer$RangeSwitchEventParameters>;
29949
-
29950
- /**
29951
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RoadMap$StepExpandedEventParameters'
29952
- * in 1.115.1 and any later releases.
29953
- */
29954
- type $RoadMapStepExpandedEventParameters = sap.ui.commons.RoadMap$StepExpandedEventParameters;
29955
-
29956
- type RoadMap$StepExpandedEvent = sap.ui.base.Event<RoadMap$StepExpandedEventParameters>;
29957
-
29958
- /**
29959
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RoadMap$StepSelectedEventParameters'
29960
- * in 1.115.1 and any later releases.
29961
- */
29962
- type $RoadMapStepSelectedEventParameters = sap.ui.commons.RoadMap$StepSelectedEventParameters;
29963
-
29964
- type RoadMap$StepSelectedEvent = sap.ui.base.Event<RoadMap$StepSelectedEventParameters>;
29965
-
29966
- /**
29967
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RowRepeater$FilterEventParameters'
29968
- * in 1.115.1 and any later releases.
29969
- */
29970
- type $RowRepeaterFilterEventParameters = sap.ui.commons.RowRepeater$FilterEventParameters;
29971
-
29972
- type RowRepeater$FilterEvent = sap.ui.base.Event<RowRepeater$FilterEventParameters>;
29973
-
29974
- /**
29975
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RowRepeater$PageEventParameters'
29976
- * in 1.115.1 and any later releases.
29977
- */
29978
- type $RowRepeaterPageEventParameters = sap.ui.commons.RowRepeater$PageEventParameters;
29979
-
29980
- type RowRepeater$PageEvent = sap.ui.base.Event<RowRepeater$PageEventParameters>;
29981
-
29982
- /**
29983
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RowRepeater$ResizeEventParameters'
29984
- * in 1.115.1 and any later releases.
29985
- */
29986
- type $RowRepeaterResizeEventParameters = sap.ui.commons.RowRepeater$ResizeEventParameters;
29987
-
29988
- type RowRepeater$ResizeEvent = sap.ui.base.Event<RowRepeater$ResizeEventParameters>;
29989
-
29990
- /**
29991
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RowRepeater$SortEventParameters'
29992
- * in 1.115.1 and any later releases.
29993
- */
29994
- type $RowRepeaterSortEventParameters = sap.ui.commons.RowRepeater$SortEventParameters;
29995
-
29996
- type RowRepeater$SortEvent = sap.ui.base.Event<RowRepeater$SortEventParameters>;
29997
-
29998
- /**
29999
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'SearchField$SearchEventParameters'
30000
- * in 1.115.1 and any later releases.
30001
- */
30002
- type $SearchFieldSearchEventParameters = sap.ui.commons.SearchField$SearchEventParameters;
30003
-
30004
- type SearchField$SearchEvent = sap.ui.base.Event<SearchField$SearchEventParameters>;
30005
-
30006
- /**
30007
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'SearchField$SuggestEventParameters'
30008
- * in 1.115.1 and any later releases.
30009
- */
30010
- type $SearchFieldSuggestEventParameters = sap.ui.commons.SearchField$SuggestEventParameters;
30011
-
30012
- type SearchField$SuggestEvent = sap.ui.base.Event<SearchField$SuggestEventParameters>;
30013
-
30014
- /**
30015
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'SegmentedButton$SelectEventParameters'
30016
- * in 1.115.1 and any later releases.
30017
- */
30018
- type $SegmentedButtonSelectEventParameters = sap.ui.commons.SegmentedButton$SelectEventParameters;
30019
-
30020
- type SegmentedButton$SelectEvent = sap.ui.base.Event<SegmentedButton$SelectEventParameters>;
30021
-
30022
- /**
30023
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Slider$ChangeEventParameters'
30024
- * in 1.115.1 and any later releases.
30025
- */
30026
- type $SliderChangeEventParameters = sap.ui.commons.Slider$ChangeEventParameters;
30027
-
30028
- type Slider$ChangeEvent = sap.ui.base.Event<Slider$ChangeEventParameters>;
30029
-
30030
- /**
30031
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Slider$LiveChangeEventParameters'
30032
- * in 1.115.1 and any later releases.
30033
- */
30034
- type $SliderLiveChangeEventParameters = sap.ui.commons.Slider$LiveChangeEventParameters;
30035
-
30036
- type Slider$LiveChangeEvent = sap.ui.base.Event<Slider$LiveChangeEventParameters>;
30037
-
30038
- /**
30039
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TabStrip$CloseEventParameters'
30040
- * in 1.115.1 and any later releases.
30041
- */
30042
- type $TabStripCloseEventParameters = sap.ui.commons.TabStrip$CloseEventParameters;
30043
-
30044
- type TabStrip$CloseEvent = sap.ui.base.Event<TabStrip$CloseEventParameters>;
30045
-
30046
- /**
30047
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TabStrip$SelectEventParameters'
30048
- * in 1.115.1 and any later releases.
30049
- */
30050
- type $TabStripSelectEventParameters = sap.ui.commons.TabStrip$SelectEventParameters;
30051
-
30052
- type TabStrip$SelectEvent = sap.ui.base.Event<TabStrip$SelectEventParameters>;
30053
-
30054
- /**
30055
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TextField$ChangeEventParameters'
30056
- * in 1.115.1 and any later releases.
30057
- */
30058
- type $TextFieldChangeEventParameters = sap.ui.commons.TextField$ChangeEventParameters;
30059
-
30060
- type TextField$ChangeEvent = sap.ui.base.Event<TextField$ChangeEventParameters>;
30061
-
30062
- /**
30063
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TextField$LiveChangeEventParameters'
30064
- * in 1.115.1 and any later releases.
30065
- */
30066
- type $TextFieldLiveChangeEventParameters = sap.ui.commons.TextField$LiveChangeEventParameters;
30067
-
30068
- type TextField$LiveChangeEvent = sap.ui.base.Event<TextField$LiveChangeEventParameters>;
30069
-
30070
- /**
30071
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Tree$SelectEventParameters'
30072
- * in 1.115.1 and any later releases.
30073
- */
30074
- type $TreeSelectEventParameters = sap.ui.commons.Tree$SelectEventParameters;
30075
-
30076
- type Tree$SelectEvent = sap.ui.base.Event<Tree$SelectEventParameters>;
30077
-
30078
- /**
30079
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Tree$SelectionChangeEventParameters'
30080
- * in 1.115.1 and any later releases.
30081
- */
30082
- type $TreeSelectionChangeEventParameters = sap.ui.commons.Tree$SelectionChangeEventParameters;
30083
-
30084
- type Tree$SelectionChangeEvent = sap.ui.base.Event<Tree$SelectionChangeEventParameters>;
30085
-
30086
- /**
30087
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TreeNode$SelectedEventParameters'
30088
- * in 1.115.1 and any later releases.
30089
- */
30090
- type $TreeNodeSelectedEventParameters = sap.ui.commons.TreeNode$SelectedEventParameters;
30091
-
30092
- type TreeNode$SelectedEvent = sap.ui.base.Event<TreeNode$SelectedEventParameters>;
30093
-
30094
- /**
30095
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TreeNode$ToggleOpenStateEventParameters'
30096
- * in 1.115.1 and any later releases.
30097
- */
30098
- type $TreeNodeToggleOpenStateEventParameters = sap.ui.commons.TreeNode$ToggleOpenStateEventParameters;
30099
-
30100
- type TreeNode$ToggleOpenStateEvent = sap.ui.base.Event<TreeNode$ToggleOpenStateEventParameters>;
30101
-
30102
- /**
30103
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TriStateCheckBox$ChangeEventParameters'
30104
- * in 1.115.1 and any later releases.
30105
- */
30106
- type $TriStateCheckBoxChangeEventParameters = sap.ui.commons.TriStateCheckBox$ChangeEventParameters;
30107
-
30108
- type TriStateCheckBox$ChangeEvent = sap.ui.base.Event<TriStateCheckBox$ChangeEventParameters>;
30109
-
30110
- /**
30111
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ValueHelpField$ValueHelpRequestEventParameters'
30112
- * in 1.115.1 and any later releases.
30113
- */
30114
- type $ValueHelpFieldValueHelpRequestEventParameters = sap.ui.commons.ValueHelpField$ValueHelpRequestEventParameters;
30115
-
30116
- type ValueHelpField$ValueHelpRequestEvent = sap.ui.base.Event<ValueHelpField$ValueHelpRequestEventParameters>;
29676
+ type Accordion$SectionCloseEvent = sap.ui.base.Event<
29677
+ Accordion$SectionCloseEventParameters,
29678
+ Accordion
29679
+ >;
29680
+
29681
+ type Accordion$SectionOpenEvent = sap.ui.base.Event<
29682
+ Accordion$SectionOpenEventParameters,
29683
+ Accordion
29684
+ >;
29685
+
29686
+ type Accordion$SectionsReorderEvent = sap.ui.base.Event<
29687
+ Accordion$SectionsReorderEventParameters,
29688
+ Accordion
29689
+ >;
29690
+
29691
+ type AccordionSection$ScrollEvent = sap.ui.base.Event<
29692
+ AccordionSection$ScrollEventParameters,
29693
+ AccordionSection
29694
+ >;
29695
+
29696
+ type ApplicationHeader$LogoffEvent = sap.ui.base.Event<
29697
+ ApplicationHeader$LogoffEventParameters,
29698
+ ApplicationHeader
29699
+ >;
29700
+
29701
+ type AutoComplete$SuggestEvent = sap.ui.base.Event<
29702
+ AutoComplete$SuggestEventParameters,
29703
+ AutoComplete
29704
+ >;
29705
+
29706
+ type Button$PressEvent = sap.ui.base.Event<
29707
+ Button$PressEventParameters,
29708
+ Button
29709
+ >;
29710
+
29711
+ type CalloutBase$BeforeOpenEvent = sap.ui.base.Event<
29712
+ CalloutBase$BeforeOpenEventParameters,
29713
+ CalloutBase
29714
+ >;
29715
+
29716
+ type CalloutBase$CloseEvent = sap.ui.base.Event<
29717
+ CalloutBase$CloseEventParameters,
29718
+ CalloutBase
29719
+ >;
29720
+
29721
+ type CalloutBase$OpenEvent = sap.ui.base.Event<
29722
+ CalloutBase$OpenEventParameters,
29723
+ CalloutBase
29724
+ >;
29725
+
29726
+ type CalloutBase$OpenedEvent = sap.ui.base.Event<
29727
+ CalloutBase$OpenedEventParameters,
29728
+ CalloutBase
29729
+ >;
29730
+
29731
+ type CheckBox$ChangeEvent = sap.ui.base.Event<
29732
+ CheckBox$ChangeEventParameters,
29733
+ CheckBox
29734
+ >;
29735
+
29736
+ type ComboBox$ChangeEvent = sap.ui.base.Event<
29737
+ ComboBox$ChangeEventParameters,
29738
+ ComboBox
29739
+ >;
29740
+
29741
+ type Dialog$ClosedEvent = sap.ui.base.Event<
29742
+ Dialog$ClosedEventParameters,
29743
+ Dialog
29744
+ >;
29745
+
29746
+ type DropdownBox$SearchHelpEvent = sap.ui.base.Event<
29747
+ DropdownBox$SearchHelpEventParameters,
29748
+ DropdownBox
29749
+ >;
29750
+
29751
+ type Image$PressEvent = sap.ui.base.Event<
29752
+ Image$PressEventParameters,
29753
+ Image
29754
+ >;
29755
+
29756
+ type ImageMap$PressEvent = sap.ui.base.Event<
29757
+ ImageMap$PressEventParameters,
29758
+ ImageMap
29759
+ >;
29760
+
29761
+ type InPlaceEdit$ChangeEvent = sap.ui.base.Event<
29762
+ InPlaceEdit$ChangeEventParameters,
29763
+ InPlaceEdit
29764
+ >;
29765
+
29766
+ type InPlaceEdit$LiveChangeEvent = sap.ui.base.Event<
29767
+ InPlaceEdit$LiveChangeEventParameters,
29768
+ InPlaceEdit
29769
+ >;
29770
+
29771
+ type Link$PressEvent = sap.ui.base.Event<Link$PressEventParameters, Link>;
29772
+
29773
+ type ListBox$SelectEvent = sap.ui.base.Event<
29774
+ ListBox$SelectEventParameters,
29775
+ ListBox
29776
+ >;
29777
+
29778
+ type MenuButton$ItemSelectedEvent = sap.ui.base.Event<
29779
+ MenuButton$ItemSelectedEventParameters,
29780
+ MenuButton
29781
+ >;
29782
+
29783
+ type MenuButton$PressEvent = sap.ui.base.Event<
29784
+ MenuButton$PressEventParameters,
29785
+ MenuButton
29786
+ >;
29787
+
29788
+ type MessageToast$NextEvent = sap.ui.base.Event<
29789
+ MessageToast$NextEventParameters,
29790
+ MessageToast
29791
+ >;
29792
+
29793
+ type Paginator$PageEvent = sap.ui.base.Event<
29794
+ Paginator$PageEventParameters,
29795
+ Paginator
29796
+ >;
29797
+
29798
+ type RadioButton$SelectEvent = sap.ui.base.Event<
29799
+ RadioButton$SelectEventParameters,
29800
+ RadioButton
29801
+ >;
29802
+
29803
+ type RadioButtonGroup$SelectEvent = sap.ui.base.Event<
29804
+ RadioButtonGroup$SelectEventParameters,
29805
+ RadioButtonGroup
29806
+ >;
29807
+
29808
+ type RatingIndicator$ChangeEvent = sap.ui.base.Event<
29809
+ RatingIndicator$ChangeEventParameters,
29810
+ RatingIndicator
29811
+ >;
29812
+
29813
+ type ResponsiveContainer$RangeSwitchEvent = sap.ui.base.Event<
29814
+ ResponsiveContainer$RangeSwitchEventParameters,
29815
+ ResponsiveContainer
29816
+ >;
29817
+
29818
+ type RoadMap$StepExpandedEvent = sap.ui.base.Event<
29819
+ RoadMap$StepExpandedEventParameters,
29820
+ RoadMap
29821
+ >;
29822
+
29823
+ type RoadMap$StepSelectedEvent = sap.ui.base.Event<
29824
+ RoadMap$StepSelectedEventParameters,
29825
+ RoadMap
29826
+ >;
29827
+
29828
+ type RowRepeater$FilterEvent = sap.ui.base.Event<
29829
+ RowRepeater$FilterEventParameters,
29830
+ RowRepeater
29831
+ >;
29832
+
29833
+ type RowRepeater$PageEvent = sap.ui.base.Event<
29834
+ RowRepeater$PageEventParameters,
29835
+ RowRepeater
29836
+ >;
29837
+
29838
+ type RowRepeater$ResizeEvent = sap.ui.base.Event<
29839
+ RowRepeater$ResizeEventParameters,
29840
+ RowRepeater
29841
+ >;
29842
+
29843
+ type RowRepeater$SortEvent = sap.ui.base.Event<
29844
+ RowRepeater$SortEventParameters,
29845
+ RowRepeater
29846
+ >;
29847
+
29848
+ type SearchField$SearchEvent = sap.ui.base.Event<
29849
+ SearchField$SearchEventParameters,
29850
+ SearchField
29851
+ >;
29852
+
29853
+ type SearchField$SuggestEvent = sap.ui.base.Event<
29854
+ SearchField$SuggestEventParameters,
29855
+ SearchField
29856
+ >;
29857
+
29858
+ type SegmentedButton$SelectEvent = sap.ui.base.Event<
29859
+ SegmentedButton$SelectEventParameters,
29860
+ SegmentedButton
29861
+ >;
29862
+
29863
+ type Slider$ChangeEvent = sap.ui.base.Event<
29864
+ Slider$ChangeEventParameters,
29865
+ Slider
29866
+ >;
29867
+
29868
+ type Slider$LiveChangeEvent = sap.ui.base.Event<
29869
+ Slider$LiveChangeEventParameters,
29870
+ Slider
29871
+ >;
29872
+
29873
+ type TabStrip$CloseEvent = sap.ui.base.Event<
29874
+ TabStrip$CloseEventParameters,
29875
+ TabStrip
29876
+ >;
29877
+
29878
+ type TabStrip$SelectEvent = sap.ui.base.Event<
29879
+ TabStrip$SelectEventParameters,
29880
+ TabStrip
29881
+ >;
29882
+
29883
+ type TextField$ChangeEvent = sap.ui.base.Event<
29884
+ TextField$ChangeEventParameters,
29885
+ TextField
29886
+ >;
29887
+
29888
+ type TextField$LiveChangeEvent = sap.ui.base.Event<
29889
+ TextField$LiveChangeEventParameters,
29890
+ TextField
29891
+ >;
29892
+
29893
+ type Tree$SelectEvent = sap.ui.base.Event<
29894
+ Tree$SelectEventParameters,
29895
+ Tree
29896
+ >;
29897
+
29898
+ type Tree$SelectionChangeEvent = sap.ui.base.Event<
29899
+ Tree$SelectionChangeEventParameters,
29900
+ Tree
29901
+ >;
29902
+
29903
+ type TreeNode$SelectedEvent = sap.ui.base.Event<
29904
+ TreeNode$SelectedEventParameters,
29905
+ TreeNode
29906
+ >;
29907
+
29908
+ type TreeNode$ToggleOpenStateEvent = sap.ui.base.Event<
29909
+ TreeNode$ToggleOpenStateEventParameters,
29910
+ TreeNode
29911
+ >;
29912
+
29913
+ type TriStateCheckBox$ChangeEvent = sap.ui.base.Event<
29914
+ TriStateCheckBox$ChangeEventParameters,
29915
+ TriStateCheckBox
29916
+ >;
29917
+
29918
+ type ValueHelpField$ValueHelpRequestEvent = sap.ui.base.Event<
29919
+ ValueHelpField$ValueHelpRequestEventParameters,
29920
+ ValueHelpField
29921
+ >;
30117
29922
  }
30118
29923
  }
30119
29924