@openui5/ts-types 1.113.0 → 1.114.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.113.0",
3
+ "version": "1.114.0",
4
4
  "description": "OpenUI5 TypeScript Definitions",
5
5
  "homepage": "https://openui5.org",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.113.0
1
+ // For Library Version: 1.114.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -8435,6 +8435,14 @@ declare namespace sap {
8435
8435
  | sap.ui.base.ManagedObject.PropertyBindingInfo
8436
8436
  | `{${string}}`;
8437
8437
 
8438
+ /**
8439
+ * Defines where to place the side panel position.
8440
+ */
8441
+ sidePanelPosition?:
8442
+ | sap.f.SidePanelPosition
8443
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
8444
+ | `{${string}}`;
8445
+
8438
8446
  /**
8439
8447
  * The list of controls for the main content.
8440
8448
  */
@@ -18687,6 +18695,16 @@ declare namespace sap {
18687
18695
  * @returns Value of property `sidePanelMinWidth`
18688
18696
  */
18689
18697
  getSidePanelMinWidth(): sap.ui.core.CSSSize;
18698
+ /**
18699
+ * Gets current value of property {@link #getSidePanelPosition sidePanelPosition}.
18700
+ *
18701
+ * Defines where to place the side panel position.
18702
+ *
18703
+ * Default value is `Right`.
18704
+ *
18705
+ * @returns Value of property `sidePanelPosition`
18706
+ */
18707
+ getSidePanelPosition(): sap.f.SidePanelPosition;
18690
18708
  /**
18691
18709
  * Gets current value of property {@link #getSidePanelResizable sidePanelResizable}.
18692
18710
  *
@@ -18910,6 +18928,23 @@ declare namespace sap {
18910
18928
  */
18911
18929
  sSidePanelMinWidth?: sap.ui.core.CSSSize
18912
18930
  ): this;
18931
+ /**
18932
+ * Sets a new value for property {@link #getSidePanelPosition sidePanelPosition}.
18933
+ *
18934
+ * Defines where to place the side panel position.
18935
+ *
18936
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
18937
+ *
18938
+ * Default value is `Right`.
18939
+ *
18940
+ * @returns Reference to `this` in order to allow method chaining
18941
+ */
18942
+ setSidePanelPosition(
18943
+ /**
18944
+ * New value for property `sidePanelPosition`
18945
+ */
18946
+ sSidePanelPosition?: sap.f.SidePanelPosition
18947
+ ): this;
18913
18948
  /**
18914
18949
  * Sets a new value for property {@link #getSidePanelResizable sidePanelResizable}.
18915
18950
  *
@@ -19308,6 +19343,21 @@ declare namespace sap {
19308
19343
  */
19309
19344
  Up = "Up",
19310
19345
  }
19346
+ /**
19347
+ * @SINCE 1.104
19348
+ *
19349
+ * Enumeration for different SidePanel position.
19350
+ */
19351
+ enum SidePanelPosition {
19352
+ /**
19353
+ * The position is left.
19354
+ */
19355
+ Left = "Left",
19356
+ /**
19357
+ * The position is right.
19358
+ */
19359
+ Right = "Right",
19360
+ }
19311
19361
  /**
19312
19362
  * @SINCE 1.69
19313
19363
  * @deprecated (since 1.73) - Use the {@link sap.m.AvatarColor} instead.