@openui5/ts-types 1.108.1 → 1.109.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 +1 -1
- package/types/sap.f.d.ts +285 -25
- package/types/sap.m.d.ts +152 -54
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +240 -260
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +92 -11
- package/types/sap.ui.integration.d.ts +63 -5
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +3 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +380 -80
- package/types/sap.ui.table.d.ts +1 -3
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +81 -3
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.109.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
|
|
@@ -1080,6 +1090,18 @@ declare namespace sap {
|
|
|
1080
1090
|
* @returns Value of property `number`
|
|
1081
1091
|
*/
|
|
1082
1092
|
getNumber(): string;
|
|
1093
|
+
/**
|
|
1094
|
+
* @SINCE 1.109
|
|
1095
|
+
*
|
|
1096
|
+
* Gets current value of property {@link #getNumberVisible numberVisible}.
|
|
1097
|
+
*
|
|
1098
|
+
* Whether the main numeric indicator is visible or not
|
|
1099
|
+
*
|
|
1100
|
+
* Default value is `true`.
|
|
1101
|
+
*
|
|
1102
|
+
* @returns Value of property `numberVisible`
|
|
1103
|
+
*/
|
|
1104
|
+
getNumberVisible(): boolean;
|
|
1083
1105
|
/**
|
|
1084
1106
|
* Gets current value of property {@link #getScale scale}.
|
|
1085
1107
|
*
|
|
@@ -1286,6 +1308,25 @@ declare namespace sap {
|
|
|
1286
1308
|
*/
|
|
1287
1309
|
sNumber: string
|
|
1288
1310
|
): this;
|
|
1311
|
+
/**
|
|
1312
|
+
* @SINCE 1.109
|
|
1313
|
+
*
|
|
1314
|
+
* Sets a new value for property {@link #getNumberVisible numberVisible}.
|
|
1315
|
+
*
|
|
1316
|
+
* Whether the main numeric indicator is visible or not
|
|
1317
|
+
*
|
|
1318
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1319
|
+
*
|
|
1320
|
+
* Default value is `true`.
|
|
1321
|
+
*
|
|
1322
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1323
|
+
*/
|
|
1324
|
+
setNumberVisible(
|
|
1325
|
+
/**
|
|
1326
|
+
* New value for property `numberVisible`
|
|
1327
|
+
*/
|
|
1328
|
+
bNumberVisible?: boolean
|
|
1329
|
+
): this;
|
|
1289
1330
|
/**
|
|
1290
1331
|
* Sets a new value for property {@link #getScale scale}.
|
|
1291
1332
|
*
|
|
@@ -8338,6 +8379,15 @@ declare namespace sap {
|
|
|
8338
8379
|
*/
|
|
8339
8380
|
ariaLabel?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8340
8381
|
|
|
8382
|
+
/**
|
|
8383
|
+
* Determines whether the side panel is resizable or fixed. **Note:** setting this property only affects
|
|
8384
|
+
* desktop or tablet devices.
|
|
8385
|
+
*/
|
|
8386
|
+
sidePanelResizable?:
|
|
8387
|
+
| boolean
|
|
8388
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
8389
|
+
| `{${string}}`;
|
|
8390
|
+
|
|
8341
8391
|
/**
|
|
8342
8392
|
* Determines the side panel width (Side Content width + Action Bar width). **Note:** if the width is given
|
|
8343
8393
|
* in percent(%), it is calculated as given percent from the Side Panel parent container width, otherwise
|
|
@@ -8348,6 +8398,54 @@ declare namespace sap {
|
|
|
8348
8398
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
8349
8399
|
| `{${string}}`;
|
|
8350
8400
|
|
|
8401
|
+
/**
|
|
8402
|
+
* @SINCE 1.109.0
|
|
8403
|
+
*
|
|
8404
|
+
* Determines the minimum side panel width (Side Content width + Action Bar width). **Note:** if the width
|
|
8405
|
+
* is given in percent(%), it is calculated as given percent from the Side Panel parent container width,
|
|
8406
|
+
* otherwise it's calculated in absolute units.
|
|
8407
|
+
*/
|
|
8408
|
+
sidePanelMinWidth?:
|
|
8409
|
+
| sap.ui.core.CSSSize
|
|
8410
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
8411
|
+
| `{${string}}`;
|
|
8412
|
+
|
|
8413
|
+
/**
|
|
8414
|
+
* @SINCE 1.109.0
|
|
8415
|
+
*
|
|
8416
|
+
* Determines the maximum side panel width (Side Content width + Action Bar width). **Note:** if the width
|
|
8417
|
+
* is given in percent(%), it is calculated as given percent from the Side Panel parent container width,
|
|
8418
|
+
* otherwise it's calculated in absolute units.
|
|
8419
|
+
*/
|
|
8420
|
+
sidePanelMaxWidth?:
|
|
8421
|
+
| sap.ui.core.CSSSize
|
|
8422
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
8423
|
+
| `{${string}}`;
|
|
8424
|
+
|
|
8425
|
+
/**
|
|
8426
|
+
* @SINCE 1.109.0
|
|
8427
|
+
*
|
|
8428
|
+
* Determines the step (in pixels) when changing the width of the side panel with the keyboard. **Note:**
|
|
8429
|
+
* the width can be changed by this step with `Left Arrow` and `Right Arrow` keys when the resize splitter
|
|
8430
|
+
* is focused.
|
|
8431
|
+
*/
|
|
8432
|
+
sidePanelResizeStep?:
|
|
8433
|
+
| int
|
|
8434
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
8435
|
+
| `{${string}}`;
|
|
8436
|
+
|
|
8437
|
+
/**
|
|
8438
|
+
* @SINCE 1.109.0
|
|
8439
|
+
*
|
|
8440
|
+
* Determines the large step (in pixels) when changing the width of the side panel with the keyboard. **Note:**
|
|
8441
|
+
* the width can be changed by large step with `Shift + Left Arrow` and `Shift + Right Arrow` keys when
|
|
8442
|
+
* the resize splitter is focused.
|
|
8443
|
+
*/
|
|
8444
|
+
sidePanelResizeLargerStep?:
|
|
8445
|
+
| int
|
|
8446
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
8447
|
+
| `{${string}}`;
|
|
8448
|
+
|
|
8351
8449
|
/**
|
|
8352
8450
|
* The list of controls for the main content.
|
|
8353
8451
|
*/
|
|
@@ -18194,12 +18292,10 @@ declare namespace sap {
|
|
|
18194
18292
|
}
|
|
18195
18293
|
/**
|
|
18196
18294
|
* @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
18295
|
*
|
|
18200
18296
|
* Overview:
|
|
18201
18297
|
*
|
|
18202
|
-
* `SidePanel` is a layout control that allows primary and additional content to be displayed by
|
|
18298
|
+
* `SidePanel` is a layout control that allows primary and additional content to be displayed by choosing
|
|
18203
18299
|
* the action items from its action bar.
|
|
18204
18300
|
*
|
|
18205
18301
|
* Usage:
|
|
@@ -18207,8 +18303,8 @@ declare namespace sap {
|
|
|
18207
18303
|
* Action bar with action items have two states - collapsed and expanded. In collapsed state only icons
|
|
18208
18304
|
* are displayed, and in expanded state both icons and titles are displayed.
|
|
18209
18305
|
*
|
|
18210
|
-
* Each action item can have a content and
|
|
18211
|
-
*
|
|
18306
|
+
* Each action item can have a content and choose an action item toggles the display of its content. The
|
|
18307
|
+
* content can be added to the action item's `content` aggregation, or can be added or changed later.
|
|
18212
18308
|
*
|
|
18213
18309
|
* Each click/tap fires an event, and in the event handler specific content can be added/changed to the
|
|
18214
18310
|
* `content` aggregation of the clicked/tapped action item or data can be retreived from the same aggregation
|
|
@@ -18227,15 +18323,7 @@ declare namespace sap {
|
|
|
18227
18323
|
* an overflow icon is displayed, and it toggles ON/OFF an overflow menu with the rest of the action items
|
|
18228
18324
|
* that are not visible at the moment.
|
|
18229
18325
|
*
|
|
18230
|
-
*
|
|
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.
|
|
18326
|
+
* When expanded, the side content shrinks the main content.
|
|
18239
18327
|
*
|
|
18240
18328
|
* **On mobile device**
|
|
18241
18329
|
*
|
|
@@ -18243,6 +18331,14 @@ declare namespace sap {
|
|
|
18243
18331
|
* and when expanded, the side content is displayed above the action bar. If there is not enough room for
|
|
18244
18332
|
* all action items, the action bar can be swiped to access the rest of the action items.
|
|
18245
18333
|
*
|
|
18334
|
+
* Resizing:
|
|
18335
|
+
*
|
|
18336
|
+
* Resizing functionality only affects desktop or tablet devices.
|
|
18337
|
+
*
|
|
18338
|
+
* By setting the `sidePanelResizable` property, the expanded side panel can be resized by mouse (by drag
|
|
18339
|
+
* or by double click on resize splitter), by keyboard or by choosing one of three predefined positions
|
|
18340
|
+
* in the side panel's context menu (min, max and default widths)
|
|
18341
|
+
*
|
|
18246
18342
|
* Keyboard shortcuts:
|
|
18247
18343
|
*
|
|
18248
18344
|
*
|
|
@@ -18256,6 +18352,22 @@ declare namespace sap {
|
|
|
18256
18352
|
* opened side content panel to the action items
|
|
18257
18353
|
* - [F6] / [Shift] + [F6] - Navigate back and forth between main content, side panel and side content
|
|
18258
18354
|
* groups [Esc] - Close the opened side content panel and set focus back to main content
|
|
18355
|
+
*
|
|
18356
|
+
* If the side panel's `sidePanelResizable` property is set, there is an action item chosen, and the resize
|
|
18357
|
+
* splitter is focused:
|
|
18358
|
+
*
|
|
18359
|
+
*
|
|
18360
|
+
* - [Home] - set the expanded side panel width to the minimum value defined in `sidePanelMinWidth` property
|
|
18361
|
+
*
|
|
18362
|
+
* - [End] - set the expanded side panel width to the maximum value defined in `sidePanelMaxWidth` property
|
|
18363
|
+
*
|
|
18364
|
+
* - [Enter] - set the expanded side panel width to the default value defined in `sidePanelWidth` property
|
|
18365
|
+
*
|
|
18366
|
+
* - [Shift]+[F10] or [Context menu] - show the resize context menu
|
|
18367
|
+
* - [Arrow Left] / [Arrow Right] - increase/decrease the width of the expanded side panel with the regular
|
|
18368
|
+
* step
|
|
18369
|
+
* - [Shift] + [Arrow Left] / [Arrow Right] - increase/decrease the width of the expanded side panel with
|
|
18370
|
+
* the larger step
|
|
18259
18371
|
*/
|
|
18260
18372
|
class SidePanel extends sap.ui.core.Control {
|
|
18261
18373
|
/**
|
|
@@ -18492,6 +18604,73 @@ declare namespace sap {
|
|
|
18492
18604
|
* or `null`.
|
|
18493
18605
|
*/
|
|
18494
18606
|
getSelectedItem(): sap.ui.core.ID;
|
|
18607
|
+
/**
|
|
18608
|
+
* @SINCE 1.109.0
|
|
18609
|
+
*
|
|
18610
|
+
* Gets current value of property {@link #getSidePanelMaxWidth sidePanelMaxWidth}.
|
|
18611
|
+
*
|
|
18612
|
+
* Determines the maximum side panel width (Side Content width + Action Bar width). **Note:** if the width
|
|
18613
|
+
* is given in percent(%), it is calculated as given percent from the Side Panel parent container width,
|
|
18614
|
+
* otherwise it's calculated in absolute units.
|
|
18615
|
+
*
|
|
18616
|
+
* Default value is `"90%"`.
|
|
18617
|
+
*
|
|
18618
|
+
* @returns Value of property `sidePanelMaxWidth`
|
|
18619
|
+
*/
|
|
18620
|
+
getSidePanelMaxWidth(): sap.ui.core.CSSSize;
|
|
18621
|
+
/**
|
|
18622
|
+
* @SINCE 1.109.0
|
|
18623
|
+
*
|
|
18624
|
+
* Gets current value of property {@link #getSidePanelMinWidth sidePanelMinWidth}.
|
|
18625
|
+
*
|
|
18626
|
+
* Determines the minimum side panel width (Side Content width + Action Bar width). **Note:** if the width
|
|
18627
|
+
* is given in percent(%), it is calculated as given percent from the Side Panel parent container width,
|
|
18628
|
+
* otherwise it's calculated in absolute units.
|
|
18629
|
+
*
|
|
18630
|
+
* Default value is `"15rem"`.
|
|
18631
|
+
*
|
|
18632
|
+
* @returns Value of property `sidePanelMinWidth`
|
|
18633
|
+
*/
|
|
18634
|
+
getSidePanelMinWidth(): sap.ui.core.CSSSize;
|
|
18635
|
+
/**
|
|
18636
|
+
* Gets current value of property {@link #getSidePanelResizable sidePanelResizable}.
|
|
18637
|
+
*
|
|
18638
|
+
* Determines whether the side panel is resizable or fixed. **Note:** setting this property only affects
|
|
18639
|
+
* desktop or tablet devices.
|
|
18640
|
+
*
|
|
18641
|
+
* Default value is `false`.
|
|
18642
|
+
*
|
|
18643
|
+
* @returns Value of property `sidePanelResizable`
|
|
18644
|
+
*/
|
|
18645
|
+
getSidePanelResizable(): boolean;
|
|
18646
|
+
/**
|
|
18647
|
+
* @SINCE 1.109.0
|
|
18648
|
+
*
|
|
18649
|
+
* Gets current value of property {@link #getSidePanelResizeLargerStep sidePanelResizeLargerStep}.
|
|
18650
|
+
*
|
|
18651
|
+
* Determines the large step (in pixels) when changing the width of the side panel with the keyboard. **Note:**
|
|
18652
|
+
* the width can be changed by large step with `Shift + Left Arrow` and `Shift + Right Arrow` keys when
|
|
18653
|
+
* the resize splitter is focused.
|
|
18654
|
+
*
|
|
18655
|
+
* Default value is `100`.
|
|
18656
|
+
*
|
|
18657
|
+
* @returns Value of property `sidePanelResizeLargerStep`
|
|
18658
|
+
*/
|
|
18659
|
+
getSidePanelResizeLargerStep(): int;
|
|
18660
|
+
/**
|
|
18661
|
+
* @SINCE 1.109.0
|
|
18662
|
+
*
|
|
18663
|
+
* Gets current value of property {@link #getSidePanelResizeStep sidePanelResizeStep}.
|
|
18664
|
+
*
|
|
18665
|
+
* Determines the step (in pixels) when changing the width of the side panel with the keyboard. **Note:**
|
|
18666
|
+
* the width can be changed by this step with `Left Arrow` and `Right Arrow` keys when the resize splitter
|
|
18667
|
+
* is focused.
|
|
18668
|
+
*
|
|
18669
|
+
* Default value is `10`.
|
|
18670
|
+
*
|
|
18671
|
+
* @returns Value of property `sidePanelResizeStep`
|
|
18672
|
+
*/
|
|
18673
|
+
getSidePanelResizeStep(): int;
|
|
18495
18674
|
/**
|
|
18496
18675
|
* Gets current value of property {@link #getSidePanelWidth sidePanelWidth}.
|
|
18497
18676
|
*
|
|
@@ -18635,29 +18814,110 @@ declare namespace sap {
|
|
|
18635
18814
|
sAriaLabel?: string
|
|
18636
18815
|
): this;
|
|
18637
18816
|
/**
|
|
18638
|
-
*
|
|
18817
|
+
* @SINCE 1.109.0
|
|
18639
18818
|
*
|
|
18640
|
-
*
|
|
18641
|
-
*
|
|
18642
|
-
*
|
|
18819
|
+
* Sets a new value for property {@link #getSidePanelMaxWidth sidePanelMaxWidth}.
|
|
18820
|
+
*
|
|
18821
|
+
* Determines the maximum side panel width (Side Content width + Action Bar width). **Note:** if the width
|
|
18822
|
+
* is given in percent(%), it is calculated as given percent from the Side Panel parent container width,
|
|
18823
|
+
* otherwise it's calculated in absolute units.
|
|
18643
18824
|
*
|
|
18644
18825
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18645
18826
|
*
|
|
18646
|
-
* Default value is `"
|
|
18827
|
+
* Default value is `"90%"`.
|
|
18828
|
+
*
|
|
18829
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
18830
|
+
*/
|
|
18831
|
+
setSidePanelMaxWidth(
|
|
18832
|
+
/**
|
|
18833
|
+
* New value for property `sidePanelMaxWidth`
|
|
18834
|
+
*/
|
|
18835
|
+
sSidePanelMaxWidth?: sap.ui.core.CSSSize
|
|
18836
|
+
): this;
|
|
18837
|
+
/**
|
|
18838
|
+
* @SINCE 1.109.0
|
|
18839
|
+
*
|
|
18840
|
+
* Sets a new value for property {@link #getSidePanelMinWidth sidePanelMinWidth}.
|
|
18841
|
+
*
|
|
18842
|
+
* Determines the minimum 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.
|
|
18845
|
+
*
|
|
18846
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18847
|
+
*
|
|
18848
|
+
* Default value is `"15rem"`.
|
|
18849
|
+
*
|
|
18850
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
18851
|
+
*/
|
|
18852
|
+
setSidePanelMinWidth(
|
|
18853
|
+
/**
|
|
18854
|
+
* New value for property `sidePanelMinWidth`
|
|
18855
|
+
*/
|
|
18856
|
+
sSidePanelMinWidth?: sap.ui.core.CSSSize
|
|
18857
|
+
): this;
|
|
18858
|
+
/**
|
|
18859
|
+
* Sets a new value for property {@link #getSidePanelResizable sidePanelResizable}.
|
|
18860
|
+
*
|
|
18861
|
+
* Determines whether the side panel is resizable or fixed. **Note:** setting this property only affects
|
|
18862
|
+
* desktop or tablet devices.
|
|
18863
|
+
*
|
|
18864
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18865
|
+
*
|
|
18866
|
+
* Default value is `false`.
|
|
18867
|
+
*
|
|
18868
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
18869
|
+
*/
|
|
18870
|
+
setSidePanelResizable(
|
|
18871
|
+
/**
|
|
18872
|
+
* New value for property `sidePanelResizable`
|
|
18873
|
+
*/
|
|
18874
|
+
bSidePanelResizable?: boolean
|
|
18875
|
+
): this;
|
|
18876
|
+
/**
|
|
18877
|
+
* @SINCE 1.109.0
|
|
18878
|
+
*
|
|
18879
|
+
* Sets a new value for property {@link #getSidePanelResizeLargerStep sidePanelResizeLargerStep}.
|
|
18880
|
+
*
|
|
18881
|
+
* Determines the large step (in pixels) when changing the width of the side panel with the keyboard. **Note:**
|
|
18882
|
+
* the width can be changed by large step with `Shift + Left Arrow` and `Shift + Right Arrow` keys when
|
|
18883
|
+
* the resize splitter is focused.
|
|
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 `100`.
|
|
18888
|
+
*
|
|
18889
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
18890
|
+
*/
|
|
18891
|
+
setSidePanelResizeLargerStep(
|
|
18892
|
+
/**
|
|
18893
|
+
* New value for property `sidePanelResizeLargerStep`
|
|
18894
|
+
*/
|
|
18895
|
+
iSidePanelResizeLargerStep?: int
|
|
18896
|
+
): this;
|
|
18897
|
+
/**
|
|
18898
|
+
* @SINCE 1.109.0
|
|
18899
|
+
*
|
|
18900
|
+
* Sets a new value for property {@link #getSidePanelResizeStep sidePanelResizeStep}.
|
|
18901
|
+
*
|
|
18902
|
+
* Determines the step (in pixels) when changing the width of the side panel with the keyboard. **Note:**
|
|
18903
|
+
* the width can be changed by this step with `Left Arrow` and `Right Arrow` keys when the resize splitter
|
|
18904
|
+
* 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 `10`.
|
|
18647
18909
|
*
|
|
18648
18910
|
* @returns Reference to `this` in order to allow method chaining
|
|
18649
18911
|
*/
|
|
18650
|
-
|
|
18912
|
+
setSidePanelResizeStep(
|
|
18651
18913
|
/**
|
|
18652
|
-
* New value for property `
|
|
18914
|
+
* New value for property `sidePanelResizeStep`
|
|
18653
18915
|
*/
|
|
18654
|
-
|
|
18916
|
+
iSidePanelResizeStep?: int
|
|
18655
18917
|
): this;
|
|
18656
18918
|
}
|
|
18657
18919
|
/**
|
|
18658
18920
|
* @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
18921
|
*
|
|
18662
18922
|
* Overview:
|
|
18663
18923
|
*
|