@openui5/ts-types-esm 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-esm",
3
- "version": "1.108.2",
3
+ "version": "1.110.0",
4
4
  "description": "OpenUI5 TypeScript Definitions - ES Modules",
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 module "sap/tnt/library" {
4
4
  export interface IToolHeader {
@@ -1801,7 +1801,11 @@ declare module "sap/f/cards/Header" {
1801
1801
  /**
1802
1802
  * The mapping of "aria-" prefixed attributes
1803
1803
  */
1804
- mAriaProps: object
1804
+ mAriaProps: {
1805
+ role: string;
1806
+
1807
+ level: string;
1808
+ }
1805
1809
  ): void;
1806
1810
  /**
1807
1811
  * Fires event {@link #event:press press} to attached listeners.
@@ -2404,7 +2408,11 @@ declare module "sap/f/cards/NumericHeader" {
2404
2408
  /**
2405
2409
  * The mapping of "aria-" prefixed attributes
2406
2410
  */
2407
- mAriaProps: object
2411
+ mAriaProps: {
2412
+ role: string;
2413
+
2414
+ level: string;
2415
+ }
2408
2416
  ): void;
2409
2417
  /**
2410
2418
  * Fires event {@link #event:press press} to attached listeners.
@@ -2446,6 +2454,18 @@ declare module "sap/f/cards/NumericHeader" {
2446
2454
  * @returns Value of property `number`
2447
2455
  */
2448
2456
  getNumber(): string;
2457
+ /**
2458
+ * @SINCE 1.109
2459
+ *
2460
+ * Gets current value of property {@link #getNumberVisible numberVisible}.
2461
+ *
2462
+ * Whether the main numeric indicator is visible or not
2463
+ *
2464
+ * Default value is `true`.
2465
+ *
2466
+ * @returns Value of property `numberVisible`
2467
+ */
2468
+ getNumberVisible(): boolean;
2449
2469
  /**
2450
2470
  * Gets current value of property {@link #getScale scale}.
2451
2471
  *
@@ -2654,6 +2674,25 @@ declare module "sap/f/cards/NumericHeader" {
2654
2674
  */
2655
2675
  sNumber: string
2656
2676
  ): this;
2677
+ /**
2678
+ * @SINCE 1.109
2679
+ *
2680
+ * Sets a new value for property {@link #getNumberVisible numberVisible}.
2681
+ *
2682
+ * Whether the main numeric indicator is visible or not
2683
+ *
2684
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2685
+ *
2686
+ * Default value is `true`.
2687
+ *
2688
+ * @returns Reference to `this` in order to allow method chaining
2689
+ */
2690
+ setNumberVisible(
2691
+ /**
2692
+ * New value for property `numberVisible`
2693
+ */
2694
+ bNumberVisible?: boolean
2695
+ ): this;
2657
2696
  /**
2658
2697
  * Sets a new value for property {@link #getScale scale}.
2659
2698
  *
@@ -2870,6 +2909,13 @@ declare module "sap/f/cards/NumericHeader" {
2870
2909
  */
2871
2910
  number?: string | PropertyBindingInfo;
2872
2911
 
2912
+ /**
2913
+ * @SINCE 1.109
2914
+ *
2915
+ * Whether the main numeric indicator is visible or not
2916
+ */
2917
+ numberVisible?: boolean | PropertyBindingInfo | `{${string}}`;
2918
+
2873
2919
  /**
2874
2920
  * Defines the unit of measurement (scaling prefix) for the main indicator. Financial characters can be
2875
2921
  * used for currencies and counters. The International System of Units (SI) prefixes can be used. If the
@@ -3140,6 +3186,8 @@ declare module "sap/f/dnd/GridDropInfo" {
3140
3186
 
3141
3187
  import { dnd } from "sap/ui/core/library";
3142
3188
 
3189
+ import Control from "sap/ui/core/Control";
3190
+
3143
3191
  import ElementMetadata from "sap/ui/core/ElementMetadata";
3144
3192
 
3145
3193
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
@@ -3227,36 +3275,41 @@ declare module "sap/f/dnd/GridDropInfo" {
3227
3275
  * Gets current value of property {@link #getDropIndicatorSize dropIndicatorSize}.
3228
3276
  *
3229
3277
  * A function which will define the desired drop indicator size. The drop indicator shows the user how the
3230
- * grid will rearrange after drop.
3231
- *
3232
- * Use when custom size needs to be defined. For example when an item is dragged from outside a grid and
3233
- * is dropped over the grid.
3278
+ * grid will rearrange after drop. Use when custom size needs to be defined. For example, when an item is
3279
+ * dragged from outside a grid and is dropped over the grid.
3234
3280
  *
3235
3281
  * If not specified or if the function returns `null`, the indicator size will be calculated automatically.
3236
3282
  *
3237
- * This callback will be called when the indicator is displayed, that happens during the drag over movement.
3283
+ * This callback will be called when the indicator is displayed, which happens during the drag over movement.
3238
3284
  *
3239
- * The callback receives `draggedControl` as parameter and must return an object of type `{rows: ,
3240
- * columns: }` or `null`.
3285
+ * The callback receives `draggedControl` as parameter and must return an object of type `{rows: int, columns:
3286
+ * int}` or `null`.
3241
3287
  *
3242
3288
  * @returns Value of property `dropIndicatorSize`
3243
3289
  */
3244
- getDropIndicatorSize(): Function;
3290
+ getDropIndicatorSize():
3291
+ | ((
3292
+ p1: Control
3293
+ ) => {
3294
+ rows: int;
3295
+
3296
+ columns: int;
3297
+ })
3298
+ | null
3299
+ | undefined;
3245
3300
  /**
3246
- * Sets a new value for property {@link #getDropIndicatorSize dropIndicatorSize}.
3301
+ * Sets a new value for property {@link #setDropIndicatorSize dropIndicatorSize}.
3247
3302
  *
3248
3303
  * A function which will define the desired drop indicator size. The drop indicator shows the user how the
3249
- * grid will rearrange after drop.
3250
- *
3251
- * Use when custom size needs to be defined. For example when an item is dragged from outside a grid and
3252
- * is dropped over the grid.
3304
+ * grid will rearrange after drop. Use when custom size needs to be defined. For example when an item is
3305
+ * dragged from outside a grid and is dropped over the grid.
3253
3306
  *
3254
3307
  * If not specified or if the function returns `null`, the indicator size will be calculated automatically.
3255
3308
  *
3256
- * This callback will be called when the indicator is displayed, that happens during the drag over movement.
3309
+ * This callback will be called when the indicator is displayed, which happens during the drag over movement.
3257
3310
  *
3258
- * The callback receives `draggedControl` as parameter and must return an object of type `{rows: ,
3259
- * columns: }` or `null`.
3311
+ * The callback receives `draggedControl` as parameter and must return an object of type `{rows: int, columns:
3312
+ * int}` or `null`.
3260
3313
  *
3261
3314
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3262
3315
  *
@@ -3266,7 +3319,15 @@ declare module "sap/f/dnd/GridDropInfo" {
3266
3319
  /**
3267
3320
  * New value for property `dropIndicatorSize`
3268
3321
  */
3269
- fnDropIndicatorSize: Function
3322
+ fnDropIndicatorSize?:
3323
+ | ((
3324
+ p1: Control
3325
+ ) => {
3326
+ rows: int;
3327
+
3328
+ columns: int;
3329
+ })
3330
+ | null
3270
3331
  ): this;
3271
3332
  }
3272
3333
 
@@ -3280,10 +3341,10 @@ declare module "sap/f/dnd/GridDropInfo" {
3280
3341
  *
3281
3342
  * If not specified or if the function returns `null`, the indicator size will be calculated automatically.
3282
3343
  *
3283
- * This callback will be called when the indicator is displayed, that happens during the drag over movement.
3344
+ * This callback will be called when the indicator is displayed, which happens during the drag over movement.
3284
3345
  *
3285
- * The callback receives `draggedControl` as parameter and must return an object of type `{rows: ,
3286
- * columns: }` or `null`.
3346
+ * The callback receives `draggedControl` as parameter and must return an object of type `{rows: int, columns:
3347
+ * int}` or `null`.
3287
3348
  */
3288
3349
  dropIndicatorSize?: Function | PropertyBindingInfo | `{${string}}`;
3289
3350
  }
@@ -5971,7 +6032,7 @@ declare module "sap/f/FlexibleColumnLayout" {
5971
6032
  /**
5972
6033
  * @SINCE 1.46
5973
6034
  *
5974
- * Implements the master-detail-detail paradigm by displaying up to three pages in separate columns.
6035
+ * Implements the list-detail-detail paradigm by displaying up to three pages in separate columns.
5975
6036
  *
5976
6037
  * Overview:
5977
6038
  *
@@ -8621,10 +8682,10 @@ declare module "sap/f/FlexibleColumnLayoutSemanticHelper" {
8621
8682
  * them should lead.
8622
8683
  *
8623
8684
  * Calling `getNextUIState(2)` will return information about the expected layout and action buttons if the
8624
- * application should display three views (master-detail-detail), based on the current state.
8685
+ * application should display three views (list-detail-detail), based on the current state.
8625
8686
  *
8626
8687
  * Similarly, calling `getNextUIState(0)` will return information about the expected layout and action buttons
8627
- * if the application should display the initial view only (master), based on the current state.
8688
+ * if the application should display the initial view only (list), based on the current state.
8628
8689
  *
8629
8690
  * For more information, see {@link sap.f.FlexibleColumnLayoutSemanticHelper#getCurrentUIState} and {@link
8630
8691
  * sap.f.FlexibleColumnLayoutSemanticHelper#getNextUIState}
@@ -8740,7 +8801,7 @@ declare module "sap/f/FlexibleColumnLayoutSemanticHelper" {
8740
8801
  */
8741
8802
  getNextUIState(
8742
8803
  /**
8743
- * the view level that should be represented. 0 means initial (master only), 1 - master-detail, 2 - master-detail-detail,
8804
+ * the view level that should be represented. 0 means initial (list only), 1 - list-detail, 2 - list-detail-detail,
8744
8805
  * 3 and above - subsequent views
8745
8806
  */
8746
8807
  iNextLevel: int
@@ -17562,6 +17623,8 @@ declare module "sap/f/ShellBar" {
17562
17623
 
17563
17624
  import Button from "sap/m/Button";
17564
17625
 
17626
+ import { BarContexts } from "sap/m/BarInPageEnabler";
17627
+
17565
17628
  import { URI } from "sap/ui/core/library";
17566
17629
 
17567
17630
  import Menu from "sap/m/Menu";
@@ -18379,7 +18442,7 @@ declare module "sap/f/ShellBar" {
18379
18442
  *
18380
18443
  * @returns with all available contexts
18381
18444
  */
18382
- getContext(): Object;
18445
+ getContext(): BarContexts;
18383
18446
  /**
18384
18447
  * Gets current value of property {@link #getHomeIcon homeIcon}.
18385
18448
  *
@@ -18950,12 +19013,10 @@ declare module "sap/f/SidePanel" {
18950
19013
 
18951
19014
  /**
18952
19015
  * @SINCE 1.107
18953
- * @EXPERIMENTAL (since 1.107) - This class is experimental and provides only limited functionality. Also
18954
- * the API might be changed in future.
18955
19016
  *
18956
19017
  * Overview:
18957
19018
  *
18958
- * `SidePanel` is a layout control that allows primary and additional content to be displayed by clicking/tapping
19019
+ * `SidePanel` is a layout control that allows primary and additional content to be displayed by choosing
18959
19020
  * the action items from its action bar.
18960
19021
  *
18961
19022
  * Usage:
@@ -18963,8 +19024,8 @@ declare module "sap/f/SidePanel" {
18963
19024
  * Action bar with action items have two states - collapsed and expanded. In collapsed state only icons
18964
19025
  * are displayed, and in expanded state both icons and titles are displayed.
18965
19026
  *
18966
- * Each action item can have a content and click/tap on action item toggles the display of its content.
18967
- * The content can be added to the action item's `content` aggregation, or can be added or changed later.
19027
+ * Each action item can have a content and choose an action item toggles the display of its content. The
19028
+ * content can be added to the action item's `content` aggregation, or can be added or changed later.
18968
19029
  *
18969
19030
  * Each click/tap fires an event, and in the event handler specific content can be added/changed to the
18970
19031
  * `content` aggregation of the clicked/tapped action item or data can be retreived from the same aggregation
@@ -18983,15 +19044,7 @@ declare module "sap/f/SidePanel" {
18983
19044
  * an overflow icon is displayed, and it toggles ON/OFF an overflow menu with the rest of the action items
18984
19045
  * that are not visible at the moment.
18985
19046
  *
18986
- * Screen width > 1440 px
18987
- *
18988
- *
18989
- * - When expanded, the side content shrinks the main content.
18990
- *
18991
- * Screen width <= 1440 px
18992
- *
18993
- *
18994
- * - When expanded, the side content is placed over the main content.
19047
+ * When expanded, the side content shrinks the main content.
18995
19048
  *
18996
19049
  * **On mobile device**
18997
19050
  *
@@ -18999,6 +19052,14 @@ declare module "sap/f/SidePanel" {
18999
19052
  * and when expanded, the side content is displayed above the action bar. If there is not enough room for
19000
19053
  * all action items, the action bar can be swiped to access the rest of the action items.
19001
19054
  *
19055
+ * Resizing:
19056
+ *
19057
+ * Resizing functionality only affects desktop or tablet devices.
19058
+ *
19059
+ * By setting the `sidePanelResizable` property, the expanded side panel can be resized by mouse (by drag
19060
+ * or by double click on resize splitter), by keyboard or by choosing one of three predefined positions
19061
+ * in the side panel's context menu (min, max and default widths)
19062
+ *
19002
19063
  * Keyboard shortcuts:
19003
19064
  *
19004
19065
  *
@@ -19012,6 +19073,22 @@ declare module "sap/f/SidePanel" {
19012
19073
  * opened side content panel to the action items
19013
19074
  * - [F6] / [Shift] + [F6] - Navigate back and forth between main content, side panel and side content
19014
19075
  * groups [Esc] - Close the opened side content panel and set focus back to main content
19076
+ *
19077
+ * If the side panel's `sidePanelResizable` property is set, there is an action item chosen, and the resize
19078
+ * splitter is focused:
19079
+ *
19080
+ *
19081
+ * - [Home] - set the expanded side panel width to the minimum value defined in `sidePanelMinWidth` property
19082
+ *
19083
+ * - [End] - set the expanded side panel width to the maximum value defined in `sidePanelMaxWidth` property
19084
+ *
19085
+ * - [Enter] - set the expanded side panel width to the default value defined in `sidePanelWidth` property
19086
+ *
19087
+ * - [Shift]+[F10] or [Context menu] - show the resize context menu
19088
+ * - [Arrow Left] / [Arrow Right] - increase/decrease the width of the expanded side panel with the regular
19089
+ * step
19090
+ * - [Shift] + [Arrow Left] / [Arrow Right] - increase/decrease the width of the expanded side panel with
19091
+ * the larger step
19015
19092
  */
19016
19093
  export default class SidePanel extends Control {
19017
19094
  /**
@@ -19248,6 +19325,73 @@ declare module "sap/f/SidePanel" {
19248
19325
  * or `null`.
19249
19326
  */
19250
19327
  getSelectedItem(): ID;
19328
+ /**
19329
+ * @SINCE 1.109.0
19330
+ *
19331
+ * Gets current value of property {@link #getSidePanelMaxWidth sidePanelMaxWidth}.
19332
+ *
19333
+ * Determines the maximum side panel width (Side Content width + Action Bar width). **Note:** if the width
19334
+ * is given in percent(%), it is calculated as given percent from the Side Panel parent container width,
19335
+ * otherwise it's calculated in absolute units.
19336
+ *
19337
+ * Default value is `"90%"`.
19338
+ *
19339
+ * @returns Value of property `sidePanelMaxWidth`
19340
+ */
19341
+ getSidePanelMaxWidth(): CSSSize;
19342
+ /**
19343
+ * @SINCE 1.109.0
19344
+ *
19345
+ * Gets current value of property {@link #getSidePanelMinWidth sidePanelMinWidth}.
19346
+ *
19347
+ * Determines the minimum side panel width (Side Content width + Action Bar width). **Note:** if the width
19348
+ * is given in percent(%), it is calculated as given percent from the Side Panel parent container width,
19349
+ * otherwise it's calculated in absolute units.
19350
+ *
19351
+ * Default value is `"15rem"`.
19352
+ *
19353
+ * @returns Value of property `sidePanelMinWidth`
19354
+ */
19355
+ getSidePanelMinWidth(): CSSSize;
19356
+ /**
19357
+ * Gets current value of property {@link #getSidePanelResizable sidePanelResizable}.
19358
+ *
19359
+ * Determines whether the side panel is resizable or fixed. **Note:** setting this property only affects
19360
+ * desktop or tablet devices.
19361
+ *
19362
+ * Default value is `false`.
19363
+ *
19364
+ * @returns Value of property `sidePanelResizable`
19365
+ */
19366
+ getSidePanelResizable(): boolean;
19367
+ /**
19368
+ * @SINCE 1.109.0
19369
+ *
19370
+ * Gets current value of property {@link #getSidePanelResizeLargerStep sidePanelResizeLargerStep}.
19371
+ *
19372
+ * Determines the large step (in pixels) when changing the width of the side panel with the keyboard. **Note:**
19373
+ * the width can be changed by large step with `Shift + Left Arrow` and `Shift + Right Arrow` keys when
19374
+ * the resize splitter is focused.
19375
+ *
19376
+ * Default value is `100`.
19377
+ *
19378
+ * @returns Value of property `sidePanelResizeLargerStep`
19379
+ */
19380
+ getSidePanelResizeLargerStep(): int;
19381
+ /**
19382
+ * @SINCE 1.109.0
19383
+ *
19384
+ * Gets current value of property {@link #getSidePanelResizeStep sidePanelResizeStep}.
19385
+ *
19386
+ * Determines the step (in pixels) when changing the width of the side panel with the keyboard. **Note:**
19387
+ * the width can be changed by this step with `Left Arrow` and `Right Arrow` keys when the resize splitter
19388
+ * is focused.
19389
+ *
19390
+ * Default value is `10`.
19391
+ *
19392
+ * @returns Value of property `sidePanelResizeStep`
19393
+ */
19394
+ getSidePanelResizeStep(): int;
19251
19395
  /**
19252
19396
  * Gets current value of property {@link #getSidePanelWidth sidePanelWidth}.
19253
19397
  *
@@ -19391,23 +19535,106 @@ declare module "sap/f/SidePanel" {
19391
19535
  sAriaLabel?: string
19392
19536
  ): this;
19393
19537
  /**
19394
- * Sets a new value for property {@link #getSidePanelWidth sidePanelWidth}.
19538
+ * @SINCE 1.109.0
19395
19539
  *
19396
- * Determines the side panel width (Side Content width + Action Bar width). **Note:** if the width is given
19397
- * in percent(%), it is calculated as given percent from the Side Panel parent container width, otherwise
19398
- * it's calculated in absolute units.
19540
+ * Sets a new value for property {@link #getSidePanelMaxWidth sidePanelMaxWidth}.
19541
+ *
19542
+ * Determines the maximum side panel width (Side Content width + Action Bar width). **Note:** if the width
19543
+ * is given in percent(%), it is calculated as given percent from the Side Panel parent container width,
19544
+ * otherwise it's calculated in absolute units.
19399
19545
  *
19400
19546
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
19401
19547
  *
19402
- * Default value is `"20rem"`.
19548
+ * Default value is `"90%"`.
19549
+ *
19550
+ * @returns Reference to `this` in order to allow method chaining
19551
+ */
19552
+ setSidePanelMaxWidth(
19553
+ /**
19554
+ * New value for property `sidePanelMaxWidth`
19555
+ */
19556
+ sSidePanelMaxWidth?: CSSSize
19557
+ ): this;
19558
+ /**
19559
+ * @SINCE 1.109.0
19560
+ *
19561
+ * Sets a new value for property {@link #getSidePanelMinWidth sidePanelMinWidth}.
19562
+ *
19563
+ * Determines the minimum side panel width (Side Content width + Action Bar width). **Note:** if the width
19564
+ * is given in percent(%), it is calculated as given percent from the Side Panel parent container width,
19565
+ * otherwise it's calculated in absolute units.
19566
+ *
19567
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
19568
+ *
19569
+ * Default value is `"15rem"`.
19570
+ *
19571
+ * @returns Reference to `this` in order to allow method chaining
19572
+ */
19573
+ setSidePanelMinWidth(
19574
+ /**
19575
+ * New value for property `sidePanelMinWidth`
19576
+ */
19577
+ sSidePanelMinWidth?: CSSSize
19578
+ ): this;
19579
+ /**
19580
+ * Sets a new value for property {@link #getSidePanelResizable sidePanelResizable}.
19581
+ *
19582
+ * Determines whether the side panel is resizable or fixed. **Note:** setting this property only affects
19583
+ * desktop or tablet devices.
19584
+ *
19585
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
19586
+ *
19587
+ * Default value is `false`.
19403
19588
  *
19404
19589
  * @returns Reference to `this` in order to allow method chaining
19405
19590
  */
19406
- setSidePanelWidth(
19591
+ setSidePanelResizable(
19407
19592
  /**
19408
- * New value for property `sidePanelWidth`
19593
+ * New value for property `sidePanelResizable`
19409
19594
  */
19410
- sSidePanelWidth?: CSSSize
19595
+ bSidePanelResizable?: boolean
19596
+ ): this;
19597
+ /**
19598
+ * @SINCE 1.109.0
19599
+ *
19600
+ * Sets a new value for property {@link #getSidePanelResizeLargerStep sidePanelResizeLargerStep}.
19601
+ *
19602
+ * Determines the large step (in pixels) when changing the width of the side panel with the keyboard. **Note:**
19603
+ * the width can be changed by large step with `Shift + Left Arrow` and `Shift + Right Arrow` keys when
19604
+ * the resize splitter is focused.
19605
+ *
19606
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
19607
+ *
19608
+ * Default value is `100`.
19609
+ *
19610
+ * @returns Reference to `this` in order to allow method chaining
19611
+ */
19612
+ setSidePanelResizeLargerStep(
19613
+ /**
19614
+ * New value for property `sidePanelResizeLargerStep`
19615
+ */
19616
+ iSidePanelResizeLargerStep?: int
19617
+ ): this;
19618
+ /**
19619
+ * @SINCE 1.109.0
19620
+ *
19621
+ * Sets a new value for property {@link #getSidePanelResizeStep sidePanelResizeStep}.
19622
+ *
19623
+ * Determines the step (in pixels) when changing the width of the side panel with the keyboard. **Note:**
19624
+ * the width can be changed by this step with `Left Arrow` and `Right Arrow` keys when the resize splitter
19625
+ * is focused.
19626
+ *
19627
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
19628
+ *
19629
+ * Default value is `10`.
19630
+ *
19631
+ * @returns Reference to `this` in order to allow method chaining
19632
+ */
19633
+ setSidePanelResizeStep(
19634
+ /**
19635
+ * New value for property `sidePanelResizeStep`
19636
+ */
19637
+ iSidePanelResizeStep?: int
19411
19638
  ): this;
19412
19639
  }
19413
19640
 
@@ -19422,6 +19649,12 @@ declare module "sap/f/SidePanel" {
19422
19649
  */
19423
19650
  ariaLabel?: string | PropertyBindingInfo;
19424
19651
 
19652
+ /**
19653
+ * Determines whether the side panel is resizable or fixed. **Note:** setting this property only affects
19654
+ * desktop or tablet devices.
19655
+ */
19656
+ sidePanelResizable?: boolean | PropertyBindingInfo | `{${string}}`;
19657
+
19425
19658
  /**
19426
19659
  * Determines the side panel width (Side Content width + Action Bar width). **Note:** if the width is given
19427
19660
  * in percent(%), it is calculated as given percent from the Side Panel parent container width, otherwise
@@ -19429,6 +19662,42 @@ declare module "sap/f/SidePanel" {
19429
19662
  */
19430
19663
  sidePanelWidth?: CSSSize | PropertyBindingInfo | `{${string}}`;
19431
19664
 
19665
+ /**
19666
+ * @SINCE 1.109.0
19667
+ *
19668
+ * Determines the minimum side panel width (Side Content width + Action Bar width). **Note:** if the width
19669
+ * is given in percent(%), it is calculated as given percent from the Side Panel parent container width,
19670
+ * otherwise it's calculated in absolute units.
19671
+ */
19672
+ sidePanelMinWidth?: CSSSize | PropertyBindingInfo | `{${string}}`;
19673
+
19674
+ /**
19675
+ * @SINCE 1.109.0
19676
+ *
19677
+ * Determines the maximum side panel width (Side Content width + Action Bar width). **Note:** if the width
19678
+ * is given in percent(%), it is calculated as given percent from the Side Panel parent container width,
19679
+ * otherwise it's calculated in absolute units.
19680
+ */
19681
+ sidePanelMaxWidth?: CSSSize | PropertyBindingInfo | `{${string}}`;
19682
+
19683
+ /**
19684
+ * @SINCE 1.109.0
19685
+ *
19686
+ * Determines the step (in pixels) when changing the width of the side panel with the keyboard. **Note:**
19687
+ * the width can be changed by this step with `Left Arrow` and `Right Arrow` keys when the resize splitter
19688
+ * is focused.
19689
+ */
19690
+ sidePanelResizeStep?: int | PropertyBindingInfo | `{${string}}`;
19691
+
19692
+ /**
19693
+ * @SINCE 1.109.0
19694
+ *
19695
+ * Determines the large step (in pixels) when changing the width of the side panel with the keyboard. **Note:**
19696
+ * the width can be changed by large step with `Shift + Left Arrow` and `Shift + Right Arrow` keys when
19697
+ * the resize splitter is focused.
19698
+ */
19699
+ sidePanelResizeLargerStep?: int | PropertyBindingInfo | `{${string}}`;
19700
+
19432
19701
  /**
19433
19702
  * The list of controls for the main content.
19434
19703
  */
@@ -19480,8 +19749,6 @@ declare module "sap/f/SidePanelItem" {
19480
19749
 
19481
19750
  /**
19482
19751
  * @SINCE 1.107
19483
- * @EXPERIMENTAL (since 1.107) - This class is experimental and provides only limited functionality. Also
19484
- * the API might be changed in future.
19485
19752
  *
19486
19753
  * Overview:
19487
19754
  *