@openui5/ts-types 1.114.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,14 +1,14 @@
1
- // For Library Version: 1.114.0
1
+ // For Library Version: 1.115.1
2
2
 
3
3
  declare namespace sap {
4
4
  /**
5
- * @SINCE 1.36
5
+ * @since 1.36
6
6
  *
7
7
  * SAPUI5 library with controls specialized for administrative applications.
8
8
  */
9
9
  namespace tnt {
10
10
  /**
11
- * @SINCE 1.68
11
+ * @since 1.68
12
12
  *
13
13
  * Interface for controls suitable for the `header` aggregation of {@link sap.tnt.ToolPage}.
14
14
  */
@@ -70,7 +70,7 @@ declare namespace sap {
70
70
  | `{${string}}`;
71
71
 
72
72
  /**
73
- * @SINCE 1.74
73
+ * @since 1.74
74
74
  *
75
75
  * Defines the icon to be displayed as graphical element within the `InfoLabel`. It can be an icon from
76
76
  * the icon font.
@@ -99,7 +99,7 @@ declare namespace sap {
99
99
  | `{${string}}`;
100
100
 
101
101
  /**
102
- * @SINCE 1.62.0
102
+ * @since 1.62.0
103
103
  *
104
104
  * Specifies the currently selected key.
105
105
  */
@@ -125,7 +125,7 @@ declare namespace sap {
125
125
  ariaLabelledBy?: Array<sap.ui.core.Control | string>;
126
126
 
127
127
  /**
128
- * @SINCE 1.52.0
128
+ * @since 1.52.0
129
129
  *
130
130
  * The currently selected `NavigationListItem`.
131
131
  */
@@ -134,7 +134,9 @@ declare namespace sap {
134
134
  /**
135
135
  * Fired when an item is selected.
136
136
  */
137
- itemSelect?: (oEvent: sap.ui.base.Event) => void;
137
+ itemSelect?: (
138
+ oEvent: sap.ui.base.Event<sap.tnt.NavigationList$ItemSelectEventParameters>
139
+ ) => void;
138
140
  }
139
141
 
140
142
  interface $NavigationListItemSettings extends sap.ui.core.$ItemSettings {
@@ -163,7 +165,7 @@ declare namespace sap {
163
165
  | `{${string}}`;
164
166
 
165
167
  /**
166
- * @SINCE 1.52
168
+ * @since 1.52
167
169
  *
168
170
  * Specifies if the item should be shown.
169
171
  */
@@ -202,7 +204,9 @@ declare namespace sap {
202
204
  /**
203
205
  * Fired when this item is selected.
204
206
  */
205
- select?: (oEvent: sap.ui.base.Event) => void;
207
+ select?: (
208
+ oEvent: sap.ui.base.Event<sap.tnt.NavigationListItem$SelectEventParameters>
209
+ ) => void;
206
210
  }
207
211
 
208
212
  interface $SideNavigationSettings extends sap.ui.core.$ControlSettings {
@@ -215,14 +219,14 @@ declare namespace sap {
215
219
  | `{${string}}`;
216
220
 
217
221
  /**
218
- * @SINCE 1.62.0
222
+ * @since 1.62.0
219
223
  *
220
224
  * Specifies the currently selected key.
221
225
  */
222
226
  selectedKey?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
223
227
 
224
228
  /**
225
- * @SINCE 1.98
229
+ * @since 1.98
226
230
  *
227
231
  * Specifies an optional aria-label that can be used by the screen readers.
228
232
  */
@@ -244,7 +248,7 @@ declare namespace sap {
244
248
  footer?: sap.tnt.NavigationList;
245
249
 
246
250
  /**
247
- * @SINCE 1.52.0
251
+ * @since 1.52.0
248
252
  *
249
253
  * The selected `NavigationListItem`.
250
254
  */
@@ -253,7 +257,9 @@ declare namespace sap {
253
257
  /**
254
258
  * Fired when an item is selected.
255
259
  */
256
- itemSelect?: (oEvent: sap.ui.base.Event) => void;
260
+ itemSelect?: (
261
+ oEvent: sap.ui.base.Event<sap.tnt.SideNavigation$ItemSelectEventParameters>
262
+ ) => void;
257
263
  }
258
264
 
259
265
  interface $ToolHeaderSettings extends sap.m.$OverflowToolbarSettings {}
@@ -270,13 +276,23 @@ declare namespace sap {
270
276
  | sap.ui.base.ManagedObject.PropertyBindingInfo
271
277
  | `{${string}}`;
272
278
 
279
+ /**
280
+ * @since 1.115
281
+ *
282
+ * Specifies the content background design.
283
+ */
284
+ contentBackgroundDesign?:
285
+ | sap.m.PageBackgroundDesign
286
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
287
+ | `{${string}}`;
288
+
273
289
  /**
274
290
  * The control to appear in the header area.
275
291
  */
276
292
  header?: sap.tnt.IToolHeader;
277
293
 
278
294
  /**
279
- * @SINCE 1.93
295
+ * @since 1.93
280
296
  *
281
297
  * The control to appear in the subheader area.
282
298
  */
@@ -297,8 +313,29 @@ declare namespace sap {
297
313
  | `{${string}}`;
298
314
  }
299
315
 
316
+ interface NavigationList$ItemSelectEventParameters {
317
+ /**
318
+ * The selected item.
319
+ */
320
+ item?: sap.ui.core.Item;
321
+ }
322
+
323
+ interface NavigationListItem$SelectEventParameters {
324
+ /**
325
+ * The selected item.
326
+ */
327
+ item?: sap.ui.core.Item;
328
+ }
329
+
330
+ interface SideNavigation$ItemSelectEventParameters {
331
+ /**
332
+ * The selected item.
333
+ */
334
+ item?: sap.ui.core.Item;
335
+ }
336
+
300
337
  /**
301
- * @SINCE 1.54
338
+ * @since 1.54
302
339
  *
303
340
  * The `InfoLabel` is a small non-interactive control which contains text information and non-semantic color
304
341
  * chosen from a list of predefined color schemes. It serves the purpose to attract the user attention to
@@ -315,9 +352,9 @@ declare namespace sap {
315
352
  *
316
353
  * Usage Guidelines:
317
354
  * - If the text is longer than the width of the control, it doesn’t wrap. Instead, it’s represented as
318
- * ellipsis.
355
+ * ellipsis.
319
356
  * - When truncated, the full text in the control is not visible. Therefore, it’s recommended to make
320
- * more space for longer items to be fully displayed.
357
+ * more space for longer items to be fully displayed.
321
358
  * - Colors are not semantic and have no visual representation in sap_belize_hcb and sap_belize_hcw themes.
322
359
  *
323
360
  * - The control shows plain text only, formatting is not visualized.
@@ -425,7 +462,7 @@ declare namespace sap {
425
462
  */
426
463
  getDisplayOnly(): boolean;
427
464
  /**
428
- * @SINCE 1.74
465
+ * @since 1.74
429
466
  *
430
467
  * Gets current value of property {@link #getIcon icon}.
431
468
  *
@@ -517,7 +554,7 @@ declare namespace sap {
517
554
  bDisplayOnly?: boolean
518
555
  ): this;
519
556
  /**
520
- * @SINCE 1.74
557
+ * @since 1.74
521
558
  *
522
559
  * Sets a new value for property {@link #getIcon icon}.
523
560
  *
@@ -613,7 +650,7 @@ declare namespace sap {
613
650
  unbindText(): this;
614
651
  }
615
652
  /**
616
- * @SINCE 1.34
653
+ * @since 1.34
617
654
  *
618
655
  * The NavigationList control is an interactive control, which provides a choice of different items, ordered
619
656
  * as a list.
@@ -731,7 +768,7 @@ declare namespace sap {
731
768
  /**
732
769
  * The function to be called when the event occurs
733
770
  */
734
- fnFunction: (p1: sap.ui.base.Event) => void,
771
+ fnFunction: (p1: NavigationList$ItemSelectEvent) => void,
735
772
  /**
736
773
  * Context object to call the event handler with. Defaults to this `sap.tnt.NavigationList` itself
737
774
  */
@@ -751,7 +788,7 @@ declare namespace sap {
751
788
  /**
752
789
  * The function to be called when the event occurs
753
790
  */
754
- fnFunction: (p1: sap.ui.base.Event) => void,
791
+ fnFunction: (p1: NavigationList$ItemSelectEvent) => void,
755
792
  /**
756
793
  * Context object to call the event handler with. Defaults to this `sap.tnt.NavigationList` itself
757
794
  */
@@ -774,14 +811,14 @@ declare namespace sap {
774
811
  /**
775
812
  * The function to be called, when the event occurs
776
813
  */
777
- fnFunction: (p1: sap.ui.base.Event) => void,
814
+ fnFunction: (p1: NavigationList$ItemSelectEvent) => void,
778
815
  /**
779
816
  * Context object on which the given function had to be called
780
817
  */
781
818
  oListener?: object
782
819
  ): this;
783
820
  /**
784
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
821
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
785
822
  *
786
823
  * Fires event {@link #event:itemSelect itemSelect} to attached listeners.
787
824
  *
@@ -791,21 +828,14 @@ declare namespace sap {
791
828
  /**
792
829
  * Parameters to pass along with the event
793
830
  */
794
- mParameters?: {
795
- /**
796
- * The selected item.
797
- */
798
- item?: sap.ui.core.Item;
799
- }
831
+ mParameters?: sap.tnt.NavigationList$ItemSelectEventParameters
800
832
  ): this;
801
833
  /**
802
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
803
- * ariaDescribedBy}.
834
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
804
835
  */
805
836
  getAriaDescribedBy(): sap.ui.core.ID[];
806
837
  /**
807
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
808
- * ariaLabelledBy}.
838
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
809
839
  */
810
840
  getAriaLabelledBy(): sap.ui.core.ID[];
811
841
  /**
@@ -831,7 +861,7 @@ declare namespace sap {
831
861
  */
832
862
  getSelectedItem(): sap.tnt.NavigationListItem | null;
833
863
  /**
834
- * @SINCE 1.62.0
864
+ * @since 1.62.0
835
865
  *
836
866
  * Gets current value of property {@link #getSelectedKey selectedKey}.
837
867
  *
@@ -986,7 +1016,7 @@ declare namespace sap {
986
1016
  ): this;
987
1017
  }
988
1018
  /**
989
- * @SINCE 1.34
1019
+ * @since 1.34
990
1020
  *
991
1021
  * The NavigationListItem control represents an action, which can be selected by the user. It can provide
992
1022
  * sub items.
@@ -1082,7 +1112,7 @@ declare namespace sap {
1082
1112
  /**
1083
1113
  * The function to be called when the event occurs
1084
1114
  */
1085
- fnFunction: (p1: sap.ui.base.Event) => void,
1115
+ fnFunction: (p1: NavigationListItem$SelectEvent) => void,
1086
1116
  /**
1087
1117
  * Context object to call the event handler with. Defaults to this `sap.tnt.NavigationListItem` itself
1088
1118
  */
@@ -1102,7 +1132,7 @@ declare namespace sap {
1102
1132
  /**
1103
1133
  * The function to be called when the event occurs
1104
1134
  */
1105
- fnFunction: (p1: sap.ui.base.Event) => void,
1135
+ fnFunction: (p1: NavigationListItem$SelectEvent) => void,
1106
1136
  /**
1107
1137
  * Context object to call the event handler with. Defaults to this `sap.tnt.NavigationListItem` itself
1108
1138
  */
@@ -1125,14 +1155,14 @@ declare namespace sap {
1125
1155
  /**
1126
1156
  * The function to be called, when the event occurs
1127
1157
  */
1128
- fnFunction: (p1: sap.ui.base.Event) => void,
1158
+ fnFunction: (p1: NavigationListItem$SelectEvent) => void,
1129
1159
  /**
1130
1160
  * Context object on which the given function had to be called
1131
1161
  */
1132
1162
  oListener?: object
1133
1163
  ): this;
1134
1164
  /**
1135
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1165
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1136
1166
  *
1137
1167
  * Fires event {@link #event:select select} to attached listeners.
1138
1168
  *
@@ -1142,12 +1172,7 @@ declare namespace sap {
1142
1172
  /**
1143
1173
  * Parameters to pass along with the event
1144
1174
  */
1145
- mParameters?: {
1146
- /**
1147
- * The selected item.
1148
- */
1149
- item?: sap.ui.core.Item;
1150
- }
1175
+ mParameters?: sap.tnt.NavigationListItem$SelectEventParameters
1151
1176
  ): this;
1152
1177
  /**
1153
1178
  * Gets current value of property {@link #getExpanded expanded}.
@@ -1159,6 +1184,14 @@ declare namespace sap {
1159
1184
  * @returns Value of property `expanded`
1160
1185
  */
1161
1186
  getExpanded(): boolean;
1187
+ /**
1188
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1189
+ *
1190
+ * Returns the DOM Element that should get the focus.
1191
+ *
1192
+ * @returns Returns the DOM Element that should get the focus
1193
+ */
1194
+ getFocusDomRef(): Element;
1162
1195
  /**
1163
1196
  * Gets current value of property {@link #getHasExpander hasExpander}.
1164
1197
  *
@@ -1207,7 +1240,7 @@ declare namespace sap {
1207
1240
  */
1208
1241
  getTarget(): string;
1209
1242
  /**
1210
- * @SINCE 1.52
1243
+ * @since 1.52
1211
1244
  *
1212
1245
  * Gets current value of property {@link #getVisible visible}.
1213
1246
  *
@@ -1353,7 +1386,7 @@ declare namespace sap {
1353
1386
  sTarget?: string
1354
1387
  ): this;
1355
1388
  /**
1356
- * @SINCE 1.52
1389
+ * @since 1.52
1357
1390
  *
1358
1391
  * Sets a new value for property {@link #getVisible visible}.
1359
1392
  *
@@ -1373,13 +1406,13 @@ declare namespace sap {
1373
1406
  ): this;
1374
1407
  }
1375
1408
  /**
1376
- * @SINCE 1.34
1409
+ * @since 1.34
1377
1410
  *
1378
1411
  * The SideNavigation control is a container, which consists of flexible and fixed parts on top of each
1379
1412
  * other. Responsive Behavior:
1380
1413
  * - The flexible part adapts its size to the fixed one.
1381
1414
  * - The flexible part has a scrollbar when the content is larger than the available space. **Note:**
1382
- * In order for the SideNavigation to stretch properly, its parent layout control should only be the sap.tnt.ToolPage.
1415
+ * In order for the SideNavigation to stretch properly, its parent layout control should only be the sap.tnt.ToolPage.
1383
1416
  */
1384
1417
  class SideNavigation extends sap.ui.core.Control {
1385
1418
  /**
@@ -1465,7 +1498,7 @@ declare namespace sap {
1465
1498
  /**
1466
1499
  * The function to be called when the event occurs
1467
1500
  */
1468
- fnFunction: (p1: sap.ui.base.Event) => void,
1501
+ fnFunction: (p1: SideNavigation$ItemSelectEvent) => void,
1469
1502
  /**
1470
1503
  * Context object to call the event handler with. Defaults to this `sap.tnt.SideNavigation` itself
1471
1504
  */
@@ -1485,7 +1518,7 @@ declare namespace sap {
1485
1518
  /**
1486
1519
  * The function to be called when the event occurs
1487
1520
  */
1488
- fnFunction: (p1: sap.ui.base.Event) => void,
1521
+ fnFunction: (p1: SideNavigation$ItemSelectEvent) => void,
1489
1522
  /**
1490
1523
  * Context object to call the event handler with. Defaults to this `sap.tnt.SideNavigation` itself
1491
1524
  */
@@ -1534,14 +1567,14 @@ declare namespace sap {
1534
1567
  /**
1535
1568
  * The function to be called, when the event occurs
1536
1569
  */
1537
- fnFunction: (p1: sap.ui.base.Event) => void,
1570
+ fnFunction: (p1: SideNavigation$ItemSelectEvent) => void,
1538
1571
  /**
1539
1572
  * Context object on which the given function had to be called
1540
1573
  */
1541
1574
  oListener?: object
1542
1575
  ): this;
1543
1576
  /**
1544
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1577
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1545
1578
  *
1546
1579
  * Fires event {@link #event:itemSelect itemSelect} to attached listeners.
1547
1580
  *
@@ -1551,15 +1584,10 @@ declare namespace sap {
1551
1584
  /**
1552
1585
  * Parameters to pass along with the event
1553
1586
  */
1554
- mParameters?: {
1555
- /**
1556
- * The selected item.
1557
- */
1558
- item?: sap.ui.core.Item;
1559
- }
1587
+ mParameters?: sap.tnt.SideNavigation$ItemSelectEventParameters
1560
1588
  ): this;
1561
1589
  /**
1562
- * @SINCE 1.98
1590
+ * @since 1.98
1563
1591
  *
1564
1592
  * Gets current value of property {@link #getAriaLabel ariaLabel}.
1565
1593
  *
@@ -1597,14 +1625,14 @@ declare namespace sap {
1597
1625
  */
1598
1626
  getItem(): sap.tnt.NavigationList;
1599
1627
  /**
1600
- * @SINCE 1.52.0
1628
+ * @since 1.52.0
1601
1629
  *
1602
1630
  * ID of the element which is the current target of the association {@link #getSelectedItem selectedItem},
1603
1631
  * or `null`.
1604
1632
  */
1605
1633
  getSelectedItem(): sap.ui.core.ID;
1606
1634
  /**
1607
- * @SINCE 1.62.0
1635
+ * @since 1.62.0
1608
1636
  *
1609
1637
  * Gets current value of property {@link #getSelectedKey selectedKey}.
1610
1638
  *
@@ -1614,7 +1642,7 @@ declare namespace sap {
1614
1642
  */
1615
1643
  getSelectedKey(): string;
1616
1644
  /**
1617
- * @SINCE 1.98
1645
+ * @since 1.98
1618
1646
  *
1619
1647
  * Sets a new value for property {@link #getAriaLabel ariaLabel}.
1620
1648
  *
@@ -1704,18 +1732,21 @@ declare namespace sap {
1704
1732
  unbindItem(): this;
1705
1733
  }
1706
1734
  /**
1707
- * @SINCE 1.34
1735
+ * @since 1.34
1708
1736
  *
1709
- * The ToolHeader control is a horizontal container that is most commonly used to display buttons, labels,
1737
+ * The ToolHeader control is a horizontal container that is most commonly used to display buttons, texts,
1710
1738
  * and other various input controls. Overview: The ToolHeader control is based on {@link sap.m.OverflowToolbar}.
1711
1739
  * It contains clearly structured menus of commands that are available across the various apps within the
1712
1740
  * same tool layout. Usage:
1741
+ * - This control is specialized for administrative applications. For other types of applications use:
1742
+ * {@link sap.m.Shell}
1713
1743
  * - If an app implements side navigation in addition to the tool header menu, the menu icon must be the
1714
- * first item on the left-hand side of the tool header.
1744
+ * first item on the left-hand side of the tool header.
1715
1745
  * - The app menu and the side navigation must not have any dependencies and must work independently.
1716
- * Fiori 3 theme specifics: In Fiori 3 Default theme the ToolHeader is with dark design unlike most
1717
- * of the other controls. This defines the usage of limited controls inside it, which will result in good
1718
- * design combination.
1746
+ * Horizon theme specifics: Only the following controls are supported: sap.m.Button, sap.m.Image,
1747
+ * sap.m.Title, sap.m.Text, sap.m.SearchField, sap.m.Avatar. Fiori 3 theme specifics: In Fiori 3 Default
1748
+ * theme the ToolHeader is with dark design unlike most of the other controls. This defines the usage of
1749
+ * limited controls inside it, which will result in good design combination.
1719
1750
  * The ToolHeader stylizes the contained controls with the Shell color parameters, to match the dark design
1720
1751
  * requirement. However, that's not a dark theme.
1721
1752
  *
@@ -1749,8 +1780,8 @@ declare namespace sap {
1749
1780
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
1750
1781
  * of the syntax of the settings object.
1751
1782
  *
1752
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.OverflowToolbar#constructor
1753
- * sap.m.OverflowToolbar} can be used.
1783
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.OverflowToolbar#constructor sap.m.OverflowToolbar }
1784
+ * can be used.
1754
1785
  * See:
1755
1786
  * {@link fiori:https://experience.sap.com/fiori-design-web/tool-header/ Tool Header}
1756
1787
  */
@@ -1767,8 +1798,8 @@ declare namespace sap {
1767
1798
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
1768
1799
  * of the syntax of the settings object.
1769
1800
  *
1770
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.OverflowToolbar#constructor
1771
- * sap.m.OverflowToolbar} can be used.
1801
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.OverflowToolbar#constructor sap.m.OverflowToolbar }
1802
+ * can be used.
1772
1803
  * See:
1773
1804
  * {@link fiori:https://experience.sap.com/fiori-design-web/tool-header/ Tool Header}
1774
1805
  */
@@ -1814,7 +1845,7 @@ declare namespace sap {
1814
1845
  static getMetadata(): sap.ui.core.ElementMetadata;
1815
1846
  }
1816
1847
  /**
1817
- * @SINCE 1.16
1848
+ * @since 1.16
1818
1849
  *
1819
1850
  * The ToolHeaderUtilitySeparator control is used in the sap.tnt.ToolHeader control to specify where the
1820
1851
  * overflow button is placed.
@@ -1827,8 +1858,8 @@ declare namespace sap {
1827
1858
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
1828
1859
  * of the syntax of the settings object.
1829
1860
  *
1830
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.Control#constructor
1831
- * sap.ui.core.Control} can be used.
1861
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.Control#constructor sap.ui.core.Control }
1862
+ * can be used.
1832
1863
  */
1833
1864
  constructor(
1834
1865
  /**
@@ -1843,8 +1874,8 @@ declare namespace sap {
1843
1874
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
1844
1875
  * of the syntax of the settings object.
1845
1876
  *
1846
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.Control#constructor
1847
- * sap.ui.core.Control} can be used.
1877
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.Control#constructor sap.ui.core.Control }
1878
+ * can be used.
1848
1879
  */
1849
1880
  constructor(
1850
1881
  /**
@@ -1888,13 +1919,13 @@ declare namespace sap {
1888
1919
  static getMetadata(): sap.ui.core.ElementMetadata;
1889
1920
  }
1890
1921
  /**
1891
- * @SINCE 1.34
1922
+ * @since 1.34
1892
1923
  *
1893
1924
  * The ToolPage is a layout control, used to create a basic tools app that has a header, side navigation
1894
1925
  * and contents area. Overview: The control has three main areas - a header on top, navigation to the side
1895
- * and a content area that can hold any control. The header and side navigation use custom controls - {@link
1896
- * sap.tnt.ToolHeader} and {@link sap.tnt.SideNavigation}. Usage: The main usage of the sap.tnt controls
1897
- * is for scenarios in the tooling or administration space.
1926
+ * and a content area that can hold any control. The header and side navigation use custom controls - {@link sap.tnt.ToolHeader }
1927
+ * and {@link sap.tnt.SideNavigation}. Usage: The main usage of the sap.tnt controls is for scenarios in
1928
+ * the tooling or administration space.
1898
1929
  */
1899
1930
  class ToolPage extends sap.ui.core.Control {
1900
1931
  /**
@@ -1987,13 +2018,25 @@ declare namespace sap {
1987
2018
  */
1988
2019
  destroySideContent(): this;
1989
2020
  /**
1990
- * @SINCE 1.93
2021
+ * @since 1.93
1991
2022
  *
1992
2023
  * Destroys the subHeader in the aggregation {@link #getSubHeader subHeader}.
1993
2024
  *
1994
2025
  * @returns Reference to `this` in order to allow method chaining
1995
2026
  */
1996
2027
  destroySubHeader(): this;
2028
+ /**
2029
+ * @since 1.115
2030
+ *
2031
+ * Gets current value of property {@link #getContentBackgroundDesign contentBackgroundDesign}.
2032
+ *
2033
+ * Specifies the content background design.
2034
+ *
2035
+ * Default value is `Standard`.
2036
+ *
2037
+ * @returns Value of property `contentBackgroundDesign`
2038
+ */
2039
+ getContentBackgroundDesign(): sap.m.PageBackgroundDesign;
1997
2040
  /**
1998
2041
  * Gets content of aggregation {@link #getHeader header}.
1999
2042
  *
@@ -2023,7 +2066,7 @@ declare namespace sap {
2023
2066
  */
2024
2067
  getSideExpanded(): boolean;
2025
2068
  /**
2026
- * @SINCE 1.93
2069
+ * @since 1.93
2027
2070
  *
2028
2071
  * Gets content of aggregation {@link #getSubHeader subHeader}.
2029
2072
  *
@@ -2078,6 +2121,25 @@ declare namespace sap {
2078
2121
  */
2079
2122
  vMainContent: int | string | sap.ui.core.Control
2080
2123
  ): sap.ui.core.Control | null;
2124
+ /**
2125
+ * @since 1.115
2126
+ *
2127
+ * Sets a new value for property {@link #getContentBackgroundDesign contentBackgroundDesign}.
2128
+ *
2129
+ * Specifies the content background design.
2130
+ *
2131
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2132
+ *
2133
+ * Default value is `Standard`.
2134
+ *
2135
+ * @returns Reference to `this` in order to allow method chaining
2136
+ */
2137
+ setContentBackgroundDesign(
2138
+ /**
2139
+ * New value for property `contentBackgroundDesign`
2140
+ */
2141
+ sContentBackgroundDesign?: sap.m.PageBackgroundDesign
2142
+ ): this;
2081
2143
  /**
2082
2144
  * Sets the aggregated {@link #getHeader header}.
2083
2145
  *
@@ -2112,7 +2174,7 @@ declare namespace sap {
2112
2174
  bSideExpanded: boolean
2113
2175
  ): this;
2114
2176
  /**
2115
- * @SINCE 1.93
2177
+ * @since 1.93
2116
2178
  *
2117
2179
  * Sets the aggregated {@link #getSubHeader subHeader}.
2118
2180
  *
@@ -2144,6 +2206,18 @@ declare namespace sap {
2144
2206
  */
2145
2207
  Narrow = "Narrow",
2146
2208
  }
2209
+
2210
+ type NavigationList$ItemSelectEvent = sap.ui.base.Event<NavigationList$ItemSelectEventParameters>;
2211
+
2212
+ type NavigationListItem$SelectEvent = sap.ui.base.Event<NavigationListItem$SelectEventParameters>;
2213
+
2214
+ /**
2215
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'SideNavigation$ItemSelectEventParameters'
2216
+ * in 1.115.1 and any later releases.
2217
+ */
2218
+ type $SideNavigationItemSelectEventParameters = sap.tnt.SideNavigation$ItemSelectEventParameters;
2219
+
2220
+ type SideNavigation$ItemSelectEvent = sap.ui.base.Event<SideNavigation$ItemSelectEventParameters>;
2147
2221
  }
2148
2222
 
2149
2223
  interface IUI5DefineDependencyNames {