@sapui5/ts-types 1.92.1 → 1.93.2

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 +2 -29
  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 +7 -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.0-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 +1011 -1011
  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 +334 -380
  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.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -64,7 +64,7 @@ declare namespace sap {
64
64
  /**
65
65
  * click on the action bar
66
66
  */
67
- select?: Function;
67
+ select?: (oEvent: sap.ui.base.Event) => void;
68
68
  }
69
69
 
70
70
  interface $DataContainerSettings extends sap.ui.core.$ControlSettings {
@@ -103,7 +103,7 @@ declare namespace sap {
103
103
  /**
104
104
  * the action to be carried out on selection of a tab
105
105
  */
106
- select?: Function;
106
+ select?: (oEvent: sap.ui.base.Event) => void;
107
107
  }
108
108
 
109
109
  interface $DeploymentTypeSettings extends sap.ui.core.$ControlSettings {
@@ -134,7 +134,7 @@ declare namespace sap {
134
134
  /**
135
135
  * on click fire press
136
136
  */
137
- press?: Function;
137
+ press?: (oEvent: sap.ui.base.Event) => void;
138
138
  }
139
139
 
140
140
  interface $EntityCustomActionSettings
@@ -154,7 +154,7 @@ declare namespace sap {
154
154
  /**
155
155
  * click on the action bar
156
156
  */
157
- select?: Function;
157
+ select?: (oEvent: sap.ui.base.Event) => void;
158
158
  }
159
159
 
160
160
  interface $HeaderListSettings extends sap.ui.core.$ControlSettings {
@@ -183,7 +183,7 @@ declare namespace sap {
183
183
  /**
184
184
  * Event triggered when header is clicked
185
185
  */
186
- press?: Function;
186
+ press?: (oEvent: sap.ui.base.Event) => void;
187
187
  }
188
188
 
189
189
  interface $IdentificationBarSettings
@@ -242,7 +242,7 @@ declare namespace sap {
242
242
  /**
243
243
  * fires click event on selection
244
244
  */
245
- select?: Function;
245
+ select?: (oEvent: sap.ui.base.Event) => void;
246
246
  }
247
247
 
248
248
  interface $LinearRowFieldSettings extends sap.ui.core.$ControlSettings {
@@ -393,7 +393,7 @@ declare namespace sap {
393
393
  /**
394
394
  * called when Single view model is closed
395
395
  */
396
- closed?: Function;
396
+ closed?: (oEvent: sap.ui.base.Event) => void;
397
397
  }
398
398
 
399
399
  interface $TreeFieldSettings extends sap.ui.core.$ControlSettings {
@@ -458,6 +458,31 @@ declare namespace sap {
458
458
  mSettings?: sap.landvisz.internal.$ActionBarSettings
459
459
  );
460
460
 
461
+ /**
462
+ * Creates a new subclass of class sap.landvisz.internal.ActionBar with name `sClassName` and enriches it
463
+ * with the information contained in `oClassInfo`.
464
+ *
465
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
466
+ */
467
+ static extend<T extends Record<string, unknown>>(
468
+ /**
469
+ * Name of the class being created
470
+ */
471
+ sClassName: string,
472
+ /**
473
+ * Object literal with information about the class
474
+ */
475
+ oClassInfo?: sap.ClassInfo<T, sap.landvisz.internal.ActionBar>,
476
+ /**
477
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
478
+ * used by this class
479
+ */
480
+ FNMetaImpl?: Function
481
+ ): Function;
482
+ /**
483
+ * Returns a metadata object for class sap.landvisz.internal.ActionBar.
484
+ */
485
+ static getMetadata(): sap.ui.core.ElementMetadata;
461
486
  /**
462
487
  * Adds some menu to the aggregation {@link #getMenu menu}.
463
488
  */
@@ -527,27 +552,6 @@ declare namespace sap {
527
552
  */
528
553
  oListener?: object
529
554
  ): this;
530
- /**
531
- * Creates a new subclass of class sap.landvisz.internal.ActionBar with name `sClassName` and enriches it
532
- * with the information contained in `oClassInfo`.
533
- *
534
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
535
- */
536
- static extend<T extends Record<string, unknown>>(
537
- /**
538
- * Name of the class being created
539
- */
540
- sClassName: string,
541
- /**
542
- * Object literal with information about the class
543
- */
544
- oClassInfo?: sap.ClassInfo<T, sap.landvisz.internal.ActionBar>,
545
- /**
546
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
547
- * used by this class
548
- */
549
- FNMetaImpl?: Function
550
- ): Function;
551
555
  /**
552
556
  * Fires event {@link #event:select select} to attached listeners.
553
557
  */
@@ -611,10 +615,6 @@ declare namespace sap {
611
615
  * data of menu items and sub items
612
616
  */
613
617
  getMenuData(): object;
614
- /**
615
- * Returns a metadata object for class sap.landvisz.internal.ActionBar.
616
- */
617
- static getMetadata(): sap.ui.core.ElementMetadata;
618
618
  /**
619
619
  * Gets current value of property {@link #getRenderingSize renderingSize}.
620
620
  *
@@ -811,6 +811,31 @@ declare namespace sap {
811
811
  mSettings?: sap.landvisz.internal.$DataContainerSettings
812
812
  );
813
813
 
814
+ /**
815
+ * Creates a new subclass of class sap.landvisz.internal.DataContainer with name `sClassName` and enriches
816
+ * it with the information contained in `oClassInfo`.
817
+ *
818
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
819
+ */
820
+ static extend<T extends Record<string, unknown>>(
821
+ /**
822
+ * Name of the class being created
823
+ */
824
+ sClassName: string,
825
+ /**
826
+ * Object literal with information about the class
827
+ */
828
+ oClassInfo?: sap.ClassInfo<T, sap.landvisz.internal.DataContainer>,
829
+ /**
830
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
831
+ * used by this class
832
+ */
833
+ FNMetaImpl?: Function
834
+ ): Function;
835
+ /**
836
+ * Returns a metadata object for class sap.landvisz.internal.DataContainer.
837
+ */
838
+ static getMetadata(): sap.ui.core.ElementMetadata;
814
839
  /**
815
840
  * Adds some property to the aggregation {@link #getProperties properties}.
816
841
  */
@@ -882,27 +907,6 @@ declare namespace sap {
882
907
  */
883
908
  oListener?: object
884
909
  ): this;
885
- /**
886
- * Creates a new subclass of class sap.landvisz.internal.DataContainer with name `sClassName` and enriches
887
- * it with the information contained in `oClassInfo`.
888
- *
889
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
890
- */
891
- static extend<T extends Record<string, unknown>>(
892
- /**
893
- * Name of the class being created
894
- */
895
- sClassName: string,
896
- /**
897
- * Object literal with information about the class
898
- */
899
- oClassInfo?: sap.ClassInfo<T, sap.landvisz.internal.DataContainer>,
900
- /**
901
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
902
- * used by this class
903
- */
904
- FNMetaImpl?: Function
905
- ): Function;
906
910
  /**
907
911
  * Fires event {@link #event:select select} to attached listeners.
908
912
  */
@@ -918,10 +922,6 @@ declare namespace sap {
918
922
  * Text of Navigation Header
919
923
  */
920
924
  getHeader(): string;
921
- /**
922
- * Returns a metadata object for class sap.landvisz.internal.DataContainer.
923
- */
924
- static getMetadata(): sap.ui.core.ElementMetadata;
925
925
  /**
926
926
  * Gets content of aggregation {@link #getProperties properties}.
927
927
  *
@@ -1162,6 +1162,31 @@ declare namespace sap {
1162
1162
  mSettings?: sap.landvisz.internal.$EntityActionSettings
1163
1163
  );
1164
1164
 
1165
+ /**
1166
+ * Creates a new subclass of class sap.landvisz.internal.EntityAction with name `sClassName` and enriches
1167
+ * it with the information contained in `oClassInfo`.
1168
+ *
1169
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1170
+ */
1171
+ static extend<T extends Record<string, unknown>>(
1172
+ /**
1173
+ * Name of the class being created
1174
+ */
1175
+ sClassName: string,
1176
+ /**
1177
+ * Object literal with information about the class
1178
+ */
1179
+ oClassInfo?: sap.ClassInfo<T, sap.landvisz.internal.EntityAction>,
1180
+ /**
1181
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1182
+ * used by this class
1183
+ */
1184
+ FNMetaImpl?: Function
1185
+ ): Function;
1186
+ /**
1187
+ * Returns a metadata object for class sap.landvisz.internal.EntityAction.
1188
+ */
1189
+ static getMetadata(): sap.ui.core.ElementMetadata;
1165
1190
  /**
1166
1191
  * Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.landvisz.internal.EntityAction`.
1167
1192
  *
@@ -1220,27 +1245,6 @@ declare namespace sap {
1220
1245
  */
1221
1246
  oListener?: object
1222
1247
  ): this;
1223
- /**
1224
- * Creates a new subclass of class sap.landvisz.internal.EntityAction with name `sClassName` and enriches
1225
- * it with the information contained in `oClassInfo`.
1226
- *
1227
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1228
- */
1229
- static extend<T extends Record<string, unknown>>(
1230
- /**
1231
- * Name of the class being created
1232
- */
1233
- sClassName: string,
1234
- /**
1235
- * Object literal with information about the class
1236
- */
1237
- oClassInfo?: sap.ClassInfo<T, sap.landvisz.internal.EntityAction>,
1238
- /**
1239
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1240
- * used by this class
1241
- */
1242
- FNMetaImpl?: Function
1243
- ): Function;
1244
1248
  /**
1245
1249
  * Fires event {@link #event:press press} to attached listeners.
1246
1250
  */
@@ -1262,10 +1266,6 @@ declare namespace sap {
1262
1266
  * Source of the icon
1263
1267
  */
1264
1268
  getIconSrc(): sap.ui.core.URI;
1265
- /**
1266
- * Returns a metadata object for class sap.landvisz.internal.EntityAction.
1267
- */
1268
- static getMetadata(): sap.ui.core.ElementMetadata;
1269
1269
  /**
1270
1270
  * Gets current value of property {@link #getRenderingSize renderingSize}.
1271
1271
  *
@@ -1347,6 +1347,34 @@ declare namespace sap {
1347
1347
  mSettings?: sap.landvisz.internal.$EntityCustomActionSettings
1348
1348
  );
1349
1349
 
1350
+ /**
1351
+ * Creates a new subclass of class sap.landvisz.internal.EntityCustomAction with name `sClassName` and enriches
1352
+ * it with the information contained in `oClassInfo`.
1353
+ *
1354
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1355
+ */
1356
+ static extend<T extends Record<string, unknown>>(
1357
+ /**
1358
+ * Name of the class being created
1359
+ */
1360
+ sClassName: string,
1361
+ /**
1362
+ * Object literal with information about the class
1363
+ */
1364
+ oClassInfo?: sap.ClassInfo<
1365
+ T,
1366
+ sap.landvisz.internal.EntityCustomAction
1367
+ >,
1368
+ /**
1369
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1370
+ * used by this class
1371
+ */
1372
+ FNMetaImpl?: Function
1373
+ ): Function;
1374
+ /**
1375
+ * Returns a metadata object for class sap.landvisz.internal.EntityCustomAction.
1376
+ */
1377
+ static getMetadata(): sap.ui.core.ElementMetadata;
1350
1378
  /**
1351
1379
  * Attaches event handler `fnFunction` to the {@link #event:select select} event of this `sap.landvisz.internal.EntityCustomAction`.
1352
1380
  *
@@ -1405,30 +1433,6 @@ declare namespace sap {
1405
1433
  */
1406
1434
  oListener?: object
1407
1435
  ): this;
1408
- /**
1409
- * Creates a new subclass of class sap.landvisz.internal.EntityCustomAction with name `sClassName` and enriches
1410
- * it with the information contained in `oClassInfo`.
1411
- *
1412
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1413
- */
1414
- static extend<T extends Record<string, unknown>>(
1415
- /**
1416
- * Name of the class being created
1417
- */
1418
- sClassName: string,
1419
- /**
1420
- * Object literal with information about the class
1421
- */
1422
- oClassInfo?: sap.ClassInfo<
1423
- T,
1424
- sap.landvisz.internal.EntityCustomAction
1425
- >,
1426
- /**
1427
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1428
- * used by this class
1429
- */
1430
- FNMetaImpl?: Function
1431
- ): Function;
1432
1436
  /**
1433
1437
  * Fires event {@link #event:select select} to attached listeners.
1434
1438
  */
@@ -1444,10 +1448,6 @@ declare namespace sap {
1444
1448
  * name of the custom action
1445
1449
  */
1446
1450
  getCustomAction(): string;
1447
- /**
1448
- * Returns a metadata object for class sap.landvisz.internal.EntityCustomAction.
1449
- */
1450
- static getMetadata(): sap.ui.core.ElementMetadata;
1451
1451
  /**
1452
1452
  * Gets current value of property {@link #getRenderingSize renderingSize}.
1453
1453
  *
@@ -1520,6 +1520,31 @@ declare namespace sap {
1520
1520
  mSettings?: sap.landvisz.internal.$HeaderListSettings
1521
1521
  );
1522
1522
 
1523
+ /**
1524
+ * Creates a new subclass of class sap.landvisz.internal.HeaderList with name `sClassName` and enriches
1525
+ * it with the information contained in `oClassInfo`.
1526
+ *
1527
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1528
+ */
1529
+ static extend<T extends Record<string, unknown>>(
1530
+ /**
1531
+ * Name of the class being created
1532
+ */
1533
+ sClassName: string,
1534
+ /**
1535
+ * Object literal with information about the class
1536
+ */
1537
+ oClassInfo?: sap.ClassInfo<T, sap.landvisz.internal.HeaderList>,
1538
+ /**
1539
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1540
+ * used by this class
1541
+ */
1542
+ FNMetaImpl?: Function
1543
+ ): Function;
1544
+ /**
1545
+ * Returns a metadata object for class sap.landvisz.internal.HeaderList.
1546
+ */
1547
+ static getMetadata(): sap.ui.core.ElementMetadata;
1523
1548
  /**
1524
1549
  * Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.landvisz.internal.HeaderList`.
1525
1550
  *
@@ -1576,27 +1601,6 @@ declare namespace sap {
1576
1601
  */
1577
1602
  oListener?: object
1578
1603
  ): this;
1579
- /**
1580
- * Creates a new subclass of class sap.landvisz.internal.HeaderList with name `sClassName` and enriches
1581
- * it with the information contained in `oClassInfo`.
1582
- *
1583
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1584
- */
1585
- static extend<T extends Record<string, unknown>>(
1586
- /**
1587
- * Name of the class being created
1588
- */
1589
- sClassName: string,
1590
- /**
1591
- * Object literal with information about the class
1592
- */
1593
- oClassInfo?: sap.ClassInfo<T, sap.landvisz.internal.HeaderList>,
1594
- /**
1595
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1596
- * used by this class
1597
- */
1598
- FNMetaImpl?: Function
1599
- ): Function;
1600
1604
  /**
1601
1605
  * Fires event {@link #event:press press} to attached listeners.
1602
1606
  */
@@ -1618,10 +1622,6 @@ declare namespace sap {
1618
1622
  * ToolTip for headers
1619
1623
  */
1620
1624
  getHeaderTooltip(): string;
1621
- /**
1622
- * Returns a metadata object for class sap.landvisz.internal.HeaderList.
1623
- */
1624
- static getMetadata(): sap.ui.core.ElementMetadata;
1625
1625
  /**
1626
1626
  * Gets current value of property {@link #getSelected selected}.
1627
1627
  *
@@ -1726,6 +1726,34 @@ declare namespace sap {
1726
1726
  mSettings?: sap.landvisz.internal.$IdentificationBarSettings
1727
1727
  );
1728
1728
 
1729
+ /**
1730
+ * Creates a new subclass of class sap.landvisz.internal.IdentificationBar with name `sClassName` and enriches
1731
+ * it with the information contained in `oClassInfo`.
1732
+ *
1733
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1734
+ */
1735
+ static extend<T extends Record<string, unknown>>(
1736
+ /**
1737
+ * Name of the class being created
1738
+ */
1739
+ sClassName: string,
1740
+ /**
1741
+ * Object literal with information about the class
1742
+ */
1743
+ oClassInfo?: sap.ClassInfo<
1744
+ T,
1745
+ sap.landvisz.internal.IdentificationBar
1746
+ >,
1747
+ /**
1748
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1749
+ * used by this class
1750
+ */
1751
+ FNMetaImpl?: Function
1752
+ ): Function;
1753
+ /**
1754
+ * Returns a metadata object for class sap.landvisz.internal.IdentificationBar.
1755
+ */
1756
+ static getMetadata(): sap.ui.core.ElementMetadata;
1729
1757
  /**
1730
1758
  * Attaches event handler `fnFunction` to the {@link #event:select select} event of this `sap.landvisz.internal.IdentificationBar`.
1731
1759
  *
@@ -1784,30 +1812,6 @@ declare namespace sap {
1784
1812
  */
1785
1813
  oListener?: object
1786
1814
  ): this;
1787
- /**
1788
- * Creates a new subclass of class sap.landvisz.internal.IdentificationBar with name `sClassName` and enriches
1789
- * it with the information contained in `oClassInfo`.
1790
- *
1791
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1792
- */
1793
- static extend<T extends Record<string, unknown>>(
1794
- /**
1795
- * Name of the class being created
1796
- */
1797
- sClassName: string,
1798
- /**
1799
- * Object literal with information about the class
1800
- */
1801
- oClassInfo?: sap.ClassInfo<
1802
- T,
1803
- sap.landvisz.internal.IdentificationBar
1804
- >,
1805
- /**
1806
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1807
- * used by this class
1808
- */
1809
- FNMetaImpl?: Function
1810
- ): Function;
1811
1815
  /**
1812
1816
  * Fires event {@link #event:select select} to attached listeners.
1813
1817
  */
@@ -1839,10 +1843,6 @@ declare namespace sap {
1839
1843
  * returns identification properties
1840
1844
  */
1841
1845
  getIdentificationProperties(): void;
1842
- /**
1843
- * Returns a metadata object for class sap.landvisz.internal.IdentificationBar.
1844
- */
1845
- static getMetadata(): sap.ui.core.ElementMetadata;
1846
1846
  /**
1847
1847
  * Gets current value of property {@link #getQualifierText qualifierText}.
1848
1848
  *
@@ -2057,6 +2057,10 @@ declare namespace sap {
2057
2057
  */
2058
2058
  FNMetaImpl?: Function
2059
2059
  ): Function;
2060
+ /**
2061
+ * Returns a metadata object for class sap.landvisz.internal.LinearRowField.
2062
+ */
2063
+ static getMetadata(): sap.ui.core.ElementMetadata;
2060
2064
  /**
2061
2065
  * Gets current value of property {@link #getIconTitle iconTitle}.
2062
2066
  *
@@ -2087,10 +2091,6 @@ declare namespace sap {
2087
2091
  * source from which two or more systems are dependent
2088
2092
  */
2089
2093
  getLinkSource(): string;
2090
- /**
2091
- * Returns a metadata object for class sap.landvisz.internal.LinearRowField.
2092
- */
2093
- static getMetadata(): sap.ui.core.ElementMetadata;
2094
2094
  /**
2095
2095
  * Gets current value of property {@link #getRenderingSize renderingSize}.
2096
2096
  *
@@ -2409,19 +2409,6 @@ declare namespace sap {
2409
2409
  mSettings?: sap.landvisz.internal.$NestedRowFieldSettings
2410
2410
  );
2411
2411
 
2412
- /**
2413
- * Adds some linearRow to the aggregation {@link #getLinearRows linearRows}.
2414
- */
2415
- addLinearRow(
2416
- /**
2417
- * The linearRow to add; if empty, nothing is inserted
2418
- */
2419
- oLinearRow: sap.landvisz.internal.LinearRowField
2420
- ): this;
2421
- /**
2422
- * Destroys all the linearRows in the aggregation {@link #getLinearRows linearRows}.
2423
- */
2424
- destroyLinearRows(): this;
2425
2412
  /**
2426
2413
  * Creates a new subclass of class sap.landvisz.internal.NestedRowField with name `sClassName` and enriches
2427
2414
  * it with the information contained in `oClassInfo`.
@@ -2443,6 +2430,23 @@ declare namespace sap {
2443
2430
  */
2444
2431
  FNMetaImpl?: Function
2445
2432
  ): Function;
2433
+ /**
2434
+ * Returns a metadata object for class sap.landvisz.internal.NestedRowField.
2435
+ */
2436
+ static getMetadata(): sap.ui.core.ElementMetadata;
2437
+ /**
2438
+ * Adds some linearRow to the aggregation {@link #getLinearRows linearRows}.
2439
+ */
2440
+ addLinearRow(
2441
+ /**
2442
+ * The linearRow to add; if empty, nothing is inserted
2443
+ */
2444
+ oLinearRow: sap.landvisz.internal.LinearRowField
2445
+ ): this;
2446
+ /**
2447
+ * Destroys all the linearRows in the aggregation {@link #getLinearRows linearRows}.
2448
+ */
2449
+ destroyLinearRows(): this;
2446
2450
  /**
2447
2451
  * Gets current value of property {@link #getIconTitle iconTitle}.
2448
2452
  *
@@ -2467,10 +2471,6 @@ declare namespace sap {
2467
2471
  * source from which two or more systems are dependent
2468
2472
  */
2469
2473
  getLinkSource(): string;
2470
- /**
2471
- * Returns a metadata object for class sap.landvisz.internal.NestedRowField.
2472
- */
2473
- static getMetadata(): sap.ui.core.ElementMetadata;
2474
2474
  /**
2475
2475
  * Gets current value of property {@link #getRenderingSize renderingSize}.
2476
2476
  *
@@ -2685,6 +2685,34 @@ declare namespace sap {
2685
2685
  mSettings?: sap.landvisz.internal.$SingleDataContainerSettings
2686
2686
  );
2687
2687
 
2688
+ /**
2689
+ * Creates a new subclass of class sap.landvisz.internal.SingleDataContainer with name `sClassName` and
2690
+ * enriches it with the information contained in `oClassInfo`.
2691
+ *
2692
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2693
+ */
2694
+ static extend<T extends Record<string, unknown>>(
2695
+ /**
2696
+ * Name of the class being created
2697
+ */
2698
+ sClassName: string,
2699
+ /**
2700
+ * Object literal with information about the class
2701
+ */
2702
+ oClassInfo?: sap.ClassInfo<
2703
+ T,
2704
+ sap.landvisz.internal.SingleDataContainer
2705
+ >,
2706
+ /**
2707
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2708
+ * used by this class
2709
+ */
2710
+ FNMetaImpl?: Function
2711
+ ): Function;
2712
+ /**
2713
+ * Returns a metadata object for class sap.landvisz.internal.SingleDataContainer.
2714
+ */
2715
+ static getMetadata(): sap.ui.core.ElementMetadata;
2688
2716
  /**
2689
2717
  * Adds some property to the aggregation {@link #getProperties properties}.
2690
2718
  */
@@ -2756,30 +2784,6 @@ declare namespace sap {
2756
2784
  */
2757
2785
  oListener?: object
2758
2786
  ): this;
2759
- /**
2760
- * Creates a new subclass of class sap.landvisz.internal.SingleDataContainer with name `sClassName` and
2761
- * enriches it with the information contained in `oClassInfo`.
2762
- *
2763
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2764
- */
2765
- static extend<T extends Record<string, unknown>>(
2766
- /**
2767
- * Name of the class being created
2768
- */
2769
- sClassName: string,
2770
- /**
2771
- * Object literal with information about the class
2772
- */
2773
- oClassInfo?: sap.ClassInfo<
2774
- T,
2775
- sap.landvisz.internal.SingleDataContainer
2776
- >,
2777
- /**
2778
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2779
- * used by this class
2780
- */
2781
- FNMetaImpl?: Function
2782
- ): Function;
2783
2787
  /**
2784
2788
  * Fires event {@link #event:closed closed} to attached listeners.
2785
2789
  */
@@ -2795,10 +2799,6 @@ declare namespace sap {
2795
2799
  * header of the tab
2796
2800
  */
2797
2801
  getHeader(): string;
2798
- /**
2799
- * Returns a metadata object for class sap.landvisz.internal.SingleDataContainer.
2800
- */
2801
- static getMetadata(): sap.ui.core.ElementMetadata;
2802
2802
  /**
2803
2803
  * Gets content of aggregation {@link #getProperties properties}.
2804
2804
  *
@@ -2917,19 +2917,6 @@ declare namespace sap {
2917
2917
  mSettings?: sap.landvisz.internal.$TreeFieldSettings
2918
2918
  );
2919
2919
 
2920
- /**
2921
- * Adds some treeNode to the aggregation {@link #getTreeNode treeNode}.
2922
- */
2923
- addTreeNode(
2924
- /**
2925
- * The treeNode to add; if empty, nothing is inserted
2926
- */
2927
- oTreeNode: sap.ui.commons.TreeNode
2928
- ): this;
2929
- /**
2930
- * Destroys all the treeNode in the aggregation {@link #getTreeNode treeNode}.
2931
- */
2932
- destroyTreeNode(): this;
2933
2920
  /**
2934
2921
  * Creates a new subclass of class sap.landvisz.internal.TreeField with name `sClassName` and enriches it
2935
2922
  * with the information contained in `oClassInfo`.
@@ -2951,16 +2938,29 @@ declare namespace sap {
2951
2938
  */
2952
2939
  FNMetaImpl?: Function
2953
2940
  ): Function;
2941
+ /**
2942
+ * Returns a metadata object for class sap.landvisz.internal.TreeField.
2943
+ */
2944
+ static getMetadata(): sap.ui.core.ElementMetadata;
2945
+ /**
2946
+ * Adds some treeNode to the aggregation {@link #getTreeNode treeNode}.
2947
+ */
2948
+ addTreeNode(
2949
+ /**
2950
+ * The treeNode to add; if empty, nothing is inserted
2951
+ */
2952
+ oTreeNode: sap.ui.commons.TreeNode
2953
+ ): this;
2954
+ /**
2955
+ * Destroys all the treeNode in the aggregation {@link #getTreeNode treeNode}.
2956
+ */
2957
+ destroyTreeNode(): this;
2954
2958
  /**
2955
2959
  * Gets current value of property {@link #getBindingName bindingName}.
2956
2960
  *
2957
2961
  * binding name
2958
2962
  */
2959
2963
  getBindingName(): string;
2960
- /**
2961
- * Returns a metadata object for class sap.landvisz.internal.TreeField.
2962
- */
2963
- static getMetadata(): sap.ui.core.ElementMetadata;
2964
2964
  /**
2965
2965
  * Gets current value of property {@link #getRenderingSize renderingSize}.
2966
2966
  *
@@ -3291,17 +3291,17 @@ declare namespace sap {
3291
3291
  /**
3292
3292
  * fires an event on hovering over identification system icon
3293
3293
  */
3294
- mouseOverIdenIcon?: Function;
3294
+ mouseOverIdenIcon?: (oEvent: sap.ui.base.Event) => void;
3295
3295
 
3296
3296
  /**
3297
3297
  * fires an event on clicking the modelling status
3298
3298
  */
3299
- statusSelect?: Function;
3299
+ statusSelect?: (oEvent: sap.ui.base.Event) => void;
3300
3300
 
3301
3301
  /**
3302
3302
  * Fired when info Icon of track entity clicked
3303
3303
  */
3304
- trackInfoPress?: Function;
3304
+ trackInfoPress?: (oEvent: sap.ui.base.Event) => void;
3305
3305
  }
3306
3306
 
3307
3307
  interface $LandscapeViewerSettings extends sap.landvisz.$OptionSettings {
@@ -3513,12 +3513,12 @@ declare namespace sap {
3513
3513
  /**
3514
3514
  * closes the view
3515
3515
  */
3516
- close?: Function;
3516
+ close?: (oEvent: sap.ui.base.Event) => void;
3517
3517
 
3518
3518
  /**
3519
3519
  * load the solution view either deployment or component
3520
3520
  */
3521
- loadSolutionView?: Function;
3521
+ loadSolutionView?: (oEvent: sap.ui.base.Event) => void;
3522
3522
  }
3523
3523
 
3524
3524
  interface $LongTextFieldSettings extends sap.ui.core.$ControlSettings {
@@ -3589,7 +3589,7 @@ declare namespace sap {
3589
3589
  /**
3590
3590
  * Select event for option entity
3591
3591
  */
3592
- selectOption?: Function;
3592
+ selectOption?: (oEvent: sap.ui.base.Event) => void;
3593
3593
  }
3594
3594
 
3595
3595
  interface $OptionSourceSettings extends sap.ui.core.$ControlSettings {
@@ -3634,19 +3634,6 @@ declare namespace sap {
3634
3634
  mSettings?: sap.landvisz.$ConnectionEntitySettings
3635
3635
  );
3636
3636
 
3637
- /**
3638
- * Adds some connectionData to the aggregation {@link #getConnectionData connectionData}.
3639
- */
3640
- addConnectionData(
3641
- /**
3642
- * The connectionData to add; if empty, nothing is inserted
3643
- */
3644
- oConnectionData: sap.landvisz.internal.LinearRowField
3645
- ): this;
3646
- /**
3647
- * Destroys all the connectionData in the aggregation {@link #getConnectionData connectionData}.
3648
- */
3649
- destroyConnectionData(): this;
3650
3637
  /**
3651
3638
  * Creates a new subclass of class sap.landvisz.ConnectionEntity with name `sClassName` and enriches it
3652
3639
  * with the information contained in `oClassInfo`.
@@ -3668,6 +3655,23 @@ declare namespace sap {
3668
3655
  */
3669
3656
  FNMetaImpl?: Function
3670
3657
  ): Function;
3658
+ /**
3659
+ * Returns a metadata object for class sap.landvisz.ConnectionEntity.
3660
+ */
3661
+ static getMetadata(): sap.ui.core.ElementMetadata;
3662
+ /**
3663
+ * Adds some connectionData to the aggregation {@link #getConnectionData connectionData}.
3664
+ */
3665
+ addConnectionData(
3666
+ /**
3667
+ * The connectionData to add; if empty, nothing is inserted
3668
+ */
3669
+ oConnectionData: sap.landvisz.internal.LinearRowField
3670
+ ): this;
3671
+ /**
3672
+ * Destroys all the connectionData in the aggregation {@link #getConnectionData connectionData}.
3673
+ */
3674
+ destroyConnectionData(): this;
3671
3675
  /**
3672
3676
  * Gets content of aggregation {@link #getConnectionData connectionData}.
3673
3677
  *
@@ -3698,10 +3702,6 @@ declare namespace sap {
3698
3702
  * ID which links the entities
3699
3703
  */
3700
3704
  getLinkId(): string;
3701
- /**
3702
- * Returns a metadata object for class sap.landvisz.ConnectionEntity.
3703
- */
3704
- static getMetadata(): sap.ui.core.ElementMetadata;
3705
3705
  /**
3706
3706
  * Gets current value of property {@link #getShowOverlay showOverlay}.
3707
3707
  *
@@ -3990,6 +3990,31 @@ declare namespace sap {
3990
3990
  mSettings?: sap.landvisz.$LandscapeEntitySettings
3991
3991
  );
3992
3992
 
3993
+ /**
3994
+ * Creates a new subclass of class sap.landvisz.LandscapeEntity with name `sClassName` and enriches it with
3995
+ * the information contained in `oClassInfo`.
3996
+ *
3997
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3998
+ */
3999
+ static extend<T extends Record<string, unknown>>(
4000
+ /**
4001
+ * Name of the class being created
4002
+ */
4003
+ sClassName: string,
4004
+ /**
4005
+ * Object literal with information about the class
4006
+ */
4007
+ oClassInfo?: sap.ClassInfo<T, sap.landvisz.LandscapeEntity>,
4008
+ /**
4009
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4010
+ * used by this class
4011
+ */
4012
+ FNMetaImpl?: Function
4013
+ ): Function;
4014
+ /**
4015
+ * Returns a metadata object for class sap.landvisz.LandscapeEntity.
4016
+ */
4017
+ static getMetadata(): sap.ui.core.ElementMetadata;
3993
4018
  /**
3994
4019
  * Adds some actionBar to the aggregation {@link #getActionBar actionBar}.
3995
4020
  */
@@ -4194,27 +4219,6 @@ declare namespace sap {
4194
4219
  */
4195
4220
  oListener?: object
4196
4221
  ): this;
4197
- /**
4198
- * Creates a new subclass of class sap.landvisz.LandscapeEntity with name `sClassName` and enriches it with
4199
- * the information contained in `oClassInfo`.
4200
- *
4201
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4202
- */
4203
- static extend<T extends Record<string, unknown>>(
4204
- /**
4205
- * Name of the class being created
4206
- */
4207
- sClassName: string,
4208
- /**
4209
- * Object literal with information about the class
4210
- */
4211
- oClassInfo?: sap.ClassInfo<T, sap.landvisz.LandscapeEntity>,
4212
- /**
4213
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4214
- * used by this class
4215
- */
4216
- FNMetaImpl?: Function
4217
- ): Function;
4218
4222
  /**
4219
4223
  * Fires event {@link #event:mouseOverIdenIcon mouseOverIdenIcon} to attached listeners.
4220
4224
  */
@@ -4302,10 +4306,6 @@ declare namespace sap {
4302
4306
  * Width of the show all view
4303
4307
  */
4304
4308
  getExplodeViewWidth(): sap.ui.core.CSSSize;
4305
- /**
4306
- * Returns a metadata object for class sap.landvisz.LandscapeEntity.
4307
- */
4308
- static getMetadata(): sap.ui.core.ElementMetadata;
4309
4309
  /**
4310
4310
  * Gets current value of property {@link #getQualifierText qualifierText}.
4311
4311
  *
@@ -4804,6 +4804,31 @@ declare namespace sap {
4804
4804
  mSettings?: sap.landvisz.$LandscapeViewerSettings
4805
4805
  );
4806
4806
 
4807
+ /**
4808
+ * Creates a new subclass of class sap.landvisz.LandscapeViewer with name `sClassName` and enriches it with
4809
+ * the information contained in `oClassInfo`.
4810
+ *
4811
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.landvisz.Option.extend}.
4812
+ */
4813
+ static extend<T extends Record<string, unknown>>(
4814
+ /**
4815
+ * Name of the class being created
4816
+ */
4817
+ sClassName: string,
4818
+ /**
4819
+ * Object literal with information about the class
4820
+ */
4821
+ oClassInfo?: sap.ClassInfo<T, sap.landvisz.LandscapeViewer>,
4822
+ /**
4823
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4824
+ * used by this class
4825
+ */
4826
+ FNMetaImpl?: Function
4827
+ ): Function;
4828
+ /**
4829
+ * Returns a metadata object for class sap.landvisz.LandscapeViewer.
4830
+ */
4831
+ static getMetadata(): sap.ui.core.ElementMetadata;
4807
4832
  /**
4808
4833
  * Adds some connectionEntity to the aggregation {@link #getConnectionEntities connectionEntities}.
4809
4834
  */
@@ -4984,27 +5009,6 @@ declare namespace sap {
4984
5009
  */
4985
5010
  oListener?: object
4986
5011
  ): this;
4987
- /**
4988
- * Creates a new subclass of class sap.landvisz.LandscapeViewer with name `sClassName` and enriches it with
4989
- * the information contained in `oClassInfo`.
4990
- *
4991
- * `oClassInfo` might contain the same kind of information as described in {@link sap.landvisz.Option.extend}.
4992
- */
4993
- static extend<T extends Record<string, unknown>>(
4994
- /**
4995
- * Name of the class being created
4996
- */
4997
- sClassName: string,
4998
- /**
4999
- * Object literal with information about the class
5000
- */
5001
- oClassInfo?: sap.ClassInfo<T, sap.landvisz.LandscapeViewer>,
5002
- /**
5003
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5004
- * used by this class
5005
- */
5006
- FNMetaImpl?: Function
5007
- ): Function;
5008
5012
  /**
5009
5013
  * Fires event {@link #event:close close} to attached listeners.
5010
5014
  */
@@ -5131,10 +5135,6 @@ declare namespace sap {
5131
5135
  * Height of Viewer container
5132
5136
  */
5133
5137
  getHeight(): int;
5134
- /**
5135
- * Returns a metadata object for class sap.landvisz.LandscapeViewer.
5136
- */
5137
- static getMetadata(): sap.ui.core.ElementMetadata;
5138
5138
  /**
5139
5139
  * Gets current value of property {@link #getNavigationPath navigationPath}.
5140
5140
  *
@@ -5919,19 +5919,6 @@ declare namespace sap {
5919
5919
  mSettings?: sap.landvisz.$OptionSettings
5920
5920
  );
5921
5921
 
5922
- /**
5923
- * Adds some optionEntity to the aggregation {@link #getOptionEntities optionEntities}.
5924
- */
5925
- addOptionEntity(
5926
- /**
5927
- * The optionEntity to add; if empty, nothing is inserted
5928
- */
5929
- oOptionEntity: sap.landvisz.OptionEntity
5930
- ): this;
5931
- /**
5932
- * Destroys all the optionEntities in the aggregation {@link #getOptionEntities optionEntities}.
5933
- */
5934
- destroyOptionEntities(): this;
5935
5922
  /**
5936
5923
  * Creates a new subclass of class sap.landvisz.Option with name `sClassName` and enriches it with the information
5937
5924
  * contained in `oClassInfo`.
@@ -5953,16 +5940,29 @@ declare namespace sap {
5953
5940
  */
5954
5941
  FNMetaImpl?: Function
5955
5942
  ): Function;
5943
+ /**
5944
+ * Returns a metadata object for class sap.landvisz.Option.
5945
+ */
5946
+ static getMetadata(): sap.ui.core.ElementMetadata;
5947
+ /**
5948
+ * Adds some optionEntity to the aggregation {@link #getOptionEntities optionEntities}.
5949
+ */
5950
+ addOptionEntity(
5951
+ /**
5952
+ * The optionEntity to add; if empty, nothing is inserted
5953
+ */
5954
+ oOptionEntity: sap.landvisz.OptionEntity
5955
+ ): this;
5956
+ /**
5957
+ * Destroys all the optionEntities in the aggregation {@link #getOptionEntities optionEntities}.
5958
+ */
5959
+ destroyOptionEntities(): this;
5956
5960
  /**
5957
5961
  * Gets current value of property {@link #getCurrentEntity currentEntity}.
5958
5962
  *
5959
5963
  * Entity on which options are applicable
5960
5964
  */
5961
5965
  getCurrentEntity(): string;
5962
- /**
5963
- * Returns a metadata object for class sap.landvisz.Option.
5964
- */
5965
- static getMetadata(): sap.ui.core.ElementMetadata;
5966
5966
  /**
5967
5967
  * Gets content of aggregation {@link #getOptionEntities optionEntities}.
5968
5968
  *
@@ -6077,6 +6077,31 @@ declare namespace sap {
6077
6077
  mSettings?: sap.landvisz.$OptionEntitySettings
6078
6078
  );
6079
6079
 
6080
+ /**
6081
+ * Creates a new subclass of class sap.landvisz.OptionEntity with name `sClassName` and enriches it with
6082
+ * the information contained in `oClassInfo`.
6083
+ *
6084
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.landvisz.OptionSource.extend}.
6085
+ */
6086
+ static extend<T extends Record<string, unknown>>(
6087
+ /**
6088
+ * Name of the class being created
6089
+ */
6090
+ sClassName: string,
6091
+ /**
6092
+ * Object literal with information about the class
6093
+ */
6094
+ oClassInfo?: sap.ClassInfo<T, sap.landvisz.OptionEntity>,
6095
+ /**
6096
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6097
+ * used by this class
6098
+ */
6099
+ FNMetaImpl?: Function
6100
+ ): Function;
6101
+ /**
6102
+ * Returns a metadata object for class sap.landvisz.OptionEntity.
6103
+ */
6104
+ static getMetadata(): sap.ui.core.ElementMetadata;
6080
6105
  /**
6081
6106
  * Adds some optionSource to the aggregation {@link #getOptionSources optionSources}.
6082
6107
  */
@@ -6146,27 +6171,6 @@ declare namespace sap {
6146
6171
  */
6147
6172
  oListener?: object
6148
6173
  ): this;
6149
- /**
6150
- * Creates a new subclass of class sap.landvisz.OptionEntity with name `sClassName` and enriches it with
6151
- * the information contained in `oClassInfo`.
6152
- *
6153
- * `oClassInfo` might contain the same kind of information as described in {@link sap.landvisz.OptionSource.extend}.
6154
- */
6155
- static extend<T extends Record<string, unknown>>(
6156
- /**
6157
- * Name of the class being created
6158
- */
6159
- sClassName: string,
6160
- /**
6161
- * Object literal with information about the class
6162
- */
6163
- oClassInfo?: sap.ClassInfo<T, sap.landvisz.OptionEntity>,
6164
- /**
6165
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6166
- * used by this class
6167
- */
6168
- FNMetaImpl?: Function
6169
- ): Function;
6170
6174
  /**
6171
6175
  * Fires event {@link #event:selectOption selectOption} to attached listeners.
6172
6176
  */
@@ -6190,10 +6194,6 @@ declare namespace sap {
6190
6194
  * label for option entity
6191
6195
  */
6192
6196
  getLabel(): string;
6193
- /**
6194
- * Returns a metadata object for class sap.landvisz.OptionEntity.
6195
- */
6196
- static getMetadata(): sap.ui.core.ElementMetadata;
6197
6197
  /**
6198
6198
  * Gets content of aggregation {@link #getOptionSources optionSources}.
6199
6199
  *