@sapui5/ts-types 1.92.2 → 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.
Files changed (64) hide show
  1. package/README.md +3 -1
  2. package/package.json +1 -1
  3. package/types/index.d.ts +2 -1
  4. package/types/sap.apf.d.ts +1 -44
  5. package/types/sap.ca.ui.d.ts +649 -651
  6. package/types/sap.chart.d.ts +49 -49
  7. package/types/sap.collaboration.d.ts +756 -762
  8. package/types/sap.esh.search.ui.d.ts +241 -0
  9. package/types/sap.f.d.ts +623 -468
  10. package/types/sap.fe.common.d.ts +1 -1
  11. package/types/sap.fe.core.d.ts +101 -75
  12. package/types/sap.fe.macros.d.ts +55 -8
  13. package/types/sap.fe.navigation.d.ts +5 -14
  14. package/types/sap.fe.placeholder-1.93.1-d.ts +3 -0
  15. package/types/sap.fe.plugins.d.ts +2 -4
  16. package/types/sap.fe.templates.d.ts +1 -16
  17. package/types/sap.fe.test.d.ts +44 -115
  18. package/types/sap.fe.tools.d.ts +2 -4
  19. package/types/sap.feedback.ui.d.ts +1 -1
  20. package/types/sap.gantt.d.ts +1321 -1191
  21. package/types/sap.landvisz.d.ts +345 -345
  22. package/types/sap.m.d.ts +5498 -4814
  23. package/types/sap.makit.d.ts +123 -123
  24. package/types/sap.me.d.ts +137 -153
  25. package/types/sap.ndc.d.ts +29 -29
  26. package/types/sap.ovp.d.ts +1 -1
  27. package/types/sap.rules.ui.d.ts +170 -124
  28. package/types/sap.suite.ui.commons.d.ts +1593 -1612
  29. package/types/sap.suite.ui.generic.template.d.ts +285 -165
  30. package/types/sap.suite.ui.microchart.d.ts +742 -508
  31. package/types/sap.tnt.d.ts +149 -117
  32. package/types/sap.ui.codeeditor.d.ts +28 -28
  33. package/types/sap.ui.commons.d.ts +1387 -1387
  34. package/types/sap.ui.comp.d.ts +1013 -1013
  35. package/types/sap.ui.core.d.ts +3852 -3973
  36. package/types/sap.ui.dt.d.ts +2 -4
  37. package/types/sap.ui.export.d.ts +3 -3
  38. package/types/sap.ui.fl.d.ts +1 -1
  39. package/types/sap.ui.generic.app.d.ts +138 -147
  40. package/types/sap.ui.generic.template.d.ts +2 -4
  41. package/types/sap.ui.integration.d.ts +118 -112
  42. package/types/sap.ui.layout.d.ts +593 -586
  43. package/types/sap.ui.mdc.d.ts +7 -1
  44. package/types/sap.ui.richtexteditor.d.ts +30 -30
  45. package/types/sap.ui.rta.d.ts +1 -1
  46. package/types/sap.ui.suite.d.ts +53 -53
  47. package/types/sap.ui.support.d.ts +6 -12
  48. package/types/sap.ui.table.d.ts +248 -248
  49. package/types/sap.ui.testrecorder.d.ts +1 -1
  50. package/types/sap.ui.unified.d.ts +853 -713
  51. package/types/sap.ui.ux3.d.ts +785 -793
  52. package/types/sap.ui.vbm.d.ts +784 -784
  53. package/types/sap.ui.vk.d.ts +3130 -2251
  54. package/types/sap.ui.vtm.d.ts +240 -240
  55. package/types/sap.uiext.inbox.d.ts +222 -222
  56. package/types/sap.ushell.d.ts +340 -377
  57. package/types/sap.ushell_abap.d.ts +127 -129
  58. package/types/sap.uxap.d.ts +384 -220
  59. package/types/sap.viz.d.ts +1527 -1527
  60. package/types/sap.webanalytics.core.d.ts +1 -1
  61. package/types/sap.zen.commons.d.ts +188 -222
  62. package/types/sap.zen.crosstab.d.ts +15 -17
  63. package/types/sap.zen.dsh.d.ts +176 -211
  64. package/types/sap.fe.placeholder.d.ts +0 -5
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.92.0
1
+ // For Library Version: 1.93.2
2
2
 
3
3
  declare namespace sap {
4
4
  namespace uiext {
@@ -57,17 +57,17 @@ declare namespace sap {
57
57
  /**
58
58
  * event is fired to add all the header parameters just before uploading a file
59
59
  */
60
- uploadButtonPress?: Function;
60
+ uploadButtonPress?: (oEvent: sap.ui.base.Event) => void;
61
61
 
62
62
  /**
63
63
  * event is fired when uploading a file is completed successfully
64
64
  */
65
- uploadSuccess?: Function;
65
+ uploadSuccess?: (oEvent: sap.ui.base.Event) => void;
66
66
 
67
67
  /**
68
68
  * event is fired when uploading a file has failed
69
69
  */
70
- uploadFailed?: Function;
70
+ uploadFailed?: (oEvent: sap.ui.base.Event) => void;
71
71
  }
72
72
 
73
73
  interface $InboxAttachmentTileSettings
@@ -121,7 +121,7 @@ declare namespace sap {
121
121
  /**
122
122
  * fire this event to delete the attachment
123
123
  */
124
- deleteAttachment?: Function;
124
+ deleteAttachment?: (oEvent: sap.ui.base.Event) => void;
125
125
  }
126
126
 
127
127
  interface $InboxBusyIndicatorSettings
@@ -196,7 +196,7 @@ declare namespace sap {
196
196
  /**
197
197
  * Event is raised when submit on the feeder is pressed.
198
198
  */
199
- commentSubmit?: Function;
199
+ commentSubmit?: (oEvent: sap.ui.base.Event) => void;
200
200
  }
201
201
 
202
202
  interface $InboxTaskTitleControlSettings
@@ -248,7 +248,7 @@ declare namespace sap {
248
248
  /**
249
249
  * event is fired when upload for selected file is requested
250
250
  */
251
- uploadSelectedFile?: Function;
251
+ uploadSelectedFile?: (oEvent: sap.ui.base.Event) => void;
252
252
  }
253
253
 
254
254
  /**
@@ -356,6 +356,34 @@ declare namespace sap {
356
356
  mSettings?: sap.uiext.inbox.composite.$InboxAttachmentsTileContainerSettings
357
357
  );
358
358
 
359
+ /**
360
+ * Creates a new subclass of class sap.uiext.inbox.composite.InboxAttachmentsTileContainer with name `sClassName`
361
+ * and enriches it with the information contained in `oClassInfo`.
362
+ *
363
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
364
+ */
365
+ static extend<T extends Record<string, unknown>>(
366
+ /**
367
+ * Name of the class being created
368
+ */
369
+ sClassName: string,
370
+ /**
371
+ * Object literal with information about the class
372
+ */
373
+ oClassInfo?: sap.ClassInfo<
374
+ T,
375
+ sap.uiext.inbox.composite.InboxAttachmentsTileContainer
376
+ >,
377
+ /**
378
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
379
+ * used by this class
380
+ */
381
+ FNMetaImpl?: Function
382
+ ): Function;
383
+ /**
384
+ * Returns a metadata object for class sap.uiext.inbox.composite.InboxAttachmentsTileContainer.
385
+ */
386
+ static getMetadata(): sap.ui.core.ElementMetadata;
359
387
  /**
360
388
  * Adds some attachment to the aggregation {@link #getAttachments attachments}.
361
389
  */
@@ -552,30 +580,6 @@ declare namespace sap {
552
580
  */
553
581
  oListener?: object
554
582
  ): this;
555
- /**
556
- * Creates a new subclass of class sap.uiext.inbox.composite.InboxAttachmentsTileContainer with name `sClassName`
557
- * and enriches it with the information contained in `oClassInfo`.
558
- *
559
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
560
- */
561
- static extend<T extends Record<string, unknown>>(
562
- /**
563
- * Name of the class being created
564
- */
565
- sClassName: string,
566
- /**
567
- * Object literal with information about the class
568
- */
569
- oClassInfo?: sap.ClassInfo<
570
- T,
571
- sap.uiext.inbox.composite.InboxAttachmentsTileContainer
572
- >,
573
- /**
574
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
575
- * used by this class
576
- */
577
- FNMetaImpl?: Function
578
- ): Function;
579
583
  /**
580
584
  * Fires event {@link #event:uploadButtonPress uploadButtonPress} to attached listeners.
581
585
  */
@@ -633,10 +637,6 @@ declare namespace sap {
633
637
  * boolean property to indicate if user has selected a file to upload
634
638
  */
635
639
  getIsFileSelected(): boolean;
636
- /**
637
- * Returns a metadata object for class sap.uiext.inbox.composite.InboxAttachmentsTileContainer.
638
- */
639
- static getMetadata(): sap.ui.core.ElementMetadata;
640
640
  /**
641
641
  * Gets current value of property {@link #getShowAddTile showAddTile}.
642
642
  *
@@ -814,6 +814,34 @@ declare namespace sap {
814
814
  mSettings?: sap.uiext.inbox.composite.$InboxAttachmentTileSettings
815
815
  );
816
816
 
817
+ /**
818
+ * Creates a new subclass of class sap.uiext.inbox.composite.InboxAttachmentTile with name `sClassName`
819
+ * and enriches it with the information contained in `oClassInfo`.
820
+ *
821
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
822
+ */
823
+ static extend<T extends Record<string, unknown>>(
824
+ /**
825
+ * Name of the class being created
826
+ */
827
+ sClassName: string,
828
+ /**
829
+ * Object literal with information about the class
830
+ */
831
+ oClassInfo?: sap.ClassInfo<
832
+ T,
833
+ sap.uiext.inbox.composite.InboxAttachmentTile
834
+ >,
835
+ /**
836
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
837
+ * used by this class
838
+ */
839
+ FNMetaImpl?: Function
840
+ ): Function;
841
+ /**
842
+ * Returns a metadata object for class sap.uiext.inbox.composite.InboxAttachmentTile.
843
+ */
844
+ static getMetadata(): sap.ui.core.ElementMetadata;
817
845
  /**
818
846
  * Attaches event handler `fnFunction` to the {@link #event:deleteAttachment deleteAttachment} event of
819
847
  * this `sap.uiext.inbox.composite.InboxAttachmentTile`.
@@ -875,30 +903,6 @@ declare namespace sap {
875
903
  */
876
904
  oListener?: object
877
905
  ): this;
878
- /**
879
- * Creates a new subclass of class sap.uiext.inbox.composite.InboxAttachmentTile with name `sClassName`
880
- * and enriches it with the information contained in `oClassInfo`.
881
- *
882
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
883
- */
884
- static extend<T extends Record<string, unknown>>(
885
- /**
886
- * Name of the class being created
887
- */
888
- sClassName: string,
889
- /**
890
- * Object literal with information about the class
891
- */
892
- oClassInfo?: sap.ClassInfo<
893
- T,
894
- sap.uiext.inbox.composite.InboxAttachmentTile
895
- >,
896
- /**
897
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
898
- * used by this class
899
- */
900
- FNMetaImpl?: Function
901
- ): Function;
902
906
  /**
903
907
  * Fires event {@link #event:deleteAttachment deleteAttachment} to attached listeners.
904
908
  */
@@ -950,10 +954,6 @@ declare namespace sap {
950
954
  * Icon URI of the file type
951
955
  */
952
956
  getFileTypeIcon(): sap.ui.core.URI;
953
- /**
954
- * Returns a metadata object for class sap.uiext.inbox.composite.InboxAttachmentTile.
955
- */
956
- static getMetadata(): sap.ui.core.ElementMetadata;
957
957
  /**
958
958
  * Gets current value of property {@link #getShowDeleteButton showDeleteButton}.
959
959
  *
@@ -1198,16 +1198,16 @@ declare namespace sap {
1198
1198
  */
1199
1199
  FNMetaImpl?: Function
1200
1200
  ): Function;
1201
+ /**
1202
+ * Returns a metadata object for class sap.uiext.inbox.composite.InboxComment.
1203
+ */
1204
+ static getMetadata(): sap.ui.core.ElementMetadata;
1201
1205
  /**
1202
1206
  * Gets current value of property {@link #getCreatedBy createdBy}.
1203
1207
  *
1204
1208
  * Unique username of the user responsible for adding comment
1205
1209
  */
1206
1210
  getCreatedBy(): string;
1207
- /**
1208
- * Returns a metadata object for class sap.uiext.inbox.composite.InboxComment.
1209
- */
1210
- static getMetadata(): sap.ui.core.ElementMetadata;
1211
1211
  /**
1212
1212
  * Gets current value of property {@link #getSapOrigin sapOrigin}.
1213
1213
  *
@@ -1352,6 +1352,34 @@ declare namespace sap {
1352
1352
  mSettings?: sap.uiext.inbox.composite.$InboxTaskCommentsSettings
1353
1353
  );
1354
1354
 
1355
+ /**
1356
+ * Creates a new subclass of class sap.uiext.inbox.composite.InboxTaskComments with name `sClassName` and
1357
+ * enriches it with the information contained in `oClassInfo`.
1358
+ *
1359
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1360
+ */
1361
+ static extend<T extends Record<string, unknown>>(
1362
+ /**
1363
+ * Name of the class being created
1364
+ */
1365
+ sClassName: string,
1366
+ /**
1367
+ * Object literal with information about the class
1368
+ */
1369
+ oClassInfo?: sap.ClassInfo<
1370
+ T,
1371
+ sap.uiext.inbox.composite.InboxTaskComments
1372
+ >,
1373
+ /**
1374
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1375
+ * used by this class
1376
+ */
1377
+ FNMetaImpl?: Function
1378
+ ): Function;
1379
+ /**
1380
+ * Returns a metadata object for class sap.uiext.inbox.composite.InboxTaskComments.
1381
+ */
1382
+ static getMetadata(): sap.ui.core.ElementMetadata;
1355
1383
  /**
1356
1384
  * Adds some comment to the aggregation {@link #getComments comments}.
1357
1385
  */
@@ -1424,30 +1452,6 @@ declare namespace sap {
1424
1452
  */
1425
1453
  oListener?: object
1426
1454
  ): this;
1427
- /**
1428
- * Creates a new subclass of class sap.uiext.inbox.composite.InboxTaskComments with name `sClassName` and
1429
- * enriches it with the information contained in `oClassInfo`.
1430
- *
1431
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1432
- */
1433
- static extend<T extends Record<string, unknown>>(
1434
- /**
1435
- * Name of the class being created
1436
- */
1437
- sClassName: string,
1438
- /**
1439
- * Object literal with information about the class
1440
- */
1441
- oClassInfo?: sap.ClassInfo<
1442
- T,
1443
- sap.uiext.inbox.composite.InboxTaskComments
1444
- >,
1445
- /**
1446
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1447
- * used by this class
1448
- */
1449
- FNMetaImpl?: Function
1450
- ): Function;
1451
1455
  /**
1452
1456
  * Fires event {@link #event:commentSubmit commentSubmit} to attached listeners.
1453
1457
  */
@@ -1475,10 +1479,6 @@ declare namespace sap {
1475
1479
  * URL to the thumbnail image for the comment feeder.
1476
1480
  */
1477
1481
  getFeederThumbnailSrc(): sap.ui.core.URI;
1478
- /**
1479
- * Returns a metadata object for class sap.uiext.inbox.composite.InboxTaskComments.
1480
- */
1481
- static getMetadata(): sap.ui.core.ElementMetadata;
1482
1482
  /**
1483
1483
  * Gets current value of property {@link #getShowFeeder showFeeder}.
1484
1484
  *
@@ -1627,10 +1627,6 @@ declare namespace sap {
1627
1627
  mSettings?: sap.uiext.inbox.composite.$InboxTaskTitleControlSettings
1628
1628
  );
1629
1629
 
1630
- /**
1631
- * Destroys the titleLink in the aggregation {@link #getTitleLink titleLink}.
1632
- */
1633
- destroyTitleLink(): this;
1634
1630
  /**
1635
1631
  * Creates a new subclass of class sap.uiext.inbox.composite.InboxTaskTitleControl with name `sClassName`
1636
1632
  * and enriches it with the information contained in `oClassInfo`.
@@ -1655,6 +1651,14 @@ declare namespace sap {
1655
1651
  */
1656
1652
  FNMetaImpl?: Function
1657
1653
  ): Function;
1654
+ /**
1655
+ * Returns a metadata object for class sap.uiext.inbox.composite.InboxTaskTitleControl.
1656
+ */
1657
+ static getMetadata(): sap.ui.core.ElementMetadata;
1658
+ /**
1659
+ * Destroys the titleLink in the aggregation {@link #getTitleLink titleLink}.
1660
+ */
1661
+ destroyTitleLink(): this;
1658
1662
  /**
1659
1663
  * Gets current value of property {@link #getCategoryIconURI categoryIconURI}.
1660
1664
  *
@@ -1675,10 +1679,6 @@ declare namespace sap {
1675
1679
  * has Comments
1676
1680
  */
1677
1681
  getHasComments(): boolean;
1678
- /**
1679
- * Returns a metadata object for class sap.uiext.inbox.composite.InboxTaskTitleControl.
1680
- */
1681
- static getMetadata(): sap.ui.core.ElementMetadata;
1682
1682
  /**
1683
1683
  * Gets current value of property {@link #getTaskTitle taskTitle}.
1684
1684
  *
@@ -1790,6 +1790,34 @@ declare namespace sap {
1790
1790
  mSettings?: sap.uiext.inbox.composite.$InboxUploadAttachmentTileSettings
1791
1791
  );
1792
1792
 
1793
+ /**
1794
+ * Creates a new subclass of class sap.uiext.inbox.composite.InboxUploadAttachmentTile with name `sClassName`
1795
+ * and enriches it with the information contained in `oClassInfo`.
1796
+ *
1797
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1798
+ */
1799
+ static extend<T extends Record<string, unknown>>(
1800
+ /**
1801
+ * Name of the class being created
1802
+ */
1803
+ sClassName: string,
1804
+ /**
1805
+ * Object literal with information about the class
1806
+ */
1807
+ oClassInfo?: sap.ClassInfo<
1808
+ T,
1809
+ sap.uiext.inbox.composite.InboxUploadAttachmentTile
1810
+ >,
1811
+ /**
1812
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1813
+ * used by this class
1814
+ */
1815
+ FNMetaImpl?: Function
1816
+ ): Function;
1817
+ /**
1818
+ * Returns a metadata object for class sap.uiext.inbox.composite.InboxUploadAttachmentTile.
1819
+ */
1820
+ static getMetadata(): sap.ui.core.ElementMetadata;
1793
1821
  /**
1794
1822
  * Attaches event handler `fnFunction` to the {@link #event:uploadSelectedFile uploadSelectedFile} event
1795
1823
  * of this `sap.uiext.inbox.composite.InboxUploadAttachmentTile`.
@@ -1851,30 +1879,6 @@ declare namespace sap {
1851
1879
  */
1852
1880
  oListener?: object
1853
1881
  ): this;
1854
- /**
1855
- * Creates a new subclass of class sap.uiext.inbox.composite.InboxUploadAttachmentTile with name `sClassName`
1856
- * and enriches it with the information contained in `oClassInfo`.
1857
- *
1858
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1859
- */
1860
- static extend<T extends Record<string, unknown>>(
1861
- /**
1862
- * Name of the class being created
1863
- */
1864
- sClassName: string,
1865
- /**
1866
- * Object literal with information about the class
1867
- */
1868
- oClassInfo?: sap.ClassInfo<
1869
- T,
1870
- sap.uiext.inbox.composite.InboxUploadAttachmentTile
1871
- >,
1872
- /**
1873
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1874
- * used by this class
1875
- */
1876
- FNMetaImpl?: Function
1877
- ): Function;
1878
1882
  /**
1879
1883
  * Fires event {@link #event:uploadSelectedFile uploadSelectedFile} to attached listeners.
1880
1884
  */
@@ -1896,10 +1900,6 @@ declare namespace sap {
1896
1900
  * icon URI of the selected file type
1897
1901
  */
1898
1902
  getFileTypeIcon(): sap.ui.core.URI;
1899
- /**
1900
- * Returns a metadata object for class sap.uiext.inbox.composite.InboxUploadAttachmentTile.
1901
- */
1902
- static getMetadata(): sap.ui.core.ElementMetadata;
1903
1903
  /**
1904
1904
  * Sets a new value for property {@link #getFileName fileName}.
1905
1905
  *
@@ -1958,23 +1958,23 @@ declare namespace sap {
1958
1958
  * complete logic within. In this case once the oData request is complete, this event is fired with additional
1959
1959
  * parameters.
1960
1960
  */
1961
- oDataRequestCompleted?: Function;
1961
+ oDataRequestCompleted?: (oEvent: sap.ui.base.Event) => void;
1962
1962
 
1963
1963
  /**
1964
1964
  * this event is fires to handle refresh Action, when the handleBindings property is set to false.
1965
1965
  */
1966
- refresh?: Function;
1966
+ refresh?: (oEvent: sap.ui.base.Event) => void;
1967
1967
 
1968
1968
  /**
1969
1969
  * this event is fires to handle task Actions - Claim, Release, when the handleBindings property is set
1970
1970
  * to false.
1971
1971
  */
1972
- taskAction?: Function;
1972
+ taskAction?: (oEvent: sap.ui.base.Event) => void;
1973
1973
 
1974
1974
  /**
1975
1975
  * This event is fired when table row selection is changed in the list view of Inbox control
1976
1976
  */
1977
- taskSelectionChange?: Function;
1977
+ taskSelectionChange?: (oEvent: sap.ui.base.Event) => void;
1978
1978
  }
1979
1979
 
1980
1980
  interface $InboxLaunchPadSettings extends sap.ui.core.$ControlSettings {
@@ -2010,12 +2010,12 @@ declare namespace sap {
2010
2010
  /**
2011
2011
  * Fires an event when a tile is selected in Inbox LaunchPad.
2012
2012
  */
2013
- tileSelected?: Function;
2013
+ tileSelected?: (oEvent: sap.ui.base.Event) => void;
2014
2014
 
2015
2015
  /**
2016
2016
  * Fired when the user clicks the "Log-off" button.
2017
2017
  */
2018
- logout?: Function;
2018
+ logout?: (oEvent: sap.ui.base.Event) => void;
2019
2019
  }
2020
2020
 
2021
2021
  interface $InboxSplitAppSettings extends sap.ui.core.$ControlSettings {
@@ -2051,7 +2051,7 @@ declare namespace sap {
2051
2051
  /**
2052
2052
  * Navigation Button of the Master Page is pressed, if visible.
2053
2053
  */
2054
- navButtonPressed?: Function;
2054
+ navButtonPressed?: (oEvent: sap.ui.base.Event) => void;
2055
2055
  }
2056
2056
 
2057
2057
  interface $SubstitutionRulesManagerSettings
@@ -2206,6 +2206,31 @@ declare namespace sap {
2206
2206
  mSettings?: sap.uiext.inbox.$InboxSettings
2207
2207
  );
2208
2208
 
2209
+ /**
2210
+ * Creates a new subclass of class sap.uiext.inbox.Inbox with name `sClassName` and enriches it with the
2211
+ * information contained in `oClassInfo`.
2212
+ *
2213
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2214
+ */
2215
+ static extend<T extends Record<string, unknown>>(
2216
+ /**
2217
+ * Name of the class being created
2218
+ */
2219
+ sClassName: string,
2220
+ /**
2221
+ * Object literal with information about the class
2222
+ */
2223
+ oClassInfo?: sap.ClassInfo<T, sap.uiext.inbox.Inbox>,
2224
+ /**
2225
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2226
+ * used by this class
2227
+ */
2228
+ FNMetaImpl?: Function
2229
+ ): Function;
2230
+ /**
2231
+ * Returns a metadata object for class sap.uiext.inbox.Inbox.
2232
+ */
2233
+ static getMetadata(): sap.ui.core.ElementMetadata;
2209
2234
  /**
2210
2235
  * Adds an additional action to inbox
2211
2236
  */
@@ -2544,27 +2569,6 @@ declare namespace sap {
2544
2569
  */
2545
2570
  oListener?: object
2546
2571
  ): this;
2547
- /**
2548
- * Creates a new subclass of class sap.uiext.inbox.Inbox with name `sClassName` and enriches it with the
2549
- * information contained in `oClassInfo`.
2550
- *
2551
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2552
- */
2553
- static extend<T extends Record<string, unknown>>(
2554
- /**
2555
- * Name of the class being created
2556
- */
2557
- sClassName: string,
2558
- /**
2559
- * Object literal with information about the class
2560
- */
2561
- oClassInfo?: sap.ClassInfo<T, sap.uiext.inbox.Inbox>,
2562
- /**
2563
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2564
- * used by this class
2565
- */
2566
- FNMetaImpl?: Function
2567
- ): Function;
2568
2572
  /**
2569
2573
  * Fires event {@link #event:oDataRequestCompleted oDataRequestCompleted} to attached listeners.
2570
2574
  */
@@ -2610,10 +2614,6 @@ declare namespace sap {
2610
2614
  * Default value is `true`.
2611
2615
  */
2612
2616
  getHandleBindings(): boolean;
2613
- /**
2614
- * Returns a metadata object for class sap.uiext.inbox.Inbox.
2615
- */
2616
- static getMetadata(): sap.ui.core.ElementMetadata;
2617
2617
  /**
2618
2618
  * Gets current value of property {@link #getOpenCompletedTasks openCompletedTasks}.
2619
2619
  *
@@ -2866,6 +2866,31 @@ declare namespace sap {
2866
2866
  mSettings?: sap.uiext.inbox.$InboxLaunchPadSettings
2867
2867
  );
2868
2868
 
2869
+ /**
2870
+ * Creates a new subclass of class sap.uiext.inbox.InboxLaunchPad with name `sClassName` and enriches it
2871
+ * with the information contained in `oClassInfo`.
2872
+ *
2873
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2874
+ */
2875
+ static extend<T extends Record<string, unknown>>(
2876
+ /**
2877
+ * Name of the class being created
2878
+ */
2879
+ sClassName: string,
2880
+ /**
2881
+ * Object literal with information about the class
2882
+ */
2883
+ oClassInfo?: sap.ClassInfo<T, sap.uiext.inbox.InboxLaunchPad>,
2884
+ /**
2885
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2886
+ * used by this class
2887
+ */
2888
+ FNMetaImpl?: Function
2889
+ ): Function;
2890
+ /**
2891
+ * Returns a metadata object for class sap.uiext.inbox.InboxLaunchPad.
2892
+ */
2893
+ static getMetadata(): sap.ui.core.ElementMetadata;
2869
2894
  /**
2870
2895
  * Attaches event handler `fnFunction` to the {@link #event:logout logout} event of this `sap.uiext.inbox.InboxLaunchPad`.
2871
2896
  *
@@ -2978,27 +3003,6 @@ declare namespace sap {
2978
3003
  */
2979
3004
  oListener?: object
2980
3005
  ): this;
2981
- /**
2982
- * Creates a new subclass of class sap.uiext.inbox.InboxLaunchPad with name `sClassName` and enriches it
2983
- * with the information contained in `oClassInfo`.
2984
- *
2985
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2986
- */
2987
- static extend<T extends Record<string, unknown>>(
2988
- /**
2989
- * Name of the class being created
2990
- */
2991
- sClassName: string,
2992
- /**
2993
- * Object literal with information about the class
2994
- */
2995
- oClassInfo?: sap.ClassInfo<T, sap.uiext.inbox.InboxLaunchPad>,
2996
- /**
2997
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2998
- * used by this class
2999
- */
3000
- FNMetaImpl?: Function
3001
- ): Function;
3002
3006
  /**
3003
3007
  * Fires event {@link #event:logout logout} to attached listeners.
3004
3008
  */
@@ -3023,10 +3027,6 @@ declare namespace sap {
3023
3027
  * Path (src) to the logo icon to be displayed in the Inbox LaunchPad header.
3024
3028
  */
3025
3029
  getLogoSrc(): string;
3026
- /**
3027
- * Returns a metadata object for class sap.uiext.inbox.InboxLaunchPad.
3028
- */
3029
- static getMetadata(): sap.ui.core.ElementMetadata;
3030
3030
  /**
3031
3031
  * Gets current value of property {@link #getShowLogoutButton showLogoutButton}.
3032
3032
  *
@@ -3256,6 +3256,31 @@ declare namespace sap {
3256
3256
  mSettings?: sap.uiext.inbox.$InboxSplitAppSettings
3257
3257
  );
3258
3258
 
3259
+ /**
3260
+ * Creates a new subclass of class sap.uiext.inbox.InboxSplitApp with name `sClassName` and enriches it
3261
+ * with the information contained in `oClassInfo`.
3262
+ *
3263
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3264
+ */
3265
+ static extend<T extends Record<string, unknown>>(
3266
+ /**
3267
+ * Name of the class being created
3268
+ */
3269
+ sClassName: string,
3270
+ /**
3271
+ * Object literal with information about the class
3272
+ */
3273
+ oClassInfo?: sap.ClassInfo<T, sap.uiext.inbox.InboxSplitApp>,
3274
+ /**
3275
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3276
+ * used by this class
3277
+ */
3278
+ FNMetaImpl?: Function
3279
+ ): Function;
3280
+ /**
3281
+ * Returns a metadata object for class sap.uiext.inbox.InboxSplitApp.
3282
+ */
3283
+ static getMetadata(): sap.ui.core.ElementMetadata;
3259
3284
  /**
3260
3285
  * Attaches event handler `fnFunction` to the {@link #event:navButtonPressed navButtonPressed} event of
3261
3286
  * this `sap.uiext.inbox.InboxSplitApp`.
@@ -3323,27 +3348,6 @@ declare namespace sap {
3323
3348
  */
3324
3349
  oListener?: object
3325
3350
  ): this;
3326
- /**
3327
- * Creates a new subclass of class sap.uiext.inbox.InboxSplitApp with name `sClassName` and enriches it
3328
- * with the information contained in `oClassInfo`.
3329
- *
3330
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3331
- */
3332
- static extend<T extends Record<string, unknown>>(
3333
- /**
3334
- * Name of the class being created
3335
- */
3336
- sClassName: string,
3337
- /**
3338
- * Object literal with information about the class
3339
- */
3340
- oClassInfo?: sap.ClassInfo<T, sap.uiext.inbox.InboxSplitApp>,
3341
- /**
3342
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3343
- * used by this class
3344
- */
3345
- FNMetaImpl?: Function
3346
- ): Function;
3347
3351
  /**
3348
3352
  * Fires event {@link #event:navButtonPressed navButtonPressed} to attached listeners.
3349
3353
  */
@@ -3359,10 +3363,6 @@ declare namespace sap {
3359
3363
  * Filters to be applied on the data shown in the MasterPage
3360
3364
  */
3361
3365
  getFilters(): object[];
3362
- /**
3363
- * Returns a metadata object for class sap.uiext.inbox.InboxSplitApp.
3364
- */
3365
- static getMetadata(): sap.ui.core.ElementMetadata;
3366
3366
  /**
3367
3367
  * Gets current value of property {@link #getShowMasterPageNavBtn showMasterPageNavBtn}.
3368
3368
  *
@@ -3496,15 +3496,6 @@ declare namespace sap {
3496
3496
  mSettings?: sap.uiext.inbox.$SubstitutionRulesManagerSettings
3497
3497
  );
3498
3498
 
3499
- /**
3500
- * Binds the Substitution Rules to the given path.
3501
- */
3502
- bindSubstitutionRules(
3503
- /**
3504
- * The path
3505
- */
3506
- path: string
3507
- ): sap.uiext.inbox.SubstitutionRulesManager;
3508
3499
  /**
3509
3500
  * Creates a new subclass of class sap.uiext.inbox.SubstitutionRulesManager with name `sClassName` and enriches
3510
3501
  * it with the information contained in `oClassInfo`.
@@ -3533,6 +3524,15 @@ declare namespace sap {
3533
3524
  * Returns a metadata object for class sap.uiext.inbox.SubstitutionRulesManager.
3534
3525
  */
3535
3526
  static getMetadata(): sap.ui.core.ElementMetadata;
3527
+ /**
3528
+ * Binds the Substitution Rules to the given path.
3529
+ */
3530
+ bindSubstitutionRules(
3531
+ /**
3532
+ * The path
3533
+ */
3534
+ path: string
3535
+ ): sap.uiext.inbox.SubstitutionRulesManager;
3536
3536
  }
3537
3537
  }
3538
3538
  }