@openui5/types 1.115.0 → 1.115.1

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,8 +1,8 @@
1
- // For Library Version: 1.115.0
1
+ // For Library Version: 1.115.1
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
5
- * @SINCE 1.68
5
+ * @since 1.68
6
6
  *
7
7
  * Interface for controls suitable for the `header` aggregation of {@link sap.tnt.ToolPage}.
8
8
  */
@@ -42,7 +42,7 @@ declare module "sap/tnt/InfoLabel" {
42
42
  import { RenderMode } from "sap/tnt/library";
43
43
 
44
44
  /**
45
- * @SINCE 1.54
45
+ * @since 1.54
46
46
  *
47
47
  * The `InfoLabel` is a small non-interactive control which contains text information and non-semantic color
48
48
  * chosen from a list of predefined color schemes. It serves the purpose to attract the user attention to
@@ -66,7 +66,7 @@ declare module "sap/tnt/InfoLabel" {
66
66
  *
67
67
  * - The control shows plain text only, formatting is not visualized.
68
68
  */
69
- class InfoLabel extends Control implements IFormContent {
69
+ export default class InfoLabel extends Control implements IFormContent {
70
70
  __implements__sap_ui_core_IFormContent: boolean;
71
71
  /**
72
72
  * Constructor for a new `InfoLabel`.
@@ -167,7 +167,7 @@ declare module "sap/tnt/InfoLabel" {
167
167
  */
168
168
  getDisplayOnly(): boolean;
169
169
  /**
170
- * @SINCE 1.74
170
+ * @since 1.74
171
171
  *
172
172
  * Gets current value of property {@link #getIcon icon}.
173
173
  *
@@ -259,7 +259,7 @@ declare module "sap/tnt/InfoLabel" {
259
259
  bDisplayOnly?: boolean
260
260
  ): this;
261
261
  /**
262
- * @SINCE 1.74
262
+ * @since 1.74
263
263
  *
264
264
  * Sets a new value for property {@link #getIcon icon}.
265
265
  *
@@ -354,7 +354,6 @@ declare module "sap/tnt/InfoLabel" {
354
354
  */
355
355
  unbindText(): this;
356
356
  }
357
- export default InfoLabel;
358
357
 
359
358
  export interface $InfoLabelSettings extends $ControlSettings {
360
359
  /**
@@ -401,7 +400,7 @@ declare module "sap/tnt/InfoLabel" {
401
400
  | `{${string}}`;
402
401
 
403
402
  /**
404
- * @SINCE 1.74
403
+ * @since 1.74
405
404
  *
406
405
  * Defines the icon to be displayed as graphical element within the `InfoLabel`. It can be an icon from
407
406
  * the icon font.
@@ -417,8 +416,6 @@ declare module "sap/tnt/NavigationList" {
417
416
 
418
417
  import NavigationListItem from "sap/tnt/NavigationListItem";
419
418
 
420
- import Event from "sap/ui/base/Event";
421
-
422
419
  import ElementMetadata from "sap/ui/core/ElementMetadata";
423
420
 
424
421
  import {
@@ -426,15 +423,17 @@ declare module "sap/tnt/NavigationList" {
426
423
  AggregationBindingInfo,
427
424
  } from "sap/ui/base/ManagedObject";
428
425
 
426
+ import Event from "sap/ui/base/Event";
427
+
429
428
  import Item from "sap/ui/core/Item";
430
429
 
431
430
  /**
432
- * @SINCE 1.34
431
+ * @since 1.34
433
432
  *
434
433
  * The NavigationList control is an interactive control, which provides a choice of different items, ordered
435
434
  * as a list.
436
435
  */
437
- class NavigationList extends Control {
436
+ export default class NavigationList extends Control {
438
437
  /**
439
438
  * Constructor for a new NavigationList.
440
439
  *
@@ -547,7 +546,7 @@ declare module "sap/tnt/NavigationList" {
547
546
  /**
548
547
  * The function to be called when the event occurs
549
548
  */
550
- fnFunction: (p1: Event<$NavigationListItemSelectEventParameters>) => void,
549
+ fnFunction: (p1: NavigationList$ItemSelectEvent) => void,
551
550
  /**
552
551
  * Context object to call the event handler with. Defaults to this `sap.tnt.NavigationList` itself
553
552
  */
@@ -567,7 +566,7 @@ declare module "sap/tnt/NavigationList" {
567
566
  /**
568
567
  * The function to be called when the event occurs
569
568
  */
570
- fnFunction: (p1: Event<$NavigationListItemSelectEventParameters>) => void,
569
+ fnFunction: (p1: NavigationList$ItemSelectEvent) => void,
571
570
  /**
572
571
  * Context object to call the event handler with. Defaults to this `sap.tnt.NavigationList` itself
573
572
  */
@@ -590,14 +589,14 @@ declare module "sap/tnt/NavigationList" {
590
589
  /**
591
590
  * The function to be called, when the event occurs
592
591
  */
593
- fnFunction: (p1: Event<$NavigationListItemSelectEventParameters>) => void,
592
+ fnFunction: (p1: NavigationList$ItemSelectEvent) => void,
594
593
  /**
595
594
  * Context object on which the given function had to be called
596
595
  */
597
596
  oListener?: object
598
597
  ): this;
599
598
  /**
600
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
599
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
601
600
  *
602
601
  * Fires event {@link #event:itemSelect itemSelect} to attached listeners.
603
602
  *
@@ -607,7 +606,7 @@ declare module "sap/tnt/NavigationList" {
607
606
  /**
608
607
  * Parameters to pass along with the event
609
608
  */
610
- mParameters?: $NavigationListItemSelectEventParameters
609
+ mParameters?: NavigationList$ItemSelectEventParameters
611
610
  ): this;
612
611
  /**
613
612
  * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
@@ -640,7 +639,7 @@ declare module "sap/tnt/NavigationList" {
640
639
  */
641
640
  getSelectedItem(): NavigationListItem | null;
642
641
  /**
643
- * @SINCE 1.62.0
642
+ * @since 1.62.0
644
643
  *
645
644
  * Gets current value of property {@link #getSelectedKey selectedKey}.
646
645
  *
@@ -794,7 +793,6 @@ declare module "sap/tnt/NavigationList" {
794
793
  sWidth: CSSSize
795
794
  ): this;
796
795
  }
797
- export default NavigationList;
798
796
 
799
797
  export interface $NavigationListSettings extends $ControlSettings {
800
798
  /**
@@ -808,7 +806,7 @@ declare module "sap/tnt/NavigationList" {
808
806
  expanded?: boolean | PropertyBindingInfo | `{${string}}`;
809
807
 
810
808
  /**
811
- * @SINCE 1.62.0
809
+ * @since 1.62.0
812
810
  *
813
811
  * Specifies the currently selected key.
814
812
  */
@@ -834,7 +832,7 @@ declare module "sap/tnt/NavigationList" {
834
832
  ariaLabelledBy?: Array<Control | string>;
835
833
 
836
834
  /**
837
- * @SINCE 1.52.0
835
+ * @since 1.52.0
838
836
  *
839
837
  * The currently selected `NavigationListItem`.
840
838
  */
@@ -844,23 +842,23 @@ declare module "sap/tnt/NavigationList" {
844
842
  * Fired when an item is selected.
845
843
  */
846
844
  itemSelect?: (
847
- oEvent: Event<$NavigationListItemSelectEventParameters>
845
+ oEvent: Event<NavigationList$ItemSelectEventParameters>
848
846
  ) => void;
849
847
  }
850
848
 
851
- export interface $NavigationListItemSelectEventParameters {
849
+ export interface NavigationList$ItemSelectEventParameters {
852
850
  /**
853
851
  * The selected item.
854
852
  */
855
853
  item?: Item;
856
854
  }
855
+
856
+ export type NavigationList$ItemSelectEvent = Event<NavigationList$ItemSelectEventParameters>;
857
857
  }
858
858
 
859
859
  declare module "sap/tnt/NavigationListItem" {
860
860
  import { default as Item, $ItemSettings } from "sap/ui/core/Item";
861
861
 
862
- import Event from "sap/ui/base/Event";
863
-
864
862
  import { URI } from "sap/ui/core/library";
865
863
 
866
864
  import ElementMetadata from "sap/ui/core/ElementMetadata";
@@ -870,13 +868,15 @@ declare module "sap/tnt/NavigationListItem" {
870
868
  AggregationBindingInfo,
871
869
  } from "sap/ui/base/ManagedObject";
872
870
 
871
+ import Event from "sap/ui/base/Event";
872
+
873
873
  /**
874
- * @SINCE 1.34
874
+ * @since 1.34
875
875
  *
876
876
  * The NavigationListItem control represents an action, which can be selected by the user. It can provide
877
877
  * sub items.
878
878
  */
879
- class NavigationListItem extends Item {
879
+ export default class NavigationListItem extends Item {
880
880
  /**
881
881
  * Constructor for a new NavigationListItem.
882
882
  *
@@ -967,7 +967,7 @@ declare module "sap/tnt/NavigationListItem" {
967
967
  /**
968
968
  * The function to be called when the event occurs
969
969
  */
970
- fnFunction: (p1: Event<$NavigationListItemSelectEventParameters>) => void,
970
+ fnFunction: (p1: NavigationListItem$SelectEvent) => void,
971
971
  /**
972
972
  * Context object to call the event handler with. Defaults to this `sap.tnt.NavigationListItem` itself
973
973
  */
@@ -987,7 +987,7 @@ declare module "sap/tnt/NavigationListItem" {
987
987
  /**
988
988
  * The function to be called when the event occurs
989
989
  */
990
- fnFunction: (p1: Event<$NavigationListItemSelectEventParameters>) => void,
990
+ fnFunction: (p1: NavigationListItem$SelectEvent) => void,
991
991
  /**
992
992
  * Context object to call the event handler with. Defaults to this `sap.tnt.NavigationListItem` itself
993
993
  */
@@ -1010,14 +1010,14 @@ declare module "sap/tnt/NavigationListItem" {
1010
1010
  /**
1011
1011
  * The function to be called, when the event occurs
1012
1012
  */
1013
- fnFunction: (p1: Event<$NavigationListItemSelectEventParameters>) => void,
1013
+ fnFunction: (p1: NavigationListItem$SelectEvent) => void,
1014
1014
  /**
1015
1015
  * Context object on which the given function had to be called
1016
1016
  */
1017
1017
  oListener?: object
1018
1018
  ): this;
1019
1019
  /**
1020
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1020
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1021
1021
  *
1022
1022
  * Fires event {@link #event:select select} to attached listeners.
1023
1023
  *
@@ -1027,7 +1027,7 @@ declare module "sap/tnt/NavigationListItem" {
1027
1027
  /**
1028
1028
  * Parameters to pass along with the event
1029
1029
  */
1030
- mParameters?: $NavigationListItemSelectEventParameters
1030
+ mParameters?: NavigationListItem$SelectEventParameters
1031
1031
  ): this;
1032
1032
  /**
1033
1033
  * Gets current value of property {@link #getExpanded expanded}.
@@ -1040,7 +1040,7 @@ declare module "sap/tnt/NavigationListItem" {
1040
1040
  */
1041
1041
  getExpanded(): boolean;
1042
1042
  /**
1043
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1043
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1044
1044
  *
1045
1045
  * Returns the DOM Element that should get the focus.
1046
1046
  *
@@ -1095,7 +1095,7 @@ declare module "sap/tnt/NavigationListItem" {
1095
1095
  */
1096
1096
  getTarget(): string;
1097
1097
  /**
1098
- * @SINCE 1.52
1098
+ * @since 1.52
1099
1099
  *
1100
1100
  * Gets current value of property {@link #getVisible visible}.
1101
1101
  *
@@ -1241,7 +1241,7 @@ declare module "sap/tnt/NavigationListItem" {
1241
1241
  sTarget?: string
1242
1242
  ): this;
1243
1243
  /**
1244
- * @SINCE 1.52
1244
+ * @since 1.52
1245
1245
  *
1246
1246
  * Sets a new value for property {@link #getVisible visible}.
1247
1247
  *
@@ -1260,7 +1260,6 @@ declare module "sap/tnt/NavigationListItem" {
1260
1260
  bVisible?: boolean
1261
1261
  ): this;
1262
1262
  }
1263
- export default NavigationListItem;
1264
1263
 
1265
1264
  export interface $NavigationListItemSettings extends $ItemSettings {
1266
1265
  /**
@@ -1279,7 +1278,7 @@ declare module "sap/tnt/NavigationListItem" {
1279
1278
  hasExpander?: boolean | PropertyBindingInfo | `{${string}}`;
1280
1279
 
1281
1280
  /**
1282
- * @SINCE 1.52
1281
+ * @since 1.52
1283
1282
  *
1284
1283
  * Specifies if the item should be shown.
1285
1284
  */
@@ -1312,22 +1311,22 @@ declare module "sap/tnt/NavigationListItem" {
1312
1311
  /**
1313
1312
  * Fired when this item is selected.
1314
1313
  */
1315
- select?: (oEvent: Event<$NavigationListItemSelectEventParameters>) => void;
1314
+ select?: (oEvent: Event<NavigationListItem$SelectEventParameters>) => void;
1316
1315
  }
1317
1316
 
1318
- export interface $NavigationListItemSelectEventParameters {
1317
+ export interface NavigationListItem$SelectEventParameters {
1319
1318
  /**
1320
1319
  * The selected item.
1321
1320
  */
1322
1321
  item?: Item;
1323
1322
  }
1323
+
1324
+ export type NavigationListItem$SelectEvent = Event<NavigationListItem$SelectEventParameters>;
1324
1325
  }
1325
1326
 
1326
1327
  declare module "sap/tnt/SideNavigation" {
1327
1328
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
1328
1329
 
1329
- import Event from "sap/ui/base/Event";
1330
-
1331
1330
  import {
1332
1331
  AggregationBindingInfo,
1333
1332
  PropertyBindingInfo,
@@ -1341,10 +1340,12 @@ declare module "sap/tnt/SideNavigation" {
1341
1340
 
1342
1341
  import NavigationListItem from "sap/tnt/NavigationListItem";
1343
1342
 
1343
+ import Event from "sap/ui/base/Event";
1344
+
1344
1345
  import Item from "sap/ui/core/Item";
1345
1346
 
1346
1347
  /**
1347
- * @SINCE 1.34
1348
+ * @since 1.34
1348
1349
  *
1349
1350
  * The SideNavigation control is a container, which consists of flexible and fixed parts on top of each
1350
1351
  * other. Responsive Behavior:
@@ -1352,7 +1353,7 @@ declare module "sap/tnt/SideNavigation" {
1352
1353
  * - The flexible part has a scrollbar when the content is larger than the available space. **Note:**
1353
1354
  * In order for the SideNavigation to stretch properly, its parent layout control should only be the sap.tnt.ToolPage.
1354
1355
  */
1355
- class SideNavigation extends Control {
1356
+ export default class SideNavigation extends Control {
1356
1357
  /**
1357
1358
  * Constructor for a new SideNavigation.
1358
1359
  *
@@ -1436,7 +1437,7 @@ declare module "sap/tnt/SideNavigation" {
1436
1437
  /**
1437
1438
  * The function to be called when the event occurs
1438
1439
  */
1439
- fnFunction: (p1: Event<$SideNavigationItemSelectEventParameters>) => void,
1440
+ fnFunction: (p1: SideNavigation$ItemSelectEvent) => void,
1440
1441
  /**
1441
1442
  * Context object to call the event handler with. Defaults to this `sap.tnt.SideNavigation` itself
1442
1443
  */
@@ -1456,7 +1457,7 @@ declare module "sap/tnt/SideNavigation" {
1456
1457
  /**
1457
1458
  * The function to be called when the event occurs
1458
1459
  */
1459
- fnFunction: (p1: Event<$SideNavigationItemSelectEventParameters>) => void,
1460
+ fnFunction: (p1: SideNavigation$ItemSelectEvent) => void,
1460
1461
  /**
1461
1462
  * Context object to call the event handler with. Defaults to this `sap.tnt.SideNavigation` itself
1462
1463
  */
@@ -1505,14 +1506,14 @@ declare module "sap/tnt/SideNavigation" {
1505
1506
  /**
1506
1507
  * The function to be called, when the event occurs
1507
1508
  */
1508
- fnFunction: (p1: Event<$SideNavigationItemSelectEventParameters>) => void,
1509
+ fnFunction: (p1: SideNavigation$ItemSelectEvent) => void,
1509
1510
  /**
1510
1511
  * Context object on which the given function had to be called
1511
1512
  */
1512
1513
  oListener?: object
1513
1514
  ): this;
1514
1515
  /**
1515
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1516
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1516
1517
  *
1517
1518
  * Fires event {@link #event:itemSelect itemSelect} to attached listeners.
1518
1519
  *
@@ -1522,10 +1523,10 @@ declare module "sap/tnt/SideNavigation" {
1522
1523
  /**
1523
1524
  * Parameters to pass along with the event
1524
1525
  */
1525
- mParameters?: $SideNavigationItemSelectEventParameters
1526
+ mParameters?: SideNavigation$ItemSelectEventParameters
1526
1527
  ): this;
1527
1528
  /**
1528
- * @SINCE 1.98
1529
+ * @since 1.98
1529
1530
  *
1530
1531
  * Gets current value of property {@link #getAriaLabel ariaLabel}.
1531
1532
  *
@@ -1563,14 +1564,14 @@ declare module "sap/tnt/SideNavigation" {
1563
1564
  */
1564
1565
  getItem(): NavigationList;
1565
1566
  /**
1566
- * @SINCE 1.52.0
1567
+ * @since 1.52.0
1567
1568
  *
1568
1569
  * ID of the element which is the current target of the association {@link #getSelectedItem selectedItem},
1569
1570
  * or `null`.
1570
1571
  */
1571
1572
  getSelectedItem(): ID;
1572
1573
  /**
1573
- * @SINCE 1.62.0
1574
+ * @since 1.62.0
1574
1575
  *
1575
1576
  * Gets current value of property {@link #getSelectedKey selectedKey}.
1576
1577
  *
@@ -1580,7 +1581,7 @@ declare module "sap/tnt/SideNavigation" {
1580
1581
  */
1581
1582
  getSelectedKey(): string;
1582
1583
  /**
1583
- * @SINCE 1.98
1584
+ * @since 1.98
1584
1585
  *
1585
1586
  * Sets a new value for property {@link #getAriaLabel ariaLabel}.
1586
1587
  *
@@ -1669,7 +1670,6 @@ declare module "sap/tnt/SideNavigation" {
1669
1670
  */
1670
1671
  unbindItem(): this;
1671
1672
  }
1672
- export default SideNavigation;
1673
1673
 
1674
1674
  export interface $SideNavigationSettings extends $ControlSettings {
1675
1675
  /**
@@ -1678,14 +1678,14 @@ declare module "sap/tnt/SideNavigation" {
1678
1678
  expanded?: boolean | PropertyBindingInfo | `{${string}}`;
1679
1679
 
1680
1680
  /**
1681
- * @SINCE 1.62.0
1681
+ * @since 1.62.0
1682
1682
  *
1683
1683
  * Specifies the currently selected key.
1684
1684
  */
1685
1685
  selectedKey?: string | PropertyBindingInfo;
1686
1686
 
1687
1687
  /**
1688
- * @SINCE 1.98
1688
+ * @since 1.98
1689
1689
  *
1690
1690
  * Specifies an optional aria-label that can be used by the screen readers.
1691
1691
  */
@@ -1707,7 +1707,7 @@ declare module "sap/tnt/SideNavigation" {
1707
1707
  footer?: NavigationList;
1708
1708
 
1709
1709
  /**
1710
- * @SINCE 1.52.0
1710
+ * @since 1.52.0
1711
1711
  *
1712
1712
  * The selected `NavigationListItem`.
1713
1713
  */
@@ -1717,16 +1717,24 @@ declare module "sap/tnt/SideNavigation" {
1717
1717
  * Fired when an item is selected.
1718
1718
  */
1719
1719
  itemSelect?: (
1720
- oEvent: Event<$SideNavigationItemSelectEventParameters>
1720
+ oEvent: Event<SideNavigation$ItemSelectEventParameters>
1721
1721
  ) => void;
1722
1722
  }
1723
1723
 
1724
- export interface $SideNavigationItemSelectEventParameters {
1724
+ export interface SideNavigation$ItemSelectEventParameters {
1725
1725
  /**
1726
1726
  * The selected item.
1727
1727
  */
1728
1728
  item?: Item;
1729
1729
  }
1730
+
1731
+ /**
1732
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'SideNavigation$ItemSelectEventParameters'
1733
+ * in 1.115.1 and any later releases.
1734
+ */
1735
+ export type $SideNavigationItemSelectEventParameters = SideNavigation$ItemSelectEventParameters;
1736
+
1737
+ export type SideNavigation$ItemSelectEvent = Event<SideNavigation$ItemSelectEventParameters>;
1730
1738
  }
1731
1739
 
1732
1740
  declare module "sap/tnt/ToolHeader" {
@@ -1740,7 +1748,7 @@ declare module "sap/tnt/ToolHeader" {
1740
1748
  import ElementMetadata from "sap/ui/core/ElementMetadata";
1741
1749
 
1742
1750
  /**
1743
- * @SINCE 1.34
1751
+ * @since 1.34
1744
1752
  *
1745
1753
  * The ToolHeader control is a horizontal container that is most commonly used to display buttons, texts,
1746
1754
  * and other various input controls. Overview: The ToolHeader control is based on {@link sap.m.OverflowToolbar}.
@@ -1777,7 +1785,9 @@ declare module "sap/tnt/ToolHeader" {
1777
1785
  * Support for default (Accent 6) color. Image avatar. - sap.m.Image
1778
1786
  * Primarily used for displaying the company logo. Interaction states
1779
1787
  */
1780
- class ToolHeader extends OverflowToolbar implements IToolHeader {
1788
+ export default class ToolHeader
1789
+ extends OverflowToolbar
1790
+ implements IToolHeader {
1781
1791
  __implements__sap_tnt_IToolHeader: boolean;
1782
1792
  /**
1783
1793
  * Constructor for a new ToolHeader.
@@ -1850,7 +1860,6 @@ declare module "sap/tnt/ToolHeader" {
1850
1860
  */
1851
1861
  static getMetadata(): ElementMetadata;
1852
1862
  }
1853
- export default ToolHeader;
1854
1863
 
1855
1864
  export interface $ToolHeaderSettings extends $OverflowToolbarSettings {}
1856
1865
  }
@@ -1861,12 +1870,12 @@ declare module "sap/tnt/ToolHeaderUtilitySeparator" {
1861
1870
  import ElementMetadata from "sap/ui/core/ElementMetadata";
1862
1871
 
1863
1872
  /**
1864
- * @SINCE 1.16
1873
+ * @since 1.16
1865
1874
  *
1866
1875
  * The ToolHeaderUtilitySeparator control is used in the sap.tnt.ToolHeader control to specify where the
1867
1876
  * overflow button is placed.
1868
1877
  */
1869
- class ToolHeaderUtilitySeparator extends Control {
1878
+ export default class ToolHeaderUtilitySeparator extends Control {
1870
1879
  /**
1871
1880
  * Constructor for a new ToolHeaderUtilitySeparator.
1872
1881
  *
@@ -1934,7 +1943,6 @@ declare module "sap/tnt/ToolHeaderUtilitySeparator" {
1934
1943
  */
1935
1944
  static getMetadata(): ElementMetadata;
1936
1945
  }
1937
- export default ToolHeaderUtilitySeparator;
1938
1946
 
1939
1947
  export interface $ToolHeaderUtilitySeparatorSettings
1940
1948
  extends $ControlSettings {}
@@ -1957,7 +1965,7 @@ declare module "sap/tnt/ToolPage" {
1957
1965
  } from "sap/ui/base/ManagedObject";
1958
1966
 
1959
1967
  /**
1960
- * @SINCE 1.34
1968
+ * @since 1.34
1961
1969
  *
1962
1970
  * The ToolPage is a layout control, used to create a basic tools app that has a header, side navigation
1963
1971
  * and contents area. Overview: The control has three main areas - a header on top, navigation to the side
@@ -1965,7 +1973,7 @@ declare module "sap/tnt/ToolPage" {
1965
1973
  * and {@link sap.tnt.SideNavigation}. Usage: The main usage of the sap.tnt controls is for scenarios in
1966
1974
  * the tooling or administration space.
1967
1975
  */
1968
- class ToolPage extends Control {
1976
+ export default class ToolPage extends Control {
1969
1977
  /**
1970
1978
  * Constructor for a new ToolPage.
1971
1979
  *
@@ -2056,7 +2064,7 @@ declare module "sap/tnt/ToolPage" {
2056
2064
  */
2057
2065
  destroySideContent(): this;
2058
2066
  /**
2059
- * @SINCE 1.93
2067
+ * @since 1.93
2060
2068
  *
2061
2069
  * Destroys the subHeader in the aggregation {@link #getSubHeader subHeader}.
2062
2070
  *
@@ -2064,7 +2072,7 @@ declare module "sap/tnt/ToolPage" {
2064
2072
  */
2065
2073
  destroySubHeader(): this;
2066
2074
  /**
2067
- * @SINCE 1.115
2075
+ * @since 1.115
2068
2076
  *
2069
2077
  * Gets current value of property {@link #getContentBackgroundDesign contentBackgroundDesign}.
2070
2078
  *
@@ -2106,7 +2114,7 @@ declare module "sap/tnt/ToolPage" {
2106
2114
  */
2107
2115
  getSideExpanded(): boolean;
2108
2116
  /**
2109
- * @SINCE 1.93
2117
+ * @since 1.93
2110
2118
  *
2111
2119
  * Gets content of aggregation {@link #getSubHeader subHeader}.
2112
2120
  *
@@ -2162,7 +2170,7 @@ declare module "sap/tnt/ToolPage" {
2162
2170
  vMainContent: int | string | Control
2163
2171
  ): Control | null;
2164
2172
  /**
2165
- * @SINCE 1.115
2173
+ * @since 1.115
2166
2174
  *
2167
2175
  * Sets a new value for property {@link #getContentBackgroundDesign contentBackgroundDesign}.
2168
2176
  *
@@ -2216,7 +2224,7 @@ declare module "sap/tnt/ToolPage" {
2216
2224
  bSideExpanded: boolean
2217
2225
  ): this;
2218
2226
  /**
2219
- * @SINCE 1.93
2227
+ * @since 1.93
2220
2228
  *
2221
2229
  * Sets the aggregated {@link #getSubHeader subHeader}.
2222
2230
  *
@@ -2235,7 +2243,6 @@ declare module "sap/tnt/ToolPage" {
2235
2243
  */
2236
2244
  toggleSideContentMode(): this;
2237
2245
  }
2238
- export default ToolPage;
2239
2246
 
2240
2247
  export interface $ToolPageSettings extends $ControlSettings {
2241
2248
  /**
@@ -2244,7 +2251,7 @@ declare module "sap/tnt/ToolPage" {
2244
2251
  sideExpanded?: boolean | PropertyBindingInfo | `{${string}}`;
2245
2252
 
2246
2253
  /**
2247
- * @SINCE 1.115
2254
+ * @since 1.115
2248
2255
  *
2249
2256
  * Specifies the content background design.
2250
2257
  */
@@ -2259,7 +2266,7 @@ declare module "sap/tnt/ToolPage" {
2259
2266
  header?: IToolHeader;
2260
2267
 
2261
2268
  /**
2262
- * @SINCE 1.93
2269
+ * @since 1.93
2263
2270
  *
2264
2271
  * The control to appear in the subheader area.
2265
2272
  */