@openui5/ts-types 1.108.2 → 1.110.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/ts-types",
3
- "version": "1.108.2",
3
+ "version": "1.110.0",
4
4
  "description": "OpenUI5 TypeScript Definitions",
5
5
  "homepage": "https://openui5.org",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  *
5
5
  * Licensed under the Apache License, Version 2.0 (the "License");
6
6
  * you may not use this file except in compliance with the License.
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.2
1
+ // For Library Version: 1.110.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -179,6 +179,16 @@ declare namespace sap {
179
179
  */
180
180
  number?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
181
181
 
182
+ /**
183
+ * @SINCE 1.109
184
+ *
185
+ * Whether the main numeric indicator is visible or not
186
+ */
187
+ numberVisible?:
188
+ | boolean
189
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
190
+ | `{${string}}`;
191
+
182
192
  /**
183
193
  * Defines the unit of measurement (scaling prefix) for the main indicator. Financial characters can be
184
194
  * used for currencies and counters. The International System of Units (SI) prefixes can be used. If the
@@ -538,7 +548,11 @@ declare namespace sap {
538
548
  /**
539
549
  * The mapping of "aria-" prefixed attributes
540
550
  */
541
- mAriaProps: object
551
+ mAriaProps: {
552
+ role: string;
553
+
554
+ level: string;
555
+ }
542
556
  ): void;
543
557
  /**
544
558
  * Fires event {@link #event:press press} to attached listeners.
@@ -1038,7 +1052,11 @@ declare namespace sap {
1038
1052
  /**
1039
1053
  * The mapping of "aria-" prefixed attributes
1040
1054
  */
1041
- mAriaProps: object
1055
+ mAriaProps: {
1056
+ role: string;
1057
+
1058
+ level: string;
1059
+ }
1042
1060
  ): void;
1043
1061
  /**
1044
1062
  * Fires event {@link #event:press press} to attached listeners.
@@ -1080,6 +1098,18 @@ declare namespace sap {
1080
1098
  * @returns Value of property `number`
1081
1099
  */
1082
1100
  getNumber(): string;
1101
+ /**
1102
+ * @SINCE 1.109
1103
+ *
1104
+ * Gets current value of property {@link #getNumberVisible numberVisible}.
1105
+ *
1106
+ * Whether the main numeric indicator is visible or not
1107
+ *
1108
+ * Default value is `true`.
1109
+ *
1110
+ * @returns Value of property `numberVisible`
1111
+ */
1112
+ getNumberVisible(): boolean;
1083
1113
  /**
1084
1114
  * Gets current value of property {@link #getScale scale}.
1085
1115
  *
@@ -1286,6 +1316,25 @@ declare namespace sap {
1286
1316
  */
1287
1317
  sNumber: string
1288
1318
  ): this;
1319
+ /**
1320
+ * @SINCE 1.109
1321
+ *
1322
+ * Sets a new value for property {@link #getNumberVisible numberVisible}.
1323
+ *
1324
+ * Whether the main numeric indicator is visible or not
1325
+ *
1326
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1327
+ *
1328
+ * Default value is `true`.
1329
+ *
1330
+ * @returns Reference to `this` in order to allow method chaining
1331
+ */
1332
+ setNumberVisible(
1333
+ /**
1334
+ * New value for property `numberVisible`
1335
+ */
1336
+ bNumberVisible?: boolean
1337
+ ): this;
1289
1338
  /**
1290
1339
  * Sets a new value for property {@link #getScale scale}.
1291
1340
  *
@@ -1671,10 +1720,10 @@ declare namespace sap {
1671
1720
  *
1672
1721
  * If not specified or if the function returns `null`, the indicator size will be calculated automatically.
1673
1722
  *
1674
- * This callback will be called when the indicator is displayed, that happens during the drag over movement.
1723
+ * This callback will be called when the indicator is displayed, which happens during the drag over movement.
1675
1724
  *
1676
- * The callback receives `draggedControl` as parameter and must return an object of type `{rows: ,
1677
- * columns: }` or `null`.
1725
+ * The callback receives `draggedControl` as parameter and must return an object of type `{rows: int, columns:
1726
+ * int}` or `null`.
1678
1727
  */
1679
1728
  dropIndicatorSize?:
1680
1729
  | Function
@@ -1767,36 +1816,41 @@ declare namespace sap {
1767
1816
  * Gets current value of property {@link #getDropIndicatorSize dropIndicatorSize}.
1768
1817
  *
1769
1818
  * A function which will define the desired drop indicator size. The drop indicator shows the user how the
1770
- * grid will rearrange after drop.
1771
- *
1772
- * Use when custom size needs to be defined. For example when an item is dragged from outside a grid and
1773
- * is dropped over the grid.
1819
+ * grid will rearrange after drop. Use when custom size needs to be defined. For example, when an item is
1820
+ * dragged from outside a grid and is dropped over the grid.
1774
1821
  *
1775
1822
  * If not specified or if the function returns `null`, the indicator size will be calculated automatically.
1776
1823
  *
1777
- * This callback will be called when the indicator is displayed, that happens during the drag over movement.
1824
+ * This callback will be called when the indicator is displayed, which happens during the drag over movement.
1778
1825
  *
1779
- * The callback receives `draggedControl` as parameter and must return an object of type `{rows: ,
1780
- * columns: }` or `null`.
1826
+ * The callback receives `draggedControl` as parameter and must return an object of type `{rows: int, columns:
1827
+ * int}` or `null`.
1781
1828
  *
1782
1829
  * @returns Value of property `dropIndicatorSize`
1783
1830
  */
1784
- getDropIndicatorSize(): Function;
1831
+ getDropIndicatorSize():
1832
+ | ((
1833
+ p1: sap.ui.core.Control
1834
+ ) => {
1835
+ rows: int;
1836
+
1837
+ columns: int;
1838
+ })
1839
+ | null
1840
+ | undefined;
1785
1841
  /**
1786
- * Sets a new value for property {@link #getDropIndicatorSize dropIndicatorSize}.
1842
+ * Sets a new value for property {@link #setDropIndicatorSize dropIndicatorSize}.
1787
1843
  *
1788
1844
  * A function which will define the desired drop indicator size. The drop indicator shows the user how the
1789
- * grid will rearrange after drop.
1790
- *
1791
- * Use when custom size needs to be defined. For example when an item is dragged from outside a grid and
1792
- * is dropped over the grid.
1845
+ * grid will rearrange after drop. Use when custom size needs to be defined. For example when an item is
1846
+ * dragged from outside a grid and is dropped over the grid.
1793
1847
  *
1794
1848
  * If not specified or if the function returns `null`, the indicator size will be calculated automatically.
1795
1849
  *
1796
- * This callback will be called when the indicator is displayed, that happens during the drag over movement.
1850
+ * This callback will be called when the indicator is displayed, which happens during the drag over movement.
1797
1851
  *
1798
- * The callback receives `draggedControl` as parameter and must return an object of type `{rows: ,
1799
- * columns: }` or `null`.
1852
+ * The callback receives `draggedControl` as parameter and must return an object of type `{rows: int, columns:
1853
+ * int}` or `null`.
1800
1854
  *
1801
1855
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1802
1856
  *
@@ -1806,7 +1860,15 @@ declare namespace sap {
1806
1860
  /**
1807
1861
  * New value for property `dropIndicatorSize`
1808
1862
  */
1809
- fnDropIndicatorSize: Function
1863
+ fnDropIndicatorSize?:
1864
+ | ((
1865
+ p1: sap.ui.core.Control
1866
+ ) => {
1867
+ rows: int;
1868
+
1869
+ columns: int;
1870
+ })
1871
+ | null
1810
1872
  ): this;
1811
1873
  }
1812
1874
  }
@@ -8338,6 +8400,15 @@ declare namespace sap {
8338
8400
  */
8339
8401
  ariaLabel?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
8340
8402
 
8403
+ /**
8404
+ * Determines whether the side panel is resizable or fixed. **Note:** setting this property only affects
8405
+ * desktop or tablet devices.
8406
+ */
8407
+ sidePanelResizable?:
8408
+ | boolean
8409
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
8410
+ | `{${string}}`;
8411
+
8341
8412
  /**
8342
8413
  * Determines the side panel width (Side Content width + Action Bar width). **Note:** if the width is given
8343
8414
  * in percent(%), it is calculated as given percent from the Side Panel parent container width, otherwise
@@ -8348,6 +8419,54 @@ declare namespace sap {
8348
8419
  | sap.ui.base.ManagedObject.PropertyBindingInfo
8349
8420
  | `{${string}}`;
8350
8421
 
8422
+ /**
8423
+ * @SINCE 1.109.0
8424
+ *
8425
+ * Determines the minimum side panel width (Side Content width + Action Bar width). **Note:** if the width
8426
+ * is given in percent(%), it is calculated as given percent from the Side Panel parent container width,
8427
+ * otherwise it's calculated in absolute units.
8428
+ */
8429
+ sidePanelMinWidth?:
8430
+ | sap.ui.core.CSSSize
8431
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
8432
+ | `{${string}}`;
8433
+
8434
+ /**
8435
+ * @SINCE 1.109.0
8436
+ *
8437
+ * Determines the maximum side panel width (Side Content width + Action Bar width). **Note:** if the width
8438
+ * is given in percent(%), it is calculated as given percent from the Side Panel parent container width,
8439
+ * otherwise it's calculated in absolute units.
8440
+ */
8441
+ sidePanelMaxWidth?:
8442
+ | sap.ui.core.CSSSize
8443
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
8444
+ | `{${string}}`;
8445
+
8446
+ /**
8447
+ * @SINCE 1.109.0
8448
+ *
8449
+ * Determines the step (in pixels) when changing the width of the side panel with the keyboard. **Note:**
8450
+ * the width can be changed by this step with `Left Arrow` and `Right Arrow` keys when the resize splitter
8451
+ * is focused.
8452
+ */
8453
+ sidePanelResizeStep?:
8454
+ | int
8455
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
8456
+ | `{${string}}`;
8457
+
8458
+ /**
8459
+ * @SINCE 1.109.0
8460
+ *
8461
+ * Determines the large step (in pixels) when changing the width of the side panel with the keyboard. **Note:**
8462
+ * the width can be changed by large step with `Shift + Left Arrow` and `Shift + Right Arrow` keys when
8463
+ * the resize splitter is focused.
8464
+ */
8465
+ sidePanelResizeLargerStep?:
8466
+ | int
8467
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
8468
+ | `{${string}}`;
8469
+
8351
8470
  /**
8352
8471
  * The list of controls for the main content.
8353
8472
  */
@@ -11471,7 +11590,7 @@ declare namespace sap {
11471
11590
  /**
11472
11591
  * @SINCE 1.46
11473
11592
  *
11474
- * Implements the master-detail-detail paradigm by displaying up to three pages in separate columns.
11593
+ * Implements the list-detail-detail paradigm by displaying up to three pages in separate columns.
11475
11594
  *
11476
11595
  * Overview:
11477
11596
  *
@@ -13859,10 +13978,10 @@ declare namespace sap {
13859
13978
  * them should lead.
13860
13979
  *
13861
13980
  * Calling `getNextUIState(2)` will return information about the expected layout and action buttons if the
13862
- * application should display three views (master-detail-detail), based on the current state.
13981
+ * application should display three views (list-detail-detail), based on the current state.
13863
13982
  *
13864
13983
  * Similarly, calling `getNextUIState(0)` will return information about the expected layout and action buttons
13865
- * if the application should display the initial view only (master), based on the current state.
13984
+ * if the application should display the initial view only (list), based on the current state.
13866
13985
  *
13867
13986
  * For more information, see {@link sap.f.FlexibleColumnLayoutSemanticHelper#getCurrentUIState} and {@link
13868
13987
  * sap.f.FlexibleColumnLayoutSemanticHelper#getNextUIState}
@@ -13978,7 +14097,7 @@ declare namespace sap {
13978
14097
  */
13979
14098
  getNextUIState(
13980
14099
  /**
13981
- * the view level that should be represented. 0 means initial (master only), 1 - master-detail, 2 - master-detail-detail,
14100
+ * the view level that should be represented. 0 means initial (list only), 1 - list-detail, 2 - list-detail-detail,
13982
14101
  * 3 and above - subsequent views
13983
14102
  */
13984
14103
  iNextLevel: int
@@ -17773,7 +17892,7 @@ declare namespace sap {
17773
17892
  *
17774
17893
  * @returns with all available contexts
17775
17894
  */
17776
- getContext(): Object;
17895
+ getContext(): sap.m.BarContexts;
17777
17896
  /**
17778
17897
  * Gets current value of property {@link #getHomeIcon homeIcon}.
17779
17898
  *
@@ -18194,12 +18313,10 @@ declare namespace sap {
18194
18313
  }
18195
18314
  /**
18196
18315
  * @SINCE 1.107
18197
- * @EXPERIMENTAL (since 1.107) - This class is experimental and provides only limited functionality. Also
18198
- * the API might be changed in future.
18199
18316
  *
18200
18317
  * Overview:
18201
18318
  *
18202
- * `SidePanel` is a layout control that allows primary and additional content to be displayed by clicking/tapping
18319
+ * `SidePanel` is a layout control that allows primary and additional content to be displayed by choosing
18203
18320
  * the action items from its action bar.
18204
18321
  *
18205
18322
  * Usage:
@@ -18207,8 +18324,8 @@ declare namespace sap {
18207
18324
  * Action bar with action items have two states - collapsed and expanded. In collapsed state only icons
18208
18325
  * are displayed, and in expanded state both icons and titles are displayed.
18209
18326
  *
18210
- * Each action item can have a content and click/tap on action item toggles the display of its content.
18211
- * The content can be added to the action item's `content` aggregation, or can be added or changed later.
18327
+ * Each action item can have a content and choose an action item toggles the display of its content. The
18328
+ * content can be added to the action item's `content` aggregation, or can be added or changed later.
18212
18329
  *
18213
18330
  * Each click/tap fires an event, and in the event handler specific content can be added/changed to the
18214
18331
  * `content` aggregation of the clicked/tapped action item or data can be retreived from the same aggregation
@@ -18227,15 +18344,7 @@ declare namespace sap {
18227
18344
  * an overflow icon is displayed, and it toggles ON/OFF an overflow menu with the rest of the action items
18228
18345
  * that are not visible at the moment.
18229
18346
  *
18230
- * Screen width > 1440 px
18231
- *
18232
- *
18233
- * - When expanded, the side content shrinks the main content.
18234
- *
18235
- * Screen width <= 1440 px
18236
- *
18237
- *
18238
- * - When expanded, the side content is placed over the main content.
18347
+ * When expanded, the side content shrinks the main content.
18239
18348
  *
18240
18349
  * **On mobile device**
18241
18350
  *
@@ -18243,6 +18352,14 @@ declare namespace sap {
18243
18352
  * and when expanded, the side content is displayed above the action bar. If there is not enough room for
18244
18353
  * all action items, the action bar can be swiped to access the rest of the action items.
18245
18354
  *
18355
+ * Resizing:
18356
+ *
18357
+ * Resizing functionality only affects desktop or tablet devices.
18358
+ *
18359
+ * By setting the `sidePanelResizable` property, the expanded side panel can be resized by mouse (by drag
18360
+ * or by double click on resize splitter), by keyboard or by choosing one of three predefined positions
18361
+ * in the side panel's context menu (min, max and default widths)
18362
+ *
18246
18363
  * Keyboard shortcuts:
18247
18364
  *
18248
18365
  *
@@ -18256,6 +18373,22 @@ declare namespace sap {
18256
18373
  * opened side content panel to the action items
18257
18374
  * - [F6] / [Shift] + [F6] - Navigate back and forth between main content, side panel and side content
18258
18375
  * groups [Esc] - Close the opened side content panel and set focus back to main content
18376
+ *
18377
+ * If the side panel's `sidePanelResizable` property is set, there is an action item chosen, and the resize
18378
+ * splitter is focused:
18379
+ *
18380
+ *
18381
+ * - [Home] - set the expanded side panel width to the minimum value defined in `sidePanelMinWidth` property
18382
+ *
18383
+ * - [End] - set the expanded side panel width to the maximum value defined in `sidePanelMaxWidth` property
18384
+ *
18385
+ * - [Enter] - set the expanded side panel width to the default value defined in `sidePanelWidth` property
18386
+ *
18387
+ * - [Shift]+[F10] or [Context menu] - show the resize context menu
18388
+ * - [Arrow Left] / [Arrow Right] - increase/decrease the width of the expanded side panel with the regular
18389
+ * step
18390
+ * - [Shift] + [Arrow Left] / [Arrow Right] - increase/decrease the width of the expanded side panel with
18391
+ * the larger step
18259
18392
  */
18260
18393
  class SidePanel extends sap.ui.core.Control {
18261
18394
  /**
@@ -18492,6 +18625,73 @@ declare namespace sap {
18492
18625
  * or `null`.
18493
18626
  */
18494
18627
  getSelectedItem(): sap.ui.core.ID;
18628
+ /**
18629
+ * @SINCE 1.109.0
18630
+ *
18631
+ * Gets current value of property {@link #getSidePanelMaxWidth sidePanelMaxWidth}.
18632
+ *
18633
+ * Determines the maximum side panel width (Side Content width + Action Bar width). **Note:** if the width
18634
+ * is given in percent(%), it is calculated as given percent from the Side Panel parent container width,
18635
+ * otherwise it's calculated in absolute units.
18636
+ *
18637
+ * Default value is `"90%"`.
18638
+ *
18639
+ * @returns Value of property `sidePanelMaxWidth`
18640
+ */
18641
+ getSidePanelMaxWidth(): sap.ui.core.CSSSize;
18642
+ /**
18643
+ * @SINCE 1.109.0
18644
+ *
18645
+ * Gets current value of property {@link #getSidePanelMinWidth sidePanelMinWidth}.
18646
+ *
18647
+ * Determines the minimum side panel width (Side Content width + Action Bar width). **Note:** if the width
18648
+ * is given in percent(%), it is calculated as given percent from the Side Panel parent container width,
18649
+ * otherwise it's calculated in absolute units.
18650
+ *
18651
+ * Default value is `"15rem"`.
18652
+ *
18653
+ * @returns Value of property `sidePanelMinWidth`
18654
+ */
18655
+ getSidePanelMinWidth(): sap.ui.core.CSSSize;
18656
+ /**
18657
+ * Gets current value of property {@link #getSidePanelResizable sidePanelResizable}.
18658
+ *
18659
+ * Determines whether the side panel is resizable or fixed. **Note:** setting this property only affects
18660
+ * desktop or tablet devices.
18661
+ *
18662
+ * Default value is `false`.
18663
+ *
18664
+ * @returns Value of property `sidePanelResizable`
18665
+ */
18666
+ getSidePanelResizable(): boolean;
18667
+ /**
18668
+ * @SINCE 1.109.0
18669
+ *
18670
+ * Gets current value of property {@link #getSidePanelResizeLargerStep sidePanelResizeLargerStep}.
18671
+ *
18672
+ * Determines the large step (in pixels) when changing the width of the side panel with the keyboard. **Note:**
18673
+ * the width can be changed by large step with `Shift + Left Arrow` and `Shift + Right Arrow` keys when
18674
+ * the resize splitter is focused.
18675
+ *
18676
+ * Default value is `100`.
18677
+ *
18678
+ * @returns Value of property `sidePanelResizeLargerStep`
18679
+ */
18680
+ getSidePanelResizeLargerStep(): int;
18681
+ /**
18682
+ * @SINCE 1.109.0
18683
+ *
18684
+ * Gets current value of property {@link #getSidePanelResizeStep sidePanelResizeStep}.
18685
+ *
18686
+ * Determines the step (in pixels) when changing the width of the side panel with the keyboard. **Note:**
18687
+ * the width can be changed by this step with `Left Arrow` and `Right Arrow` keys when the resize splitter
18688
+ * is focused.
18689
+ *
18690
+ * Default value is `10`.
18691
+ *
18692
+ * @returns Value of property `sidePanelResizeStep`
18693
+ */
18694
+ getSidePanelResizeStep(): int;
18495
18695
  /**
18496
18696
  * Gets current value of property {@link #getSidePanelWidth sidePanelWidth}.
18497
18697
  *
@@ -18635,29 +18835,110 @@ declare namespace sap {
18635
18835
  sAriaLabel?: string
18636
18836
  ): this;
18637
18837
  /**
18638
- * Sets a new value for property {@link #getSidePanelWidth sidePanelWidth}.
18838
+ * @SINCE 1.109.0
18639
18839
  *
18640
- * Determines the side panel width (Side Content width + Action Bar width). **Note:** if the width is given
18641
- * in percent(%), it is calculated as given percent from the Side Panel parent container width, otherwise
18642
- * it's calculated in absolute units.
18840
+ * Sets a new value for property {@link #getSidePanelMaxWidth sidePanelMaxWidth}.
18841
+ *
18842
+ * Determines the maximum side panel width (Side Content width + Action Bar width). **Note:** if the width
18843
+ * is given in percent(%), it is calculated as given percent from the Side Panel parent container width,
18844
+ * otherwise it's calculated in absolute units.
18643
18845
  *
18644
18846
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
18645
18847
  *
18646
- * Default value is `"20rem"`.
18848
+ * Default value is `"90%"`.
18849
+ *
18850
+ * @returns Reference to `this` in order to allow method chaining
18851
+ */
18852
+ setSidePanelMaxWidth(
18853
+ /**
18854
+ * New value for property `sidePanelMaxWidth`
18855
+ */
18856
+ sSidePanelMaxWidth?: sap.ui.core.CSSSize
18857
+ ): this;
18858
+ /**
18859
+ * @SINCE 1.109.0
18860
+ *
18861
+ * Sets a new value for property {@link #getSidePanelMinWidth sidePanelMinWidth}.
18862
+ *
18863
+ * Determines the minimum side panel width (Side Content width + Action Bar width). **Note:** if the width
18864
+ * is given in percent(%), it is calculated as given percent from the Side Panel parent container width,
18865
+ * otherwise it's calculated in absolute units.
18866
+ *
18867
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
18868
+ *
18869
+ * Default value is `"15rem"`.
18870
+ *
18871
+ * @returns Reference to `this` in order to allow method chaining
18872
+ */
18873
+ setSidePanelMinWidth(
18874
+ /**
18875
+ * New value for property `sidePanelMinWidth`
18876
+ */
18877
+ sSidePanelMinWidth?: sap.ui.core.CSSSize
18878
+ ): this;
18879
+ /**
18880
+ * Sets a new value for property {@link #getSidePanelResizable sidePanelResizable}.
18881
+ *
18882
+ * Determines whether the side panel is resizable or fixed. **Note:** setting this property only affects
18883
+ * desktop or tablet devices.
18884
+ *
18885
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
18886
+ *
18887
+ * Default value is `false`.
18647
18888
  *
18648
18889
  * @returns Reference to `this` in order to allow method chaining
18649
18890
  */
18650
- setSidePanelWidth(
18891
+ setSidePanelResizable(
18651
18892
  /**
18652
- * New value for property `sidePanelWidth`
18893
+ * New value for property `sidePanelResizable`
18653
18894
  */
18654
- sSidePanelWidth?: sap.ui.core.CSSSize
18895
+ bSidePanelResizable?: boolean
18896
+ ): this;
18897
+ /**
18898
+ * @SINCE 1.109.0
18899
+ *
18900
+ * Sets a new value for property {@link #getSidePanelResizeLargerStep sidePanelResizeLargerStep}.
18901
+ *
18902
+ * Determines the large step (in pixels) when changing the width of the side panel with the keyboard. **Note:**
18903
+ * the width can be changed by large step with `Shift + Left Arrow` and `Shift + Right Arrow` keys when
18904
+ * the resize splitter is focused.
18905
+ *
18906
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
18907
+ *
18908
+ * Default value is `100`.
18909
+ *
18910
+ * @returns Reference to `this` in order to allow method chaining
18911
+ */
18912
+ setSidePanelResizeLargerStep(
18913
+ /**
18914
+ * New value for property `sidePanelResizeLargerStep`
18915
+ */
18916
+ iSidePanelResizeLargerStep?: int
18917
+ ): this;
18918
+ /**
18919
+ * @SINCE 1.109.0
18920
+ *
18921
+ * Sets a new value for property {@link #getSidePanelResizeStep sidePanelResizeStep}.
18922
+ *
18923
+ * Determines the step (in pixels) when changing the width of the side panel with the keyboard. **Note:**
18924
+ * the width can be changed by this step with `Left Arrow` and `Right Arrow` keys when the resize splitter
18925
+ * is focused.
18926
+ *
18927
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
18928
+ *
18929
+ * Default value is `10`.
18930
+ *
18931
+ * @returns Reference to `this` in order to allow method chaining
18932
+ */
18933
+ setSidePanelResizeStep(
18934
+ /**
18935
+ * New value for property `sidePanelResizeStep`
18936
+ */
18937
+ iSidePanelResizeStep?: int
18655
18938
  ): this;
18656
18939
  }
18657
18940
  /**
18658
18941
  * @SINCE 1.107
18659
- * @EXPERIMENTAL (since 1.107) - This class is experimental and provides only limited functionality. Also
18660
- * the API might be changed in future.
18661
18942
  *
18662
18943
  * Overview:
18663
18944
  *