@openui5/ts-types 1.92.0 → 1.93.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.92.0
1
+ // For Library Version: 1.93.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -121,12 +121,12 @@ declare namespace sap {
121
121
  *
122
122
  * For ‘Update’, please refer to event ‘feedSubmit’
123
123
  */
124
- actionSelected?: Function;
124
+ actionSelected?: (oEvent: sap.ui.base.Event) => void;
125
125
 
126
126
  /**
127
127
  * Fired when a new feed entry is submitted.
128
128
  */
129
- feedSubmit?: Function;
129
+ feedSubmit?: (oEvent: sap.ui.base.Event) => void;
130
130
  }
131
131
 
132
132
  interface $CollectionSettings extends sap.ui.core.$ElementSettings {
@@ -163,12 +163,12 @@ declare namespace sap {
163
163
  /**
164
164
  * Fired when ever the selected items changer
165
165
  */
166
- selectionChanged?: Function;
166
+ selectionChanged?: (oEvent: sap.ui.base.Event) => void;
167
167
 
168
168
  /**
169
169
  * Fires if a property has changed, and the collection inspector needs to do something after that
170
170
  */
171
- propertyChanged?: Function;
171
+ propertyChanged?: (oEvent: sap.ui.base.Event) => void;
172
172
  }
173
173
 
174
174
  interface $CollectionInspectorSettings
@@ -209,17 +209,17 @@ declare namespace sap {
209
209
  /**
210
210
  * Event is fired if user selects a collection
211
211
  */
212
- collectionSelected?: Function;
212
+ collectionSelected?: (oEvent: sap.ui.base.Event) => void;
213
213
 
214
214
  /**
215
215
  * Fires when an item in a collection is selected
216
216
  */
217
- itemSelectionChanged?: Function;
217
+ itemSelectionChanged?: (oEvent: sap.ui.base.Event) => void;
218
218
 
219
219
  /**
220
220
  * Fires when the edit button is clicked
221
221
  */
222
- editCollection?: Function;
222
+ editCollection?: (oEvent: sap.ui.base.Event) => void;
223
223
  }
224
224
 
225
225
  interface $DataSetSettings extends sap.ui.core.$ControlSettings {
@@ -277,12 +277,12 @@ declare namespace sap {
277
277
  /**
278
278
  * selection Changed
279
279
  */
280
- selectionChanged?: Function;
280
+ selectionChanged?: (oEvent: sap.ui.base.Event) => void;
281
281
 
282
282
  /**
283
283
  * Event which is fired when the user triggers a search
284
284
  */
285
- search?: Function;
285
+ search?: (oEvent: sap.ui.base.Event) => void;
286
286
  }
287
287
 
288
288
  interface $DataSetItemSettings extends sap.ui.core.$ElementSettings {
@@ -311,7 +311,7 @@ declare namespace sap {
311
311
  /**
312
312
  * Event Fired when Datset item is selected.
313
313
  */
314
- selected?: Function;
314
+ selected?: (oEvent: sap.ui.base.Event) => void;
315
315
  }
316
316
 
317
317
  interface $DataSetSimpleViewSettings
@@ -423,12 +423,12 @@ declare namespace sap {
423
423
  /**
424
424
  * Event is fired when the search button is clicked
425
425
  */
426
- search?: Function;
426
+ search?: (oEvent: sap.ui.base.Event) => void;
427
427
 
428
428
  /**
429
429
  * Event which is fired when an attribute is selected or unselected.
430
430
  */
431
- refineSearch?: Function;
431
+ refineSearch?: (oEvent: sap.ui.base.Event) => void;
432
432
  }
433
433
 
434
434
  interface $ExactAreaSettings extends sap.ui.core.$ControlSettings {
@@ -529,7 +529,7 @@ declare namespace sap {
529
529
  * the corresponding ExactAttribute is selected, it was already selected when a handler is attached or function
530
530
  * getAttributes() is called.
531
531
  */
532
- supplyAttributes?: Function;
532
+ supplyAttributes?: (oEvent: sap.ui.base.Event) => void;
533
533
  }
534
534
 
535
535
  interface $ExactBrowserSettings extends sap.ui.core.$ControlSettings {
@@ -619,12 +619,12 @@ declare namespace sap {
619
619
  /**
620
620
  * Event is fired when an attribute is selected or unselected.
621
621
  */
622
- attributeSelected?: Function;
622
+ attributeSelected?: (oEvent: sap.ui.base.Event) => void;
623
623
 
624
624
  /**
625
625
  * Event is fired when an attribute is selected or unselected.
626
626
  */
627
- save?: Function;
627
+ save?: (oEvent: sap.ui.base.Event) => void;
628
628
  }
629
629
 
630
630
  interface $ExactListSettings extends sap.ui.core.$ControlSettings {
@@ -660,7 +660,7 @@ declare namespace sap {
660
660
  /**
661
661
  * Event which is fired when an attribute is selected/unselected
662
662
  */
663
- attributeSelected?: Function;
663
+ attributeSelected?: (oEvent: sap.ui.base.Event) => void;
664
664
  }
665
665
 
666
666
  interface $FacetFilterSettings extends sap.ui.core.$ControlSettings {
@@ -723,7 +723,7 @@ declare namespace sap {
723
723
  /**
724
724
  * On Select event.
725
725
  */
726
- select?: Function;
726
+ select?: (oEvent: sap.ui.base.Event) => void;
727
727
  }
728
728
 
729
729
  interface $FeedSettings extends sap.ui.core.$ControlSettings {
@@ -776,27 +776,27 @@ declare namespace sap {
776
776
  /**
777
777
  * Event is fired when the filter is changed
778
778
  */
779
- filterChange?: Function;
779
+ filterChange?: (oEvent: sap.ui.base.Event) => void;
780
780
 
781
781
  /**
782
782
  * Event is fired when the search function on SearchField is triggered
783
783
  */
784
- search?: Function;
784
+ search?: (oEvent: sap.ui.base.Event) => void;
785
785
 
786
786
  /**
787
787
  * Event is fired when a new chunk is added
788
788
  */
789
- chunkAdded?: Function;
789
+ chunkAdded?: (oEvent: sap.ui.base.Event) => void;
790
790
 
791
791
  /**
792
792
  * Event is fired when an item from the tools MenuButton was selected
793
793
  */
794
- toolsItemSelected?: Function;
794
+ toolsItemSelected?: (oEvent: sap.ui.base.Event) => void;
795
795
 
796
796
  /**
797
797
  * Event is fired when the live mode has changed
798
798
  */
799
- toggleLive?: Function;
799
+ toggleLive?: (oEvent: sap.ui.base.Event) => void;
800
800
  }
801
801
 
802
802
  interface $FeedChunkSettings extends sap.ui.core.$ControlSettings {
@@ -916,48 +916,48 @@ declare namespace sap {
916
916
  /**
917
917
  * Event is fired when the deletion button is pressed.
918
918
  */
919
- deleted?: Function;
919
+ deleted?: (oEvent: sap.ui.base.Event) => void;
920
920
 
921
921
  /**
922
922
  * Event is raised when a comment is added to the entry. This event is not supported for comment chunks.
923
923
  */
924
- commentAdded?: Function;
924
+ commentAdded?: (oEvent: sap.ui.base.Event) => void;
925
925
 
926
926
  /**
927
927
  * Event is raised when the user clicks to flag the entry. This event is not supported for comment chunks.
928
928
  */
929
- toggleFlagged?: Function;
929
+ toggleFlagged?: (oEvent: sap.ui.base.Event) => void;
930
930
 
931
931
  /**
932
932
  * Event is fired when the thumbnail or the name of the sender is clicked.
933
933
  */
934
- senderClicked?: Function;
934
+ senderClicked?: (oEvent: sap.ui.base.Event) => void;
935
935
 
936
936
  /**
937
937
  * Click on a @-reference
938
938
  */
939
- referenceClicked?: Function;
939
+ referenceClicked?: (oEvent: sap.ui.base.Event) => void;
940
940
 
941
941
  /**
942
942
  * Event is raised when the user clicks to set the entry as favorite. This event is not supported for comment
943
943
  * chunks.
944
944
  */
945
- toggleFavorite?: Function;
945
+ toggleFavorite?: (oEvent: sap.ui.base.Event) => void;
946
946
 
947
947
  /**
948
948
  * Event is fired when the inspect button was pressed
949
949
  */
950
- inspect?: Function;
950
+ inspect?: (oEvent: sap.ui.base.Event) => void;
951
951
 
952
952
  /**
953
953
  * Event is raised when the user clicks to share the entry. This event is not supported for comment chunks.
954
954
  */
955
- toggleShared?: Function;
955
+ toggleShared?: (oEvent: sap.ui.base.Event) => void;
956
956
 
957
957
  /**
958
958
  * Event is fired when an item from the action menu button was selected.
959
959
  */
960
- actionItemSelected?: Function;
960
+ actionItemSelected?: (oEvent: sap.ui.base.Event) => void;
961
961
  }
962
962
 
963
963
  interface $FeederSettings extends sap.ui.core.$ControlSettings {
@@ -992,7 +992,7 @@ declare namespace sap {
992
992
  /**
993
993
  * Event is fired when the entered text is submitted
994
994
  */
995
- submit?: Function;
995
+ submit?: (oEvent: sap.ui.base.Event) => void;
996
996
  }
997
997
 
998
998
  interface $NavigationBarSettings extends sap.ui.core.$ControlSettings {
@@ -1036,7 +1036,7 @@ declare namespace sap {
1036
1036
  /**
1037
1037
  * Event is fired when an item is selected by the user
1038
1038
  */
1039
- select?: Function;
1039
+ select?: (oEvent: sap.ui.base.Event) => void;
1040
1040
  }
1041
1041
 
1042
1042
  interface $NavigationItemSettings extends sap.ui.core.$ItemSettings {
@@ -1105,7 +1105,7 @@ declare namespace sap {
1105
1105
  * Event is fired when the bar wants to be displayed depending on given flag. This allows the application
1106
1106
  * to decide what to do.
1107
1107
  */
1108
- display?: Function;
1108
+ display?: (oEvent: sap.ui.base.Event) => void;
1109
1109
 
1110
1110
  /**
1111
1111
  * @SINCE 1.12.2
@@ -1114,7 +1114,7 @@ declare namespace sap {
1114
1114
  * The event itself can be used from SAPUI5-version 1.12.2 since there was a bug in the previous versions
1115
1115
  * firing this event.
1116
1116
  */
1117
- resize?: Function;
1117
+ resize?: (oEvent: sap.ui.base.Event) => void;
1118
1118
  }
1119
1119
 
1120
1120
  interface $NotifierSettings extends sap.ui.core.$ElementSettings {
@@ -1139,7 +1139,7 @@ declare namespace sap {
1139
1139
  /**
1140
1140
  * Event is fired when a message of the notifiers was selected.
1141
1141
  */
1142
- messageSelected?: Function;
1142
+ messageSelected?: (oEvent: sap.ui.base.Event) => void;
1143
1143
  }
1144
1144
 
1145
1145
  interface $OverlaySettings extends sap.ui.core.$ControlSettings {
@@ -1160,22 +1160,22 @@ declare namespace sap {
1160
1160
  /**
1161
1161
  * Event is fired when the Overlay starts closing.
1162
1162
  */
1163
- close?: Function;
1163
+ close?: (oEvent: sap.ui.base.Event) => void;
1164
1164
 
1165
1165
  /**
1166
1166
  * Event is fired when the Overlay is closed.
1167
1167
  */
1168
- closed?: Function;
1168
+ closed?: (oEvent: sap.ui.base.Event) => void;
1169
1169
 
1170
1170
  /**
1171
1171
  * Event is fired when the 'Open' button of the Overlay is clicked.
1172
1172
  */
1173
- openNew?: Function;
1173
+ openNew?: (oEvent: sap.ui.base.Event) => void;
1174
1174
 
1175
1175
  /**
1176
1176
  * Event is fired when the Overlay is opened.
1177
1177
  */
1178
- open?: Function;
1178
+ open?: (oEvent: sap.ui.base.Event) => void;
1179
1179
  }
1180
1180
 
1181
1181
  interface $OverlayContainerSettings extends sap.ui.ux3.$OverlaySettings {
@@ -1331,18 +1331,18 @@ declare namespace sap {
1331
1331
  /**
1332
1332
  * Action is selected in Action Bar
1333
1333
  */
1334
- actionSelected?: Function;
1334
+ actionSelected?: (oEvent: sap.ui.base.Event) => void;
1335
1335
 
1336
1336
  /**
1337
1337
  * Fired when a new feed entry is submitted.
1338
1338
  */
1339
- feedSubmit?: Function;
1339
+ feedSubmit?: (oEvent: sap.ui.base.Event) => void;
1340
1340
 
1341
1341
  /**
1342
1342
  * Event is fired when a user clicks on the firstTitle link. Call the preventDefault method of the event
1343
1343
  * object to cancel browser navigation.
1344
1344
  */
1345
- navigate?: Function;
1345
+ navigate?: (oEvent: sap.ui.base.Event) => void;
1346
1346
  }
1347
1347
 
1348
1348
  interface $ShellSettings extends sap.ui.core.$ControlSettings {
@@ -1544,28 +1544,28 @@ declare namespace sap {
1544
1544
  * is responsible for displaying the correct content for the selected one of the newly created sub-items.
1545
1545
  * The Shell will currently always mark the first sub-item as selected.
1546
1546
  */
1547
- worksetItemSelected?: Function;
1547
+ worksetItemSelected?: (oEvent: sap.ui.base.Event) => void;
1548
1548
 
1549
1549
  /**
1550
1550
  * An item in the right-hand-side pane bar has been selected, the pane is now visible and can be filled
1551
1551
  * with UI elements.
1552
1552
  */
1553
- paneBarItemSelected?: Function;
1553
+ paneBarItemSelected?: (oEvent: sap.ui.base.Event) => void;
1554
1554
 
1555
1555
  /**
1556
1556
  * Fired when the user clicks the "Log-off" button
1557
1557
  */
1558
- logout?: Function;
1558
+ logout?: (oEvent: sap.ui.base.Event) => void;
1559
1559
 
1560
1560
  /**
1561
1561
  * Fired when search has been triggered.
1562
1562
  */
1563
- search?: Function;
1563
+ search?: (oEvent: sap.ui.base.Event) => void;
1564
1564
 
1565
1565
  /**
1566
1566
  * Fired when a new feed entry is submitted.
1567
1567
  */
1568
- feedSubmit?: Function;
1568
+ feedSubmit?: (oEvent: sap.ui.base.Event) => void;
1569
1569
 
1570
1570
  /**
1571
1571
  * @SINCE 1.12.0
@@ -1573,7 +1573,7 @@ declare namespace sap {
1573
1573
  * Fired after a side pane of the shell is closed. It is also fired, when an open pane is closed by calling
1574
1574
  * setShowPane(false), if and only if the pane was opened before.
1575
1575
  */
1576
- paneClosed?: Function;
1576
+ paneClosed?: (oEvent: sap.ui.base.Event) => void;
1577
1577
  }
1578
1578
 
1579
1579
  interface $ThingActionSettings extends sap.ui.core.$ElementSettings {
@@ -1590,7 +1590,7 @@ declare namespace sap {
1590
1590
  /**
1591
1591
  * Event will be fired when the action was triggered.
1592
1592
  */
1593
- select?: Function;
1593
+ select?: (oEvent: sap.ui.base.Event) => void;
1594
1594
  }
1595
1595
 
1596
1596
  interface $ThingGroupSettings extends sap.ui.core.$ElementSettings {
@@ -1741,18 +1741,18 @@ declare namespace sap {
1741
1741
  /**
1742
1742
  * Further thing related Action selected
1743
1743
  */
1744
- actionSelected?: Function;
1744
+ actionSelected?: (oEvent: sap.ui.base.Event) => void;
1745
1745
 
1746
1746
  /**
1747
1747
  * Event for facet selection. The application is responsible for displaying the correct content for the
1748
1748
  * selected one. The ThingInspector will currently always mark the first facet as selected.
1749
1749
  */
1750
- facetSelected?: Function;
1750
+ facetSelected?: (oEvent: sap.ui.base.Event) => void;
1751
1751
 
1752
1752
  /**
1753
1753
  * Fired when a new feed entry is submitted.
1754
1754
  */
1755
- feedSubmit?: Function;
1755
+ feedSubmit?: (oEvent: sap.ui.base.Event) => void;
1756
1756
  }
1757
1757
 
1758
1758
  interface $ThingViewerSettings extends sap.ui.core.$ControlSettings {
@@ -1837,7 +1837,7 @@ declare namespace sap {
1837
1837
  * Event for facet selection. The application is responsible for displaying the correct content for the
1838
1838
  * selected one. The ThingInspector will currently always mark the first facet as selected.
1839
1839
  */
1840
- facetSelected?: Function;
1840
+ facetSelected?: (oEvent: sap.ui.base.Event) => void;
1841
1841
  }
1842
1842
 
1843
1843
  interface $ToolPopupSettings extends sap.ui.core.$ControlSettings {
@@ -1968,37 +1968,37 @@ declare namespace sap {
1968
1968
  /**
1969
1969
  * Event is fired when the popup opens
1970
1970
  */
1971
- open?: Function;
1971
+ open?: (oEvent: sap.ui.base.Event) => void;
1972
1972
 
1973
1973
  /**
1974
1974
  * Event is fired when the popup closes because the user pressed Escape or the ToolPopup Button in the Shell.
1975
1975
  * This is called before the closing animation.
1976
1976
  */
1977
- close?: Function;
1977
+ close?: (oEvent: sap.ui.base.Event) => void;
1978
1978
 
1979
1979
  /**
1980
1980
  * Event is fired whenever the user clicks the Enter or the Enter key inside the pop up
1981
1981
  */
1982
- enter?: Function;
1982
+ enter?: (oEvent: sap.ui.base.Event) => void;
1983
1983
 
1984
1984
  /**
1985
1985
  * Event is fired when one of the icon properties is modified (Note: The icon is not rendered by the ToolPopup).
1986
1986
  * To be used by other controls which want to update the icon in their UI.
1987
1987
  */
1988
- iconChanged?: Function;
1988
+ iconChanged?: (oEvent: sap.ui.base.Event) => void;
1989
1989
 
1990
1990
  /**
1991
1991
  * This event is fired after the ToolPopup has finished its closing animation. It is called for EVERY close,
1992
1992
  * regardless of whether the user has triggered the close or whether the ToolPopup was closed via API call.
1993
1993
  */
1994
- closed?: Function;
1994
+ closed?: (oEvent: sap.ui.base.Event) => void;
1995
1995
 
1996
1996
  /**
1997
1997
  * @SINCE 1.19.0
1998
1998
  *
1999
1999
  * Event is being fired after the ToolPopup has been opened.
2000
2000
  */
2001
- opened?: Function;
2001
+ opened?: (oEvent: sap.ui.base.Event) => void;
2002
2002
  }
2003
2003
 
2004
2004
  /**
@@ -2045,6 +2045,31 @@ declare namespace sap {
2045
2045
  mSettings?: sap.ui.ux3.$ActionBarSettings
2046
2046
  );
2047
2047
 
2048
+ /**
2049
+ * Creates a new subclass of class sap.ui.ux3.ActionBar with name `sClassName` and enriches it with the
2050
+ * information contained in `oClassInfo`.
2051
+ *
2052
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2053
+ */
2054
+ static extend<T extends Record<string, unknown>>(
2055
+ /**
2056
+ * Name of the class being created
2057
+ */
2058
+ sClassName: string,
2059
+ /**
2060
+ * Object literal with information about the class
2061
+ */
2062
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.ActionBar>,
2063
+ /**
2064
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2065
+ * used by this class
2066
+ */
2067
+ FNMetaImpl?: Function
2068
+ ): Function;
2069
+ /**
2070
+ * Returns a metadata object for class sap.ui.ux3.ActionBar.
2071
+ */
2072
+ static getMetadata(): sap.ui.core.ElementMetadata;
2048
2073
  /**
2049
2074
  * Attaches event handler `fnFunction` to the {@link #event:actionSelected actionSelected} event of this
2050
2075
  * `sap.ui.ux3.ActionBar`.
@@ -2177,27 +2202,6 @@ declare namespace sap {
2177
2202
  */
2178
2203
  oListener?: object
2179
2204
  ): this;
2180
- /**
2181
- * Creates a new subclass of class sap.ui.ux3.ActionBar with name `sClassName` and enriches it with the
2182
- * information contained in `oClassInfo`.
2183
- *
2184
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2185
- */
2186
- static extend<T extends Record<string, unknown>>(
2187
- /**
2188
- * Name of the class being created
2189
- */
2190
- sClassName: string,
2191
- /**
2192
- * Object literal with information about the class
2193
- */
2194
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.ActionBar>,
2195
- /**
2196
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2197
- * used by this class
2198
- */
2199
- FNMetaImpl?: Function
2200
- ): Function;
2201
2205
  /**
2202
2206
  * Fires event {@link #event:actionSelected actionSelected} to attached listeners.
2203
2207
  */
@@ -2278,10 +2282,6 @@ declare namespace sap {
2278
2282
  * Default value is `Default`.
2279
2283
  */
2280
2284
  getFollowState(): sap.ui.ux3.FollowActionState;
2281
- /**
2282
- * Returns a metadata object for class sap.ui.ux3.ActionBar.
2283
- */
2284
- static getMetadata(): sap.ui.core.ElementMetadata;
2285
2285
  /**
2286
2286
  * Gets current value of property {@link #getShowFavorite showFavorite}.
2287
2287
  *
@@ -2561,6 +2561,31 @@ declare namespace sap {
2561
2561
  mSettings?: sap.ui.ux3.$CollectionSettings
2562
2562
  );
2563
2563
 
2564
+ /**
2565
+ * Creates a new subclass of class sap.ui.ux3.Collection with name `sClassName` and enriches it with the
2566
+ * information contained in `oClassInfo`.
2567
+ *
2568
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
2569
+ */
2570
+ static extend<T extends Record<string, unknown>>(
2571
+ /**
2572
+ * Name of the class being created
2573
+ */
2574
+ sClassName: string,
2575
+ /**
2576
+ * Object literal with information about the class
2577
+ */
2578
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.Collection>,
2579
+ /**
2580
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2581
+ * used by this class
2582
+ */
2583
+ FNMetaImpl?: Function
2584
+ ): Function;
2585
+ /**
2586
+ * Returns a metadata object for class sap.ui.ux3.Collection.
2587
+ */
2588
+ static getMetadata(): sap.ui.core.ElementMetadata;
2564
2589
  /**
2565
2590
  * Adds some item to the aggregation {@link #getItems items}.
2566
2591
  */
@@ -2570,9 +2595,7 @@ declare namespace sap {
2570
2595
  */
2571
2596
  oItem: sap.ui.core.Item
2572
2597
  ): this;
2573
- /**
2574
- *
2575
- */
2598
+
2576
2599
  addSelectedItem(
2577
2600
  /**
2578
2601
  * Id of a selectedItem which becomes an additional target of this `selectedItems` association. Alternatively,
@@ -2702,27 +2725,6 @@ declare namespace sap {
2702
2725
  */
2703
2726
  oListener?: object
2704
2727
  ): this;
2705
- /**
2706
- * Creates a new subclass of class sap.ui.ux3.Collection with name `sClassName` and enriches it with the
2707
- * information contained in `oClassInfo`.
2708
- *
2709
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
2710
- */
2711
- static extend<T extends Record<string, unknown>>(
2712
- /**
2713
- * Name of the class being created
2714
- */
2715
- sClassName: string,
2716
- /**
2717
- * Object literal with information about the class
2718
- */
2719
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.Collection>,
2720
- /**
2721
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2722
- * used by this class
2723
- */
2724
- FNMetaImpl?: Function
2725
- ): Function;
2726
2728
  /**
2727
2729
  * Fires event {@link #event:propertyChanged propertyChanged} to attached listeners.
2728
2730
  */
@@ -2755,10 +2757,6 @@ declare namespace sap {
2755
2757
  * Items in the collection
2756
2758
  */
2757
2759
  getItems(): sap.ui.core.Item[];
2758
- /**
2759
- * Returns a metadata object for class sap.ui.ux3.Collection.
2760
- */
2761
- static getMetadata(): sap.ui.core.ElementMetadata;
2762
2760
  /**
2763
2761
  * Gets current value of property {@link #getMultiSelection multiSelection}.
2764
2762
  *
@@ -2809,9 +2807,7 @@ declare namespace sap {
2809
2807
  * Additionally, it unregisters them from the hosting UIArea.
2810
2808
  */
2811
2809
  removeAllItems(): sap.ui.core.Item[];
2812
- /**
2813
- *
2814
- */
2810
+
2815
2811
  removeAllSelectedItems(): string[];
2816
2812
  /**
2817
2813
  * Removes a item from the aggregation {@link #getItems items}.
@@ -2822,9 +2818,7 @@ declare namespace sap {
2822
2818
  */
2823
2819
  vItem: int | string | sap.ui.core.Item
2824
2820
  ): sap.ui.core.Item;
2825
- /**
2826
- *
2827
- */
2821
+
2828
2822
  removeSelectedItem(
2829
2823
  /**
2830
2824
  * the selectedItem to remove or its index or id
@@ -2913,6 +2907,31 @@ declare namespace sap {
2913
2907
  mSettings?: sap.ui.ux3.$CollectionInspectorSettings
2914
2908
  );
2915
2909
 
2910
+ /**
2911
+ * Creates a new subclass of class sap.ui.ux3.CollectionInspector with name `sClassName` and enriches it
2912
+ * with the information contained in `oClassInfo`.
2913
+ *
2914
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2915
+ */
2916
+ static extend<T extends Record<string, unknown>>(
2917
+ /**
2918
+ * Name of the class being created
2919
+ */
2920
+ sClassName: string,
2921
+ /**
2922
+ * Object literal with information about the class
2923
+ */
2924
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.CollectionInspector>,
2925
+ /**
2926
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2927
+ * used by this class
2928
+ */
2929
+ FNMetaImpl?: Function
2930
+ ): Function;
2931
+ /**
2932
+ * Returns a metadata object for class sap.ui.ux3.CollectionInspector.
2933
+ */
2934
+ static getMetadata(): sap.ui.core.ElementMetadata;
2916
2935
  /**
2917
2936
  * Adds some collection `oCollection` to the aggregation named `collections`.
2918
2937
  */
@@ -3120,27 +3139,6 @@ declare namespace sap {
3120
3139
  */
3121
3140
  oListener?: object
3122
3141
  ): this;
3123
- /**
3124
- * Creates a new subclass of class sap.ui.ux3.CollectionInspector with name `sClassName` and enriches it
3125
- * with the information contained in `oClassInfo`.
3126
- *
3127
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3128
- */
3129
- static extend<T extends Record<string, unknown>>(
3130
- /**
3131
- * Name of the class being created
3132
- */
3133
- sClassName: string,
3134
- /**
3135
- * Object literal with information about the class
3136
- */
3137
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.CollectionInspector>,
3138
- /**
3139
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3140
- * used by this class
3141
- */
3142
- FNMetaImpl?: Function
3143
- ): Function;
3144
3142
  /**
3145
3143
  * Fires event {@link #event:collectionSelected collectionSelected} to attached listeners.
3146
3144
  */
@@ -3192,10 +3190,6 @@ declare namespace sap {
3192
3190
  * Default value is `true`.
3193
3191
  */
3194
3192
  getFitParent(): boolean;
3195
- /**
3196
- * Returns a metadata object for class sap.ui.ux3.CollectionInspector.
3197
- */
3198
- static getMetadata(): sap.ui.core.ElementMetadata;
3199
3193
  /**
3200
3194
  * ID of the element which is the current target of the association {@link #getSelectedCollection selectedCollection},
3201
3195
  * or `null`.
@@ -3369,6 +3363,31 @@ declare namespace sap {
3369
3363
  mSettings?: sap.ui.ux3.$DataSetSettings
3370
3364
  );
3371
3365
 
3366
+ /**
3367
+ * Creates a new subclass of class sap.ui.ux3.DataSet with name `sClassName` and enriches it with the information
3368
+ * contained in `oClassInfo`.
3369
+ *
3370
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3371
+ */
3372
+ static extend<T extends Record<string, unknown>>(
3373
+ /**
3374
+ * Name of the class being created
3375
+ */
3376
+ sClassName: string,
3377
+ /**
3378
+ * Object literal with information about the class
3379
+ */
3380
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.DataSet>,
3381
+ /**
3382
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3383
+ * used by this class
3384
+ */
3385
+ FNMetaImpl?: Function
3386
+ ): Function;
3387
+ /**
3388
+ * Returns a metadata object for class sap.ui.ux3.DataSet.
3389
+ */
3390
+ static getMetadata(): sap.ui.core.ElementMetadata;
3372
3391
  /**
3373
3392
  * Rerendering of the FilterArea
3374
3393
  */
@@ -3569,27 +3588,6 @@ declare namespace sap {
3569
3588
  */
3570
3589
  oListener?: object
3571
3590
  ): this;
3572
- /**
3573
- * Creates a new subclass of class sap.ui.ux3.DataSet with name `sClassName` and enriches it with the information
3574
- * contained in `oClassInfo`.
3575
- *
3576
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3577
- */
3578
- static extend<T extends Record<string, unknown>>(
3579
- /**
3580
- * Name of the class being created
3581
- */
3582
- sClassName: string,
3583
- /**
3584
- * Object literal with information about the class
3585
- */
3586
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.DataSet>,
3587
- /**
3588
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3589
- * used by this class
3590
- */
3591
- FNMetaImpl?: Function
3592
- ): Function;
3593
3591
  /**
3594
3592
  * Fires event {@link #event:search search} to attached listeners.
3595
3593
  */
@@ -3638,10 +3636,6 @@ declare namespace sap {
3638
3636
  * Returns the LeadSelection index
3639
3637
  */
3640
3638
  getLeadSelection(): int;
3641
- /**
3642
- * Returns a metadata object for class sap.ui.ux3.DataSet.
3643
- */
3644
- static getMetadata(): sap.ui.core.ElementMetadata;
3645
3639
  /**
3646
3640
  * Gets current value of property {@link #getMultiSelect multiSelect}.
3647
3641
  *
@@ -3950,6 +3944,31 @@ declare namespace sap {
3950
3944
  mSettings?: sap.ui.ux3.$DataSetItemSettings
3951
3945
  );
3952
3946
 
3947
+ /**
3948
+ * Creates a new subclass of class sap.ui.ux3.DataSetItem with name `sClassName` and enriches it with the
3949
+ * information contained in `oClassInfo`.
3950
+ *
3951
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3952
+ */
3953
+ static extend<T extends Record<string, unknown>>(
3954
+ /**
3955
+ * Name of the class being created
3956
+ */
3957
+ sClassName: string,
3958
+ /**
3959
+ * Object literal with information about the class
3960
+ */
3961
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.DataSetItem>,
3962
+ /**
3963
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3964
+ * used by this class
3965
+ */
3966
+ FNMetaImpl?: Function
3967
+ ): Function;
3968
+ /**
3969
+ * Returns a metadata object for class sap.ui.ux3.DataSetItem.
3970
+ */
3971
+ static getMetadata(): sap.ui.core.ElementMetadata;
3953
3972
  /**
3954
3973
  * Attaches event handler `fnFunction` to the {@link #event:selected selected} event of this `sap.ui.ux3.DataSetItem`.
3955
3974
  *
@@ -4006,27 +4025,6 @@ declare namespace sap {
4006
4025
  */
4007
4026
  oListener?: object
4008
4027
  ): this;
4009
- /**
4010
- * Creates a new subclass of class sap.ui.ux3.DataSetItem with name `sClassName` and enriches it with the
4011
- * information contained in `oClassInfo`.
4012
- *
4013
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
4014
- */
4015
- static extend<T extends Record<string, unknown>>(
4016
- /**
4017
- * Name of the class being created
4018
- */
4019
- sClassName: string,
4020
- /**
4021
- * Object literal with information about the class
4022
- */
4023
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.DataSetItem>,
4024
- /**
4025
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4026
- * used by this class
4027
- */
4028
- FNMetaImpl?: Function
4029
- ): Function;
4030
4028
  /**
4031
4029
  * Fires event {@link #event:selected selected} to attached listeners.
4032
4030
  */
@@ -4055,10 +4053,6 @@ declare namespace sap {
4055
4053
  * image
4056
4054
  */
4057
4055
  getIconSrc(): sap.ui.core.URI;
4058
- /**
4059
- * Returns a metadata object for class sap.ui.ux3.DataSetItem.
4060
- */
4061
- static getMetadata(): sap.ui.core.ElementMetadata;
4062
4056
  /**
4063
4057
  * Gets current value of property {@link #getSubtitle subtitle}.
4064
4058
  *
@@ -4174,14 +4168,6 @@ declare namespace sap {
4174
4168
  mSettings?: sap.ui.ux3.$DataSetSimpleViewSettings
4175
4169
  );
4176
4170
 
4177
- /**
4178
- * Destroys the template in the aggregation {@link #getTemplate template}.
4179
- */
4180
- destroyTemplate(): this;
4181
- /**
4182
- * View finalization: Called when leaving the view
4183
- */
4184
- exitView(aItems: sap.ui.ux3.DataSetItem[]): void;
4185
4171
  /**
4186
4172
  * Creates a new subclass of class sap.ui.ux3.DataSetSimpleView with name `sClassName` and enriches it with
4187
4173
  * the information contained in `oClassInfo`.
@@ -4203,6 +4189,18 @@ declare namespace sap {
4203
4189
  */
4204
4190
  FNMetaImpl?: Function
4205
4191
  ): Function;
4192
+ /**
4193
+ * Returns a metadata object for class sap.ui.ux3.DataSetSimpleView.
4194
+ */
4195
+ static getMetadata(): sap.ui.core.ElementMetadata;
4196
+ /**
4197
+ * Destroys the template in the aggregation {@link #getTemplate template}.
4198
+ */
4199
+ destroyTemplate(): this;
4200
+ /**
4201
+ * View finalization: Called when leaving the view
4202
+ */
4203
+ exitView(aItems: sap.ui.ux3.DataSetItem[]): void;
4206
4204
  /**
4207
4205
  * Gets current value of property {@link #getFloating floating}.
4208
4206
  *
@@ -4262,10 +4260,6 @@ declare namespace sap {
4262
4260
  * Default value is `0`.
4263
4261
  */
4264
4262
  getItemMinWidth(): int;
4265
- /**
4266
- * Returns a metadata object for class sap.ui.ux3.DataSetSimpleView.
4267
- */
4268
- static getMetadata(): sap.ui.core.ElementMetadata;
4269
4263
  /**
4270
4264
  * Gets current value of property {@link #getName name}.
4271
4265
  *
@@ -4494,9 +4488,7 @@ declare namespace sap {
4494
4488
  */
4495
4489
  bResponsive?: boolean
4496
4490
  ): this;
4497
- /**
4498
- *
4499
- */
4491
+
4500
4492
  setScrollArea(
4501
4493
  aScrollArea: any[],
4502
4494
 
@@ -4560,6 +4552,31 @@ declare namespace sap {
4560
4552
  mSettings?: sap.ui.ux3.$ExactSettings
4561
4553
  );
4562
4554
 
4555
+ /**
4556
+ * Creates a new subclass of class sap.ui.ux3.Exact with name `sClassName` and enriches it with the information
4557
+ * contained in `oClassInfo`.
4558
+ *
4559
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4560
+ */
4561
+ static extend<T extends Record<string, unknown>>(
4562
+ /**
4563
+ * Name of the class being created
4564
+ */
4565
+ sClassName: string,
4566
+ /**
4567
+ * Object literal with information about the class
4568
+ */
4569
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.Exact>,
4570
+ /**
4571
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4572
+ * used by this class
4573
+ */
4574
+ FNMetaImpl?: Function
4575
+ ): Function;
4576
+ /**
4577
+ * Returns a metadata object for class sap.ui.ux3.Exact.
4578
+ */
4579
+ static getMetadata(): sap.ui.core.ElementMetadata;
4563
4580
  /**
4564
4581
  * Adds some attribute to the aggregation {@link #getAttributes attributes}.
4565
4582
  */
@@ -4689,27 +4706,6 @@ declare namespace sap {
4689
4706
  */
4690
4707
  oListener?: object
4691
4708
  ): this;
4692
- /**
4693
- * Creates a new subclass of class sap.ui.ux3.Exact with name `sClassName` and enriches it with the information
4694
- * contained in `oClassInfo`.
4695
- *
4696
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4697
- */
4698
- static extend<T extends Record<string, unknown>>(
4699
- /**
4700
- * Name of the class being created
4701
- */
4702
- sClassName: string,
4703
- /**
4704
- * Object literal with information about the class
4705
- */
4706
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.Exact>,
4707
- /**
4708
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4709
- * used by this class
4710
- */
4711
- FNMetaImpl?: Function
4712
- ): Function;
4713
4709
  /**
4714
4710
  * Fires event {@link #event:refineSearch refineSearch} to attached listeners.
4715
4711
  */
@@ -4752,10 +4748,6 @@ declare namespace sap {
4752
4748
  * The attributes which shall be available to refine the search
4753
4749
  */
4754
4750
  getAttributes(): sap.ui.ux3.ExactAttribute[];
4755
- /**
4756
- * Returns a metadata object for class sap.ui.ux3.Exact.
4757
- */
4758
- static getMetadata(): sap.ui.core.ElementMetadata;
4759
4751
  /**
4760
4752
  * Returns the ExactArea representing the result section. Arbitrary content can be added here.
4761
4753
  */
@@ -4878,6 +4870,31 @@ declare namespace sap {
4878
4870
  mSettings?: sap.ui.ux3.$ExactAreaSettings
4879
4871
  );
4880
4872
 
4873
+ /**
4874
+ * Creates a new subclass of class sap.ui.ux3.ExactArea with name `sClassName` and enriches it with the
4875
+ * information contained in `oClassInfo`.
4876
+ *
4877
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4878
+ */
4879
+ static extend<T extends Record<string, unknown>>(
4880
+ /**
4881
+ * Name of the class being created
4882
+ */
4883
+ sClassName: string,
4884
+ /**
4885
+ * Object literal with information about the class
4886
+ */
4887
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.ExactArea>,
4888
+ /**
4889
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4890
+ * used by this class
4891
+ */
4892
+ FNMetaImpl?: Function
4893
+ ): Function;
4894
+ /**
4895
+ * Returns a metadata object for class sap.ui.ux3.ExactArea.
4896
+ */
4897
+ static getMetadata(): sap.ui.core.ElementMetadata;
4881
4898
  /**
4882
4899
  * Adds some content to the aggregation {@link #getContent content}.
4883
4900
  */
@@ -4904,37 +4921,12 @@ declare namespace sap {
4904
4921
  * Destroys all the toolbarItems in the aggregation {@link #getToolbarItems toolbarItems}.
4905
4922
  */
4906
4923
  destroyToolbarItems(): this;
4907
- /**
4908
- * Creates a new subclass of class sap.ui.ux3.ExactArea with name `sClassName` and enriches it with the
4909
- * information contained in `oClassInfo`.
4910
- *
4911
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4912
- */
4913
- static extend<T extends Record<string, unknown>>(
4914
- /**
4915
- * Name of the class being created
4916
- */
4917
- sClassName: string,
4918
- /**
4919
- * Object literal with information about the class
4920
- */
4921
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.ExactArea>,
4922
- /**
4923
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4924
- * used by this class
4925
- */
4926
- FNMetaImpl?: Function
4927
- ): Function;
4928
4924
  /**
4929
4925
  * Gets content of aggregation {@link #getContent content}.
4930
4926
  *
4931
4927
  * Arbitrary child controls of the content area
4932
4928
  */
4933
4929
  getContent(): sap.ui.core.Control[];
4934
- /**
4935
- * Returns a metadata object for class sap.ui.ux3.ExactArea.
4936
- */
4937
- static getMetadata(): sap.ui.core.ElementMetadata;
4938
4930
  /**
4939
4931
  * Gets content of aggregation {@link #getToolbarItems toolbarItems}.
4940
4932
  *
@@ -5082,6 +5074,31 @@ declare namespace sap {
5082
5074
  mSettings?: sap.ui.ux3.$ExactAttributeSettings
5083
5075
  );
5084
5076
 
5077
+ /**
5078
+ * Creates a new subclass of class sap.ui.ux3.ExactAttribute with name `sClassName` and enriches it with
5079
+ * the information contained in `oClassInfo`.
5080
+ *
5081
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
5082
+ */
5083
+ static extend<T extends Record<string, unknown>>(
5084
+ /**
5085
+ * Name of the class being created
5086
+ */
5087
+ sClassName: string,
5088
+ /**
5089
+ * Object literal with information about the class
5090
+ */
5091
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.ExactAttribute>,
5092
+ /**
5093
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5094
+ * used by this class
5095
+ */
5096
+ FNMetaImpl?: Function
5097
+ ): Function;
5098
+ /**
5099
+ * Returns a metadata object for class sap.ui.ux3.ExactAttribute.
5100
+ */
5101
+ static getMetadata(): sap.ui.core.ElementMetadata;
5085
5102
  /**
5086
5103
  * Adds some attribute to the aggregation {@link #getAttributes attributes}.
5087
5104
  */
@@ -5146,39 +5163,18 @@ declare namespace sap {
5146
5163
  * Detaches event handler `fnFunction` from the {@link #event:supplyAttributes supplyAttributes} event of
5147
5164
  * this `sap.ui.ux3.ExactAttribute`.
5148
5165
  *
5149
- * The passed function and listener object must match the ones used for event registration.
5150
- */
5151
- detachSupplyAttributes(
5152
- /**
5153
- * The function to be called, when the event occurs
5154
- */
5155
- fnFunction: (p1: sap.ui.base.Event) => void,
5156
- /**
5157
- * Context object on which the given function had to be called
5158
- */
5159
- oListener?: object
5160
- ): this;
5161
- /**
5162
- * Creates a new subclass of class sap.ui.ux3.ExactAttribute with name `sClassName` and enriches it with
5163
- * the information contained in `oClassInfo`.
5164
- *
5165
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
5166
+ * The passed function and listener object must match the ones used for event registration.
5166
5167
  */
5167
- static extend<T extends Record<string, unknown>>(
5168
- /**
5169
- * Name of the class being created
5170
- */
5171
- sClassName: string,
5168
+ detachSupplyAttributes(
5172
5169
  /**
5173
- * Object literal with information about the class
5170
+ * The function to be called, when the event occurs
5174
5171
  */
5175
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.ExactAttribute>,
5172
+ fnFunction: (p1: sap.ui.base.Event) => void,
5176
5173
  /**
5177
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5178
- * used by this class
5174
+ * Context object on which the given function had to be called
5179
5175
  */
5180
- FNMetaImpl?: Function
5181
- ): Function;
5176
+ oListener?: object
5177
+ ): this;
5182
5178
  /**
5183
5179
  * Fires event {@link #event:supplyAttributes supplyAttributes} to attached listeners.
5184
5180
  */
@@ -5224,10 +5220,6 @@ declare namespace sap {
5224
5220
  * Default value is `Select`.
5225
5221
  */
5226
5222
  getListOrder(): sap.ui.ux3.ExactOrder;
5227
- /**
5228
- * Returns a metadata object for class sap.ui.ux3.ExactAttribute.
5229
- */
5230
- static getMetadata(): sap.ui.core.ElementMetadata;
5231
5223
  /**
5232
5224
  * Gets current value of property {@link #getSelected selected}.
5233
5225
  *
@@ -5513,6 +5505,31 @@ declare namespace sap {
5513
5505
  mSettings?: sap.ui.ux3.$ExactBrowserSettings
5514
5506
  );
5515
5507
 
5508
+ /**
5509
+ * Creates a new subclass of class sap.ui.ux3.ExactBrowser with name `sClassName` and enriches it with the
5510
+ * information contained in `oClassInfo`.
5511
+ *
5512
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
5513
+ */
5514
+ static extend<T extends Record<string, unknown>>(
5515
+ /**
5516
+ * Name of the class being created
5517
+ */
5518
+ sClassName: string,
5519
+ /**
5520
+ * Object literal with information about the class
5521
+ */
5522
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.ExactBrowser>,
5523
+ /**
5524
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5525
+ * used by this class
5526
+ */
5527
+ FNMetaImpl?: Function
5528
+ ): Function;
5529
+ /**
5530
+ * Returns a metadata object for class sap.ui.ux3.ExactBrowser.
5531
+ */
5532
+ static getMetadata(): sap.ui.core.ElementMetadata;
5516
5533
  /**
5517
5534
  * Adds some attribute to the aggregation {@link #getAttributes attributes}.
5518
5535
  */
@@ -5645,27 +5662,6 @@ declare namespace sap {
5645
5662
  */
5646
5663
  oListener?: object
5647
5664
  ): this;
5648
- /**
5649
- * Creates a new subclass of class sap.ui.ux3.ExactBrowser with name `sClassName` and enriches it with the
5650
- * information contained in `oClassInfo`.
5651
- *
5652
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
5653
- */
5654
- static extend<T extends Record<string, unknown>>(
5655
- /**
5656
- * Name of the class being created
5657
- */
5658
- sClassName: string,
5659
- /**
5660
- * Object literal with information about the class
5661
- */
5662
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.ExactBrowser>,
5663
- /**
5664
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5665
- * used by this class
5666
- */
5667
- FNMetaImpl?: Function
5668
- ): Function;
5669
5665
  /**
5670
5666
  * Fires event {@link #event:attributeSelected attributeSelected} to attached listeners.
5671
5667
  */
@@ -5744,10 +5740,6 @@ declare namespace sap {
5744
5740
  * Default value is `290`.
5745
5741
  */
5746
5742
  getListHeight(): int;
5747
- /**
5748
- * Returns a metadata object for class sap.ui.ux3.ExactBrowser.
5749
- */
5750
- static getMetadata(): sap.ui.core.ElementMetadata;
5751
5743
  /**
5752
5744
  * Gets content of aggregation {@link #getOptionsMenu optionsMenu}.
5753
5745
  *
@@ -6058,6 +6050,31 @@ declare namespace sap {
6058
6050
  mSettings?: sap.ui.ux3.$ExactListSettings
6059
6051
  );
6060
6052
 
6053
+ /**
6054
+ * Creates a new subclass of class sap.ui.ux3.ExactList with name `sClassName` and enriches it with the
6055
+ * information contained in `oClassInfo`.
6056
+ *
6057
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
6058
+ */
6059
+ static extend<T extends Record<string, unknown>>(
6060
+ /**
6061
+ * Name of the class being created
6062
+ */
6063
+ sClassName: string,
6064
+ /**
6065
+ * Object literal with information about the class
6066
+ */
6067
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.ExactList>,
6068
+ /**
6069
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6070
+ * used by this class
6071
+ */
6072
+ FNMetaImpl?: Function
6073
+ ): Function;
6074
+ /**
6075
+ * Returns a metadata object for class sap.ui.ux3.ExactList.
6076
+ */
6077
+ static getMetadata(): sap.ui.core.ElementMetadata;
6061
6078
  /**
6062
6079
  * Adds some subList to the aggregation {@link #getSubLists subLists}.
6063
6080
  */
@@ -6130,27 +6147,6 @@ declare namespace sap {
6130
6147
  */
6131
6148
  oListener?: object
6132
6149
  ): this;
6133
- /**
6134
- * Creates a new subclass of class sap.ui.ux3.ExactList with name `sClassName` and enriches it with the
6135
- * information contained in `oClassInfo`.
6136
- *
6137
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
6138
- */
6139
- static extend<T extends Record<string, unknown>>(
6140
- /**
6141
- * Name of the class being created
6142
- */
6143
- sClassName: string,
6144
- /**
6145
- * Object literal with information about the class
6146
- */
6147
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.ExactList>,
6148
- /**
6149
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6150
- * used by this class
6151
- */
6152
- FNMetaImpl?: Function
6153
- ): Function;
6154
6150
  /**
6155
6151
  * Fires event {@link #event:attributeSelected attributeSelected} to attached listeners.
6156
6152
  */
@@ -6173,10 +6169,6 @@ declare namespace sap {
6173
6169
  * ID of the element which is the current target of the association {@link #getData data}, or `null`.
6174
6170
  */
6175
6171
  getData(): sap.ui.core.ID;
6176
- /**
6177
- * Returns a metadata object for class sap.ui.ux3.ExactList.
6178
- */
6179
- static getMetadata(): sap.ui.core.ElementMetadata;
6180
6172
  /**
6181
6173
  * Gets current value of property {@link #getShowClose showClose}.
6182
6174
  *
@@ -6337,19 +6329,6 @@ declare namespace sap {
6337
6329
  mSettings?: sap.ui.ux3.$FacetFilterSettings
6338
6330
  );
6339
6331
 
6340
- /**
6341
- * Adds some list to the aggregation {@link #getLists lists}.
6342
- */
6343
- addList(
6344
- /**
6345
- * The list to add; if empty, nothing is inserted
6346
- */
6347
- oList: sap.ui.ux3.FacetFilterList
6348
- ): this;
6349
- /**
6350
- * Destroys all the lists in the aggregation {@link #getLists lists}.
6351
- */
6352
- destroyLists(): this;
6353
6332
  /**
6354
6333
  * Creates a new subclass of class sap.ui.ux3.FacetFilter with name `sClassName` and enriches it with the
6355
6334
  * information contained in `oClassInfo`.
@@ -6371,16 +6350,29 @@ declare namespace sap {
6371
6350
  */
6372
6351
  FNMetaImpl?: Function
6373
6352
  ): Function;
6353
+ /**
6354
+ * Returns a metadata object for class sap.ui.ux3.FacetFilter.
6355
+ */
6356
+ static getMetadata(): sap.ui.core.ElementMetadata;
6357
+ /**
6358
+ * Adds some list to the aggregation {@link #getLists lists}.
6359
+ */
6360
+ addList(
6361
+ /**
6362
+ * The list to add; if empty, nothing is inserted
6363
+ */
6364
+ oList: sap.ui.ux3.FacetFilterList
6365
+ ): this;
6366
+ /**
6367
+ * Destroys all the lists in the aggregation {@link #getLists lists}.
6368
+ */
6369
+ destroyLists(): this;
6374
6370
  /**
6375
6371
  * Gets content of aggregation {@link #getLists lists}.
6376
6372
  *
6377
6373
  * Facet Filter list represents the list of the filter values and the title of this list.
6378
6374
  */
6379
6375
  getLists(): sap.ui.ux3.FacetFilterList[];
6380
- /**
6381
- * Returns a metadata object for class sap.ui.ux3.FacetFilter.
6382
- */
6383
- static getMetadata(): sap.ui.core.ElementMetadata;
6384
6376
  /**
6385
6377
  * Gets current value of property {@link #getVisibleItemCountMode visibleItemCountMode}.
6386
6378
  *
@@ -6484,6 +6476,31 @@ declare namespace sap {
6484
6476
  mSettings?: sap.ui.ux3.$FacetFilterListSettings
6485
6477
  );
6486
6478
 
6479
+ /**
6480
+ * Creates a new subclass of class sap.ui.ux3.FacetFilterList with name `sClassName` and enriches it with
6481
+ * the information contained in `oClassInfo`.
6482
+ *
6483
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
6484
+ */
6485
+ static extend<T extends Record<string, unknown>>(
6486
+ /**
6487
+ * Name of the class being created
6488
+ */
6489
+ sClassName: string,
6490
+ /**
6491
+ * Object literal with information about the class
6492
+ */
6493
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.FacetFilterList>,
6494
+ /**
6495
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6496
+ * used by this class
6497
+ */
6498
+ FNMetaImpl?: Function
6499
+ ): Function;
6500
+ /**
6501
+ * Returns a metadata object for class sap.ui.ux3.FacetFilterList.
6502
+ */
6503
+ static getMetadata(): sap.ui.core.ElementMetadata;
6487
6504
  /**
6488
6505
  * Adds some item to the aggregation {@link #getItems items}.
6489
6506
  */
@@ -6553,27 +6570,6 @@ declare namespace sap {
6553
6570
  */
6554
6571
  oListener?: object
6555
6572
  ): this;
6556
- /**
6557
- * Creates a new subclass of class sap.ui.ux3.FacetFilterList with name `sClassName` and enriches it with
6558
- * the information contained in `oClassInfo`.
6559
- *
6560
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
6561
- */
6562
- static extend<T extends Record<string, unknown>>(
6563
- /**
6564
- * Name of the class being created
6565
- */
6566
- sClassName: string,
6567
- /**
6568
- * Object literal with information about the class
6569
- */
6570
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.FacetFilterList>,
6571
- /**
6572
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6573
- * used by this class
6574
- */
6575
- FNMetaImpl?: Function
6576
- ): Function;
6577
6573
  /**
6578
6574
  * Fires event {@link #event:select select} to attached listeners.
6579
6575
  */
@@ -6618,10 +6614,6 @@ declare namespace sap {
6618
6614
  * The filter values that are presented as a list.
6619
6615
  */
6620
6616
  getItems(): sap.ui.core.ListItem[];
6621
- /**
6622
- * Returns a metadata object for class sap.ui.ux3.FacetFilterList.
6623
- */
6624
- static getMetadata(): sap.ui.core.ElementMetadata;
6625
6617
  /**
6626
6618
  * Gets current value of property {@link #getMultiSelect multiSelect}.
6627
6619
  *
@@ -6803,6 +6795,31 @@ declare namespace sap {
6803
6795
  mSettings?: sap.ui.ux3.$FeedSettings
6804
6796
  );
6805
6797
 
6798
+ /**
6799
+ * Creates a new subclass of class sap.ui.ux3.Feed with name `sClassName` and enriches it with the information
6800
+ * contained in `oClassInfo`.
6801
+ *
6802
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
6803
+ */
6804
+ static extend<T extends Record<string, unknown>>(
6805
+ /**
6806
+ * Name of the class being created
6807
+ */
6808
+ sClassName: string,
6809
+ /**
6810
+ * Object literal with information about the class
6811
+ */
6812
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.Feed>,
6813
+ /**
6814
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6815
+ * used by this class
6816
+ */
6817
+ FNMetaImpl?: Function
6818
+ ): Function;
6819
+ /**
6820
+ * Returns a metadata object for class sap.ui.ux3.Feed.
6821
+ */
6822
+ static getMetadata(): sap.ui.core.ElementMetadata;
6806
6823
  /**
6807
6824
  * Adds some chunk to the aggregation {@link #getChunks chunks}.
6808
6825
  */
@@ -7161,27 +7178,6 @@ declare namespace sap {
7161
7178
  */
7162
7179
  oListener?: object
7163
7180
  ): this;
7164
- /**
7165
- * Creates a new subclass of class sap.ui.ux3.Feed with name `sClassName` and enriches it with the information
7166
- * contained in `oClassInfo`.
7167
- *
7168
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
7169
- */
7170
- static extend<T extends Record<string, unknown>>(
7171
- /**
7172
- * Name of the class being created
7173
- */
7174
- sClassName: string,
7175
- /**
7176
- * Object literal with information about the class
7177
- */
7178
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.Feed>,
7179
- /**
7180
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7181
- * used by this class
7182
- */
7183
- FNMetaImpl?: Function
7184
- ): Function;
7185
7181
  /**
7186
7182
  * Fires event {@link #event:chunkAdded chunkAdded} to attached listeners.
7187
7183
  */
@@ -7287,11 +7283,7 @@ declare namespace sap {
7287
7283
  *
7288
7284
  * Default value is `true`.
7289
7285
  */
7290
- getLive(): boolean;
7291
- /**
7292
- * Returns a metadata object for class sap.ui.ux3.Feed.
7293
- */
7294
- static getMetadata(): sap.ui.core.ElementMetadata;
7286
+ getLive(): boolean;
7295
7287
  /**
7296
7288
  * Gets current value of property {@link #getTitle title}.
7297
7289
  *
@@ -7531,6 +7523,31 @@ declare namespace sap {
7531
7523
  mSettings?: sap.ui.ux3.$FeedChunkSettings
7532
7524
  );
7533
7525
 
7526
+ /**
7527
+ * Creates a new subclass of class sap.ui.ux3.FeedChunk with name `sClassName` and enriches it with the
7528
+ * information contained in `oClassInfo`.
7529
+ *
7530
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
7531
+ */
7532
+ static extend<T extends Record<string, unknown>>(
7533
+ /**
7534
+ * Name of the class being created
7535
+ */
7536
+ sClassName: string,
7537
+ /**
7538
+ * Object literal with information about the class
7539
+ */
7540
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.FeedChunk>,
7541
+ /**
7542
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7543
+ * used by this class
7544
+ */
7545
+ FNMetaImpl?: Function
7546
+ ): Function;
7547
+ /**
7548
+ * Returns a metadata object for class sap.ui.ux3.FeedChunk.
7549
+ */
7550
+ static getMetadata(): sap.ui.core.ElementMetadata;
7534
7551
  /**
7535
7552
  * Adds some actionMenuItem to the aggregation {@link #getActionMenuItems actionMenuItems}.
7536
7553
  */
@@ -8098,27 +8115,6 @@ declare namespace sap {
8098
8115
  */
8099
8116
  oListener?: object
8100
8117
  ): this;
8101
- /**
8102
- * Creates a new subclass of class sap.ui.ux3.FeedChunk with name `sClassName` and enriches it with the
8103
- * information contained in `oClassInfo`.
8104
- *
8105
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8106
- */
8107
- static extend<T extends Record<string, unknown>>(
8108
- /**
8109
- * Name of the class being created
8110
- */
8111
- sClassName: string,
8112
- /**
8113
- * Object literal with information about the class
8114
- */
8115
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.FeedChunk>,
8116
- /**
8117
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8118
- * used by this class
8119
- */
8120
- FNMetaImpl?: Function
8121
- ): Function;
8122
8118
  /**
8123
8119
  * Fires event {@link #event:actionItemSelected actionItemSelected} to attached listeners.
8124
8120
  */
@@ -8337,10 +8333,6 @@ declare namespace sap {
8337
8333
  * Default value is `false`.
8338
8334
  */
8339
8335
  getFlagged(): boolean;
8340
- /**
8341
- * Returns a metadata object for class sap.ui.ux3.FeedChunk.
8342
- */
8343
- static getMetadata(): sap.ui.core.ElementMetadata;
8344
8336
  /**
8345
8337
  * Gets current value of property {@link #getSender sender}.
8346
8338
  *
@@ -8737,6 +8729,31 @@ declare namespace sap {
8737
8729
  mSettings?: sap.ui.ux3.$FeederSettings
8738
8730
  );
8739
8731
 
8732
+ /**
8733
+ * Creates a new subclass of class sap.ui.ux3.Feeder with name `sClassName` and enriches it with the information
8734
+ * contained in `oClassInfo`.
8735
+ *
8736
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8737
+ */
8738
+ static extend<T extends Record<string, unknown>>(
8739
+ /**
8740
+ * Name of the class being created
8741
+ */
8742
+ sClassName: string,
8743
+ /**
8744
+ * Object literal with information about the class
8745
+ */
8746
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.Feeder>,
8747
+ /**
8748
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8749
+ * used by this class
8750
+ */
8751
+ FNMetaImpl?: Function
8752
+ ): Function;
8753
+ /**
8754
+ * Returns a metadata object for class sap.ui.ux3.Feeder.
8755
+ */
8756
+ static getMetadata(): sap.ui.core.ElementMetadata;
8740
8757
  /**
8741
8758
  * Attaches event handler `fnFunction` to the {@link #event:submit submit} event of this `sap.ui.ux3.Feeder`.
8742
8759
  *
@@ -8793,27 +8810,6 @@ declare namespace sap {
8793
8810
  */
8794
8811
  oListener?: object
8795
8812
  ): this;
8796
- /**
8797
- * Creates a new subclass of class sap.ui.ux3.Feeder with name `sClassName` and enriches it with the information
8798
- * contained in `oClassInfo`.
8799
- *
8800
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8801
- */
8802
- static extend<T extends Record<string, unknown>>(
8803
- /**
8804
- * Name of the class being created
8805
- */
8806
- sClassName: string,
8807
- /**
8808
- * Object literal with information about the class
8809
- */
8810
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.Feeder>,
8811
- /**
8812
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8813
- * used by this class
8814
- */
8815
- FNMetaImpl?: Function
8816
- ): Function;
8817
8813
  /**
8818
8814
  * Fires event {@link #event:submit submit} to attached listeners.
8819
8815
  */
@@ -8828,10 +8824,6 @@ declare namespace sap {
8828
8824
  text?: string;
8829
8825
  }
8830
8826
  ): this;
8831
- /**
8832
- * Returns a metadata object for class sap.ui.ux3.Feeder.
8833
- */
8834
- static getMetadata(): sap.ui.core.ElementMetadata;
8835
8827
  /**
8836
8828
  * Gets current value of property {@link #getPlaceholderText placeholderText}.
8837
8829
  *
@@ -8959,6 +8951,31 @@ declare namespace sap {
8959
8951
  mSettings?: sap.ui.ux3.$NavigationBarSettings
8960
8952
  );
8961
8953
 
8954
+ /**
8955
+ * Creates a new subclass of class sap.ui.ux3.NavigationBar with name `sClassName` and enriches it with
8956
+ * the information contained in `oClassInfo`.
8957
+ *
8958
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8959
+ */
8960
+ static extend<T extends Record<string, unknown>>(
8961
+ /**
8962
+ * Name of the class being created
8963
+ */
8964
+ sClassName: string,
8965
+ /**
8966
+ * Object literal with information about the class
8967
+ */
8968
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.NavigationBar>,
8969
+ /**
8970
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8971
+ * used by this class
8972
+ */
8973
+ FNMetaImpl?: Function
8974
+ ): Function;
8975
+ /**
8976
+ * Returns a metadata object for class sap.ui.ux3.NavigationBar.
8977
+ */
8978
+ static getMetadata(): sap.ui.core.ElementMetadata;
8962
8979
  /**
8963
8980
  * Adds some associatedItem into the association {@link #getAssociatedItems associatedItems}.
8964
8981
  */
@@ -9037,27 +9054,6 @@ declare namespace sap {
9037
9054
  */
9038
9055
  oListener?: object
9039
9056
  ): this;
9040
- /**
9041
- * Creates a new subclass of class sap.ui.ux3.NavigationBar with name `sClassName` and enriches it with
9042
- * the information contained in `oClassInfo`.
9043
- *
9044
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
9045
- */
9046
- static extend<T extends Record<string, unknown>>(
9047
- /**
9048
- * Name of the class being created
9049
- */
9050
- sClassName: string,
9051
- /**
9052
- * Object literal with information about the class
9053
- */
9054
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.NavigationBar>,
9055
- /**
9056
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9057
- * used by this class
9058
- */
9059
- FNMetaImpl?: Function
9060
- ): Function;
9061
9057
  /**
9062
9058
  * Fires event {@link #event:select select} to attached listeners.
9063
9059
  *
@@ -9092,10 +9088,6 @@ declare namespace sap {
9092
9088
  * aggregation is empty, associatedItems is used.
9093
9089
  */
9094
9090
  getItems(): sap.ui.ux3.NavigationItem[];
9095
- /**
9096
- * Returns a metadata object for class sap.ui.ux3.NavigationBar.
9097
- */
9098
- static getMetadata(): sap.ui.core.ElementMetadata;
9099
9091
  /**
9100
9092
  * @SINCE 1.36
9101
9093
  *
@@ -9267,19 +9259,6 @@ declare namespace sap {
9267
9259
  mSettings?: sap.ui.ux3.$NavigationItemSettings
9268
9260
  );
9269
9261
 
9270
- /**
9271
- * Adds some subItem to the aggregation {@link #getSubItems subItems}.
9272
- */
9273
- addSubItem(
9274
- /**
9275
- * The subItem to add; if empty, nothing is inserted
9276
- */
9277
- oSubItem: sap.ui.ux3.NavigationItem
9278
- ): this;
9279
- /**
9280
- * Destroys all the subItems in the aggregation {@link #getSubItems subItems}.
9281
- */
9282
- destroySubItems(): this;
9283
9262
  /**
9284
9263
  * Creates a new subclass of class sap.ui.ux3.NavigationItem with name `sClassName` and enriches it with
9285
9264
  * the information contained in `oClassInfo`.
@@ -9301,6 +9280,23 @@ declare namespace sap {
9301
9280
  */
9302
9281
  FNMetaImpl?: Function
9303
9282
  ): Function;
9283
+ /**
9284
+ * Returns a metadata object for class sap.ui.ux3.NavigationItem.
9285
+ */
9286
+ static getMetadata(): sap.ui.core.ElementMetadata;
9287
+ /**
9288
+ * Adds some subItem to the aggregation {@link #getSubItems subItems}.
9289
+ */
9290
+ addSubItem(
9291
+ /**
9292
+ * The subItem to add; if empty, nothing is inserted
9293
+ */
9294
+ oSubItem: sap.ui.ux3.NavigationItem
9295
+ ): this;
9296
+ /**
9297
+ * Destroys all the subItems in the aggregation {@link #getSubItems subItems}.
9298
+ */
9299
+ destroySubItems(): this;
9304
9300
  /**
9305
9301
  * Gets current value of property {@link #getHref href}.
9306
9302
  *
@@ -9312,10 +9308,6 @@ declare namespace sap {
9312
9308
  * with the respective NavigationItem being selected).
9313
9309
  */
9314
9310
  getHref(): sap.ui.core.URI;
9315
- /**
9316
- * Returns a metadata object for class sap.ui.ux3.NavigationItem.
9317
- */
9318
- static getMetadata(): sap.ui.core.ElementMetadata;
9319
9311
  /**
9320
9312
  * Gets content of aggregation {@link #getSubItems subItems}.
9321
9313
  *
@@ -9454,6 +9446,31 @@ declare namespace sap {
9454
9446
  mSettings?: sap.ui.ux3.$NotificationBarSettings
9455
9447
  );
9456
9448
 
9449
+ /**
9450
+ * Creates a new subclass of class sap.ui.ux3.NotificationBar with name `sClassName` and enriches it with
9451
+ * the information contained in `oClassInfo`.
9452
+ *
9453
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
9454
+ */
9455
+ static extend<T extends Record<string, unknown>>(
9456
+ /**
9457
+ * Name of the class being created
9458
+ */
9459
+ sClassName: string,
9460
+ /**
9461
+ * Object literal with information about the class
9462
+ */
9463
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.NotificationBar>,
9464
+ /**
9465
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9466
+ * used by this class
9467
+ */
9468
+ FNMetaImpl?: Function
9469
+ ): Function;
9470
+ /**
9471
+ * Returns a metadata object for class sap.ui.ux3.NotificationBar.
9472
+ */
9473
+ static getMetadata(): sap.ui.core.ElementMetadata;
9457
9474
  /**
9458
9475
  * Adds some notifier to the aggregation {@link #getNotifiers notifiers}.
9459
9476
  */
@@ -9595,27 +9612,6 @@ declare namespace sap {
9595
9612
  */
9596
9613
  oListener?: object
9597
9614
  ): this;
9598
- /**
9599
- * Creates a new subclass of class sap.ui.ux3.NotificationBar with name `sClassName` and enriches it with
9600
- * the information contained in `oClassInfo`.
9601
- *
9602
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
9603
- */
9604
- static extend<T extends Record<string, unknown>>(
9605
- /**
9606
- * Name of the class being created
9607
- */
9608
- sClassName: string,
9609
- /**
9610
- * Object literal with information about the class
9611
- */
9612
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.NotificationBar>,
9613
- /**
9614
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9615
- * used by this class
9616
- */
9617
- FNMetaImpl?: Function
9618
- ): Function;
9619
9615
  /**
9620
9616
  * Fires event {@link #event:display display} to attached listeners.
9621
9617
  */
@@ -9661,10 +9657,6 @@ declare namespace sap {
9661
9657
  * Notifier that shows messages
9662
9658
  */
9663
9659
  getMessageNotifier(): sap.ui.core.Element;
9664
- /**
9665
- * Returns a metadata object for class sap.ui.ux3.NotificationBar.
9666
- */
9667
- static getMetadata(): sap.ui.core.ElementMetadata;
9668
9660
  /**
9669
9661
  * Gets content of aggregation {@link #getNotifiers notifiers}.
9670
9662
  *
@@ -9811,13 +9803,38 @@ declare namespace sap {
9811
9803
  /**
9812
9804
  * id for the new control, generated automatically if no id is given
9813
9805
  */
9814
- sId?: string,
9806
+ sId?: string,
9807
+ /**
9808
+ * initial settings for the new control
9809
+ */
9810
+ mSettings?: sap.ui.ux3.$NotifierSettings
9811
+ );
9812
+
9813
+ /**
9814
+ * Creates a new subclass of class sap.ui.ux3.Notifier with name `sClassName` and enriches it with the information
9815
+ * contained in `oClassInfo`.
9816
+ *
9817
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
9818
+ */
9819
+ static extend<T extends Record<string, unknown>>(
9820
+ /**
9821
+ * Name of the class being created
9822
+ */
9823
+ sClassName: string,
9824
+ /**
9825
+ * Object literal with information about the class
9826
+ */
9827
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.Notifier>,
9815
9828
  /**
9816
- * initial settings for the new control
9829
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9830
+ * used by this class
9817
9831
  */
9818
- mSettings?: sap.ui.ux3.$NotifierSettings
9819
- );
9820
-
9832
+ FNMetaImpl?: Function
9833
+ ): Function;
9834
+ /**
9835
+ * Returns a metadata object for class sap.ui.ux3.Notifier.
9836
+ */
9837
+ static getMetadata(): sap.ui.core.ElementMetadata;
9821
9838
  /**
9822
9839
  * Adds some message to the aggregation {@link #getMessages messages}.
9823
9840
  */
@@ -9890,27 +9907,6 @@ declare namespace sap {
9890
9907
  */
9891
9908
  oListener?: object
9892
9909
  ): this;
9893
- /**
9894
- * Creates a new subclass of class sap.ui.ux3.Notifier with name `sClassName` and enriches it with the information
9895
- * contained in `oClassInfo`.
9896
- *
9897
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
9898
- */
9899
- static extend<T extends Record<string, unknown>>(
9900
- /**
9901
- * Name of the class being created
9902
- */
9903
- sClassName: string,
9904
- /**
9905
- * Object literal with information about the class
9906
- */
9907
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.Notifier>,
9908
- /**
9909
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9910
- * used by this class
9911
- */
9912
- FNMetaImpl?: Function
9913
- ): Function;
9914
9910
  /**
9915
9911
  * Fires event {@link #event:messageSelected messageSelected} to attached listeners.
9916
9912
  */
@@ -9941,10 +9937,6 @@ declare namespace sap {
9941
9937
  * Messages of this notifier.
9942
9938
  */
9943
9939
  getMessages(): sap.ui.core.Message[];
9944
- /**
9945
- * Returns a metadata object for class sap.ui.ux3.Notifier.
9946
- */
9947
- static getMetadata(): sap.ui.core.ElementMetadata;
9948
9940
  /**
9949
9941
  * Gets current value of property {@link #getTitle title}.
9950
9942
  *
@@ -10062,6 +10054,31 @@ declare namespace sap {
10062
10054
  mSettings?: sap.ui.ux3.$OverlaySettings
10063
10055
  );
10064
10056
 
10057
+ /**
10058
+ * Creates a new subclass of class sap.ui.ux3.Overlay with name `sClassName` and enriches it with the information
10059
+ * contained in `oClassInfo`.
10060
+ *
10061
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
10062
+ */
10063
+ static extend<T extends Record<string, unknown>>(
10064
+ /**
10065
+ * Name of the class being created
10066
+ */
10067
+ sClassName: string,
10068
+ /**
10069
+ * Object literal with information about the class
10070
+ */
10071
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.Overlay>,
10072
+ /**
10073
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10074
+ * used by this class
10075
+ */
10076
+ FNMetaImpl?: Function
10077
+ ): Function;
10078
+ /**
10079
+ * Returns a metadata object for class sap.ui.ux3.Overlay.
10080
+ */
10081
+ static getMetadata(): sap.ui.core.ElementMetadata;
10065
10082
  /**
10066
10083
  * Attaches event handler `fnFunction` to the {@link #event:close close} event of this `sap.ui.ux3.Overlay`.
10067
10084
  *
@@ -10290,27 +10307,6 @@ declare namespace sap {
10290
10307
  */
10291
10308
  oListener?: object
10292
10309
  ): this;
10293
- /**
10294
- * Creates a new subclass of class sap.ui.ux3.Overlay with name `sClassName` and enriches it with the information
10295
- * contained in `oClassInfo`.
10296
- *
10297
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
10298
- */
10299
- static extend<T extends Record<string, unknown>>(
10300
- /**
10301
- * Name of the class being created
10302
- */
10303
- sClassName: string,
10304
- /**
10305
- * Object literal with information about the class
10306
- */
10307
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.Overlay>,
10308
- /**
10309
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10310
- * used by this class
10311
- */
10312
- FNMetaImpl?: Function
10313
- ): Function;
10314
10310
  /**
10315
10311
  * Fires event {@link #event:close close} to attached listeners.
10316
10312
  *
@@ -10381,10 +10377,6 @@ declare namespace sap {
10381
10377
  * Default value is `true`.
10382
10378
  */
10383
10379
  getCloseButtonVisible(): boolean;
10384
- /**
10385
- * Returns a metadata object for class sap.ui.ux3.Overlay.
10386
- */
10387
- static getMetadata(): sap.ui.core.ElementMetadata;
10388
10380
  /**
10389
10381
  * Gets current value of property {@link #getOpenButtonVisible openButtonVisible}.
10390
10382
  *
@@ -10474,19 +10466,6 @@ declare namespace sap {
10474
10466
  mSettings?: sap.ui.ux3.$OverlayContainerSettings
10475
10467
  );
10476
10468
 
10477
- /**
10478
- * Adds some content to the aggregation {@link #getContent content}.
10479
- */
10480
- addContent(
10481
- /**
10482
- * The content to add; if empty, nothing is inserted
10483
- */
10484
- oContent: sap.ui.core.Control
10485
- ): this;
10486
- /**
10487
- * Destroys all the content in the aggregation {@link #getContent content}.
10488
- */
10489
- destroyContent(): this;
10490
10469
  /**
10491
10470
  * Creates a new subclass of class sap.ui.ux3.OverlayContainer with name `sClassName` and enriches it with
10492
10471
  * the information contained in `oClassInfo`.
@@ -10508,16 +10487,29 @@ declare namespace sap {
10508
10487
  */
10509
10488
  FNMetaImpl?: Function
10510
10489
  ): Function;
10490
+ /**
10491
+ * Returns a metadata object for class sap.ui.ux3.OverlayContainer.
10492
+ */
10493
+ static getMetadata(): sap.ui.core.ElementMetadata;
10494
+ /**
10495
+ * Adds some content to the aggregation {@link #getContent content}.
10496
+ */
10497
+ addContent(
10498
+ /**
10499
+ * The content to add; if empty, nothing is inserted
10500
+ */
10501
+ oContent: sap.ui.core.Control
10502
+ ): this;
10503
+ /**
10504
+ * Destroys all the content in the aggregation {@link #getContent content}.
10505
+ */
10506
+ destroyContent(): this;
10511
10507
  /**
10512
10508
  * Gets content of aggregation {@link #getContent content}.
10513
10509
  *
10514
10510
  * Aggregation for content
10515
10511
  */
10516
10512
  getContent(): sap.ui.core.Control[];
10517
- /**
10518
- * Returns a metadata object for class sap.ui.ux3.OverlayContainer.
10519
- */
10520
- static getMetadata(): sap.ui.core.ElementMetadata;
10521
10513
  /**
10522
10514
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
10523
10515
  * its index if found or -1 otherwise.
@@ -10597,19 +10589,6 @@ declare namespace sap {
10597
10589
  mSettings?: sap.ui.ux3.$OverlayDialogSettings
10598
10590
  );
10599
10591
 
10600
- /**
10601
- * Adds some content to the aggregation {@link #getContent content}.
10602
- */
10603
- addContent(
10604
- /**
10605
- * The content to add; if empty, nothing is inserted
10606
- */
10607
- oContent: sap.ui.core.Control
10608
- ): this;
10609
- /**
10610
- * Destroys all the content in the aggregation {@link #getContent content}.
10611
- */
10612
- destroyContent(): this;
10613
10592
  /**
10614
10593
  * Creates a new subclass of class sap.ui.ux3.OverlayDialog with name `sClassName` and enriches it with
10615
10594
  * the information contained in `oClassInfo`.
@@ -10631,6 +10610,23 @@ declare namespace sap {
10631
10610
  */
10632
10611
  FNMetaImpl?: Function
10633
10612
  ): Function;
10613
+ /**
10614
+ * Returns a metadata object for class sap.ui.ux3.OverlayDialog.
10615
+ */
10616
+ static getMetadata(): sap.ui.core.ElementMetadata;
10617
+ /**
10618
+ * Adds some content to the aggregation {@link #getContent content}.
10619
+ */
10620
+ addContent(
10621
+ /**
10622
+ * The content to add; if empty, nothing is inserted
10623
+ */
10624
+ oContent: sap.ui.core.Control
10625
+ ): this;
10626
+ /**
10627
+ * Destroys all the content in the aggregation {@link #getContent content}.
10628
+ */
10629
+ destroyContent(): this;
10634
10630
  /**
10635
10631
  * Gets content of aggregation {@link #getContent content}.
10636
10632
  *
@@ -10646,10 +10642,6 @@ declare namespace sap {
10646
10642
  * Default value is `'auto'`.
10647
10643
  */
10648
10644
  getHeight(): sap.ui.core.CSSSize;
10649
- /**
10650
- * Returns a metadata object for class sap.ui.ux3.OverlayDialog.
10651
- */
10652
- static getMetadata(): sap.ui.core.ElementMetadata;
10653
10645
  /**
10654
10646
  * Gets current value of property {@link #getWidth width}.
10655
10647
  *
@@ -10750,6 +10742,31 @@ declare namespace sap {
10750
10742
  mSettings?: sap.ui.ux3.$QuickViewSettings
10751
10743
  );
10752
10744
 
10745
+ /**
10746
+ * Creates a new subclass of class sap.ui.ux3.QuickView with name `sClassName` and enriches it with the
10747
+ * information contained in `oClassInfo`.
10748
+ *
10749
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.commons.CalloutBase.extend}.
10750
+ */
10751
+ static extend<T extends Record<string, unknown>>(
10752
+ /**
10753
+ * Name of the class being created
10754
+ */
10755
+ sClassName: string,
10756
+ /**
10757
+ * Object literal with information about the class
10758
+ */
10759
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.QuickView>,
10760
+ /**
10761
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10762
+ * used by this class
10763
+ */
10764
+ FNMetaImpl?: Function
10765
+ ): Function;
10766
+ /**
10767
+ * Returns a metadata object for class sap.ui.ux3.QuickView.
10768
+ */
10769
+ static getMetadata(): sap.ui.core.ElementMetadata;
10753
10770
  /**
10754
10771
  * Adds some action to the aggregation {@link #getActions actions}.
10755
10772
  */
@@ -10953,27 +10970,6 @@ declare namespace sap {
10953
10970
  */
10954
10971
  oListener?: object
10955
10972
  ): this;
10956
- /**
10957
- * Creates a new subclass of class sap.ui.ux3.QuickView with name `sClassName` and enriches it with the
10958
- * information contained in `oClassInfo`.
10959
- *
10960
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.commons.CalloutBase.extend}.
10961
- */
10962
- static extend<T extends Record<string, unknown>>(
10963
- /**
10964
- * Name of the class being created
10965
- */
10966
- sClassName: string,
10967
- /**
10968
- * Object literal with information about the class
10969
- */
10970
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.QuickView>,
10971
- /**
10972
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10973
- * used by this class
10974
- */
10975
- FNMetaImpl?: Function
10976
- ): Function;
10977
10973
  /**
10978
10974
  * Fires event {@link #event:actionSelected actionSelected} to attached listeners.
10979
10975
  */
@@ -11114,10 +11110,6 @@ declare namespace sap {
11114
11110
  * or horizontal).
11115
11111
  */
11116
11112
  getIcon(): sap.ui.core.URI;
11117
- /**
11118
- * Returns a metadata object for class sap.ui.ux3.QuickView.
11119
- */
11120
- static getMetadata(): sap.ui.core.ElementMetadata;
11121
11113
  /**
11122
11114
  * Gets current value of property {@link #getOpenActionEnabled openActionEnabled}.
11123
11115
  *
@@ -11505,6 +11497,31 @@ declare namespace sap {
11505
11497
  mSettings?: sap.ui.ux3.$ShellSettings
11506
11498
  );
11507
11499
 
11500
+ /**
11501
+ * Creates a new subclass of class sap.ui.ux3.Shell with name `sClassName` and enriches it with the information
11502
+ * contained in `oClassInfo`.
11503
+ *
11504
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
11505
+ */
11506
+ static extend<T extends Record<string, unknown>>(
11507
+ /**
11508
+ * Name of the class being created
11509
+ */
11510
+ sClassName: string,
11511
+ /**
11512
+ * Object literal with information about the class
11513
+ */
11514
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.Shell>,
11515
+ /**
11516
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
11517
+ * used by this class
11518
+ */
11519
+ FNMetaImpl?: Function
11520
+ ): Function;
11521
+ /**
11522
+ * Returns a metadata object for class sap.ui.ux3.Shell.
11523
+ */
11524
+ static getMetadata(): sap.ui.core.ElementMetadata;
11508
11525
  /**
11509
11526
  * Adds some content to the aggregation {@link #getContent content}.
11510
11527
  */
@@ -11951,29 +11968,8 @@ declare namespace sap {
11951
11968
  /**
11952
11969
  * Context object on which the given function had to be called
11953
11970
  */
11954
- oListener?: object
11955
- ): this;
11956
- /**
11957
- * Creates a new subclass of class sap.ui.ux3.Shell with name `sClassName` and enriches it with the information
11958
- * contained in `oClassInfo`.
11959
- *
11960
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
11961
- */
11962
- static extend<T extends Record<string, unknown>>(
11963
- /**
11964
- * Name of the class being created
11965
- */
11966
- sClassName: string,
11967
- /**
11968
- * Object literal with information about the class
11969
- */
11970
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.Shell>,
11971
- /**
11972
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
11973
- * used by this class
11974
- */
11975
- FNMetaImpl?: Function
11976
- ): Function;
11971
+ oListener?: object
11972
+ ): this;
11977
11973
  /**
11978
11974
  * Fires event {@link #event:feedSubmit feedSubmit} to attached listeners.
11979
11975
  */
@@ -12162,10 +12158,6 @@ declare namespace sap {
12162
12158
  * the current language will be displayed.
12163
12159
  */
12164
12160
  getLogoutButtonTooltip(): string;
12165
- /**
12166
- * Returns a metadata object for class sap.ui.ux3.Shell.
12167
- */
12168
- static getMetadata(): sap.ui.core.ElementMetadata;
12169
12161
  /**
12170
12162
  * @SINCE 1.7.0
12171
12163
  *
@@ -12917,6 +12909,31 @@ declare namespace sap {
12917
12909
  mSettings?: sap.ui.ux3.$ThingActionSettings
12918
12910
  );
12919
12911
 
12912
+ /**
12913
+ * Creates a new subclass of class sap.ui.ux3.ThingAction with name `sClassName` and enriches it with the
12914
+ * information contained in `oClassInfo`.
12915
+ *
12916
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
12917
+ */
12918
+ static extend<T extends Record<string, unknown>>(
12919
+ /**
12920
+ * Name of the class being created
12921
+ */
12922
+ sClassName: string,
12923
+ /**
12924
+ * Object literal with information about the class
12925
+ */
12926
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.ThingAction>,
12927
+ /**
12928
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
12929
+ * used by this class
12930
+ */
12931
+ FNMetaImpl?: Function
12932
+ ): Function;
12933
+ /**
12934
+ * Returns a metadata object for class sap.ui.ux3.ThingAction.
12935
+ */
12936
+ static getMetadata(): sap.ui.core.ElementMetadata;
12920
12937
  /**
12921
12938
  * Attaches event handler `fnFunction` to the {@link #event:select select} event of this `sap.ui.ux3.ThingAction`.
12922
12939
  *
@@ -12973,27 +12990,6 @@ declare namespace sap {
12973
12990
  */
12974
12991
  oListener?: object
12975
12992
  ): this;
12976
- /**
12977
- * Creates a new subclass of class sap.ui.ux3.ThingAction with name `sClassName` and enriches it with the
12978
- * information contained in `oClassInfo`.
12979
- *
12980
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
12981
- */
12982
- static extend<T extends Record<string, unknown>>(
12983
- /**
12984
- * Name of the class being created
12985
- */
12986
- sClassName: string,
12987
- /**
12988
- * Object literal with information about the class
12989
- */
12990
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.ThingAction>,
12991
- /**
12992
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
12993
- * used by this class
12994
- */
12995
- FNMetaImpl?: Function
12996
- ): Function;
12997
12993
  /**
12998
12994
  * Fires event {@link #event:select select} to attached listeners.
12999
12995
  */
@@ -13020,10 +13016,6 @@ declare namespace sap {
13020
13016
  * Default value is `true`.
13021
13017
  */
13022
13018
  getEnabled(): boolean;
13023
- /**
13024
- * Returns a metadata object for class sap.ui.ux3.ThingAction.
13025
- */
13026
- static getMetadata(): sap.ui.core.ElementMetadata;
13027
13019
  /**
13028
13020
  * Gets current value of property {@link #getText text}.
13029
13021
  *
@@ -13096,6 +13088,31 @@ declare namespace sap {
13096
13088
  mSettings?: sap.ui.ux3.$ThingGroupSettings
13097
13089
  );
13098
13090
 
13091
+ /**
13092
+ * Creates a new subclass of class sap.ui.ux3.ThingGroup with name `sClassName` and enriches it with the
13093
+ * information contained in `oClassInfo`.
13094
+ *
13095
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
13096
+ */
13097
+ static extend<T extends Record<string, unknown>>(
13098
+ /**
13099
+ * Name of the class being created
13100
+ */
13101
+ sClassName: string,
13102
+ /**
13103
+ * Object literal with information about the class
13104
+ */
13105
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.ThingGroup>,
13106
+ /**
13107
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
13108
+ * used by this class
13109
+ */
13110
+ FNMetaImpl?: Function
13111
+ ): Function;
13112
+ /**
13113
+ * Returns a metadata object for class sap.ui.ux3.ThingGroup.
13114
+ */
13115
+ static getMetadata(): sap.ui.core.ElementMetadata;
13099
13116
  /**
13100
13117
  * Adds some action to the aggregation {@link #getActions actions}.
13101
13118
  */
@@ -13122,27 +13139,6 @@ declare namespace sap {
13122
13139
  * Destroys all the content in the aggregation {@link #getContent content}.
13123
13140
  */
13124
13141
  destroyContent(): this;
13125
- /**
13126
- * Creates a new subclass of class sap.ui.ux3.ThingGroup with name `sClassName` and enriches it with the
13127
- * information contained in `oClassInfo`.
13128
- *
13129
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
13130
- */
13131
- static extend<T extends Record<string, unknown>>(
13132
- /**
13133
- * Name of the class being created
13134
- */
13135
- sClassName: string,
13136
- /**
13137
- * Object literal with information about the class
13138
- */
13139
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.ThingGroup>,
13140
- /**
13141
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
13142
- * used by this class
13143
- */
13144
- FNMetaImpl?: Function
13145
- ): Function;
13146
13142
  /**
13147
13143
  * Gets content of aggregation {@link #getActions actions}.
13148
13144
  *
@@ -13163,10 +13159,6 @@ declare namespace sap {
13163
13159
  * Content of Group
13164
13160
  */
13165
13161
  getContent(): sap.ui.core.Control[];
13166
- /**
13167
- * Returns a metadata object for class sap.ui.ux3.ThingGroup.
13168
- */
13169
- static getMetadata(): sap.ui.core.ElementMetadata;
13170
13162
  /**
13171
13163
  * Gets current value of property {@link #getTitle title}.
13172
13164
  *
@@ -13319,6 +13311,31 @@ declare namespace sap {
13319
13311
  mSettings?: sap.ui.ux3.$ThingInspectorSettings
13320
13312
  );
13321
13313
 
13314
+ /**
13315
+ * Creates a new subclass of class sap.ui.ux3.ThingInspector with name `sClassName` and enriches it with
13316
+ * the information contained in `oClassInfo`.
13317
+ *
13318
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.ux3.Overlay.extend}.
13319
+ */
13320
+ static extend<T extends Record<string, unknown>>(
13321
+ /**
13322
+ * Name of the class being created
13323
+ */
13324
+ sClassName: string,
13325
+ /**
13326
+ * Object literal with information about the class
13327
+ */
13328
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.ThingInspector>,
13329
+ /**
13330
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
13331
+ * used by this class
13332
+ */
13333
+ FNMetaImpl?: Function
13334
+ ): Function;
13335
+ /**
13336
+ * Returns a metadata object for class sap.ui.ux3.ThingInspector.
13337
+ */
13338
+ static getMetadata(): sap.ui.core.ElementMetadata;
13322
13339
  /**
13323
13340
  * Adds some action to the aggregation {@link #getActions actions}.
13324
13341
  */
@@ -13549,27 +13566,6 @@ declare namespace sap {
13549
13566
  */
13550
13567
  oListener?: object
13551
13568
  ): this;
13552
- /**
13553
- * Creates a new subclass of class sap.ui.ux3.ThingInspector with name `sClassName` and enriches it with
13554
- * the information contained in `oClassInfo`.
13555
- *
13556
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.ux3.Overlay.extend}.
13557
- */
13558
- static extend<T extends Record<string, unknown>>(
13559
- /**
13560
- * Name of the class being created
13561
- */
13562
- sClassName: string,
13563
- /**
13564
- * Object literal with information about the class
13565
- */
13566
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.ThingInspector>,
13567
- /**
13568
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
13569
- * used by this class
13570
- */
13571
- FNMetaImpl?: Function
13572
- ): Function;
13573
13569
  /**
13574
13570
  * Fires event {@link #event:actionSelected actionSelected} to attached listeners.
13575
13571
  */
@@ -13727,10 +13723,6 @@ declare namespace sap {
13727
13723
  * Thing Icon Url
13728
13724
  */
13729
13725
  getIcon(): sap.ui.core.URI;
13730
- /**
13731
- * Returns a metadata object for class sap.ui.ux3.ThingInspector.
13732
- */
13733
- static getMetadata(): sap.ui.core.ElementMetadata;
13734
13726
  /**
13735
13727
  * Gets current value of property {@link #getSecondTitle secondTitle}.
13736
13728
  *
@@ -14154,6 +14146,31 @@ declare namespace sap {
14154
14146
  mSettings?: sap.ui.ux3.$ThingViewerSettings
14155
14147
  );
14156
14148
 
14149
+ /**
14150
+ * Creates a new subclass of class sap.ui.ux3.ThingViewer with name `sClassName` and enriches it with the
14151
+ * information contained in `oClassInfo`.
14152
+ *
14153
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
14154
+ */
14155
+ static extend<T extends Record<string, unknown>>(
14156
+ /**
14157
+ * Name of the class being created
14158
+ */
14159
+ sClassName: string,
14160
+ /**
14161
+ * Object literal with information about the class
14162
+ */
14163
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.ThingViewer>,
14164
+ /**
14165
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14166
+ * used by this class
14167
+ */
14168
+ FNMetaImpl?: Function
14169
+ ): Function;
14170
+ /**
14171
+ * Returns a metadata object for class sap.ui.ux3.ThingViewer.
14172
+ */
14173
+ static getMetadata(): sap.ui.core.ElementMetadata;
14157
14174
  /**
14158
14175
  * Adds some facet to the aggregation {@link #getFacets facets}.
14159
14176
  */
@@ -14256,27 +14273,6 @@ declare namespace sap {
14256
14273
  */
14257
14274
  oListener?: object
14258
14275
  ): this;
14259
- /**
14260
- * Creates a new subclass of class sap.ui.ux3.ThingViewer with name `sClassName` and enriches it with the
14261
- * information contained in `oClassInfo`.
14262
- *
14263
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
14264
- */
14265
- static extend<T extends Record<string, unknown>>(
14266
- /**
14267
- * Name of the class being created
14268
- */
14269
- sClassName: string,
14270
- /**
14271
- * Object literal with information about the class
14272
- */
14273
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.ThingViewer>,
14274
- /**
14275
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14276
- * used by this class
14277
- */
14278
- FNMetaImpl?: Function
14279
- ): Function;
14280
14276
  /**
14281
14277
  * Fires event {@link #event:facetSelected facetSelected} to attached listeners.
14282
14278
  *
@@ -14350,10 +14346,6 @@ declare namespace sap {
14350
14346
  * Thing Icon Url
14351
14347
  */
14352
14348
  getIcon(): sap.ui.core.URI;
14353
- /**
14354
- * Returns a metadata object for class sap.ui.ux3.ThingViewer.
14355
- */
14356
- static getMetadata(): sap.ui.core.ElementMetadata;
14357
14349
  /**
14358
14350
  * ID of the element which is the current target of the association {@link #getSelectedFacet selectedFacet},
14359
14351
  * or `null`.
@@ -14667,6 +14659,31 @@ declare namespace sap {
14667
14659
  mSettings?: sap.ui.ux3.$ToolPopupSettings
14668
14660
  );
14669
14661
 
14662
+ /**
14663
+ * Creates a new subclass of class sap.ui.ux3.ToolPopup with name `sClassName` and enriches it with the
14664
+ * information contained in `oClassInfo`.
14665
+ *
14666
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
14667
+ */
14668
+ static extend<T extends Record<string, unknown>>(
14669
+ /**
14670
+ * Name of the class being created
14671
+ */
14672
+ sClassName: string,
14673
+ /**
14674
+ * Object literal with information about the class
14675
+ */
14676
+ oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.ToolPopup>,
14677
+ /**
14678
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14679
+ * used by this class
14680
+ */
14681
+ FNMetaImpl?: Function
14682
+ ): Function;
14683
+ /**
14684
+ * Returns a metadata object for class sap.ui.ux3.ToolPopup.
14685
+ */
14686
+ static getMetadata(): sap.ui.core.ElementMetadata;
14670
14687
  /**
14671
14688
  * Adds some button to the aggregation {@link #getButtons buttons}.
14672
14689
  */
@@ -15065,27 +15082,6 @@ declare namespace sap {
15065
15082
  */
15066
15083
  oListener?: object
15067
15084
  ): this;
15068
- /**
15069
- * Creates a new subclass of class sap.ui.ux3.ToolPopup with name `sClassName` and enriches it with the
15070
- * information contained in `oClassInfo`.
15071
- *
15072
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
15073
- */
15074
- static extend<T extends Record<string, unknown>>(
15075
- /**
15076
- * Name of the class being created
15077
- */
15078
- sClassName: string,
15079
- /**
15080
- * Object literal with information about the class
15081
- */
15082
- oClassInfo?: sap.ClassInfo<T, sap.ui.ux3.ToolPopup>,
15083
- /**
15084
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
15085
- * used by this class
15086
- */
15087
- FNMetaImpl?: Function
15088
- ): Function;
15089
15085
  /**
15090
15086
  * Fires event {@link #event:close close} to attached listeners.
15091
15087
  *
@@ -15265,10 +15261,6 @@ declare namespace sap {
15265
15261
  * Forces a maximum width of the ToolPopup in pixels.
15266
15262
  */
15267
15263
  getMaxWidth(): sap.ui.core.CSSSize;
15268
- /**
15269
- * Returns a metadata object for class sap.ui.ux3.ToolPopup.
15270
- */
15271
- static getMetadata(): sap.ui.core.ElementMetadata;
15272
15264
  /**
15273
15265
  * Gets current value of property {@link #getModal modal}.
15274
15266
  *