@openui5/types 1.113.0 → 1.114.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.
- package/package.json +1 -1
- package/types/sap.f.d.ts +53 -1
- package/types/sap.m.d.ts +534 -1000
- 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 +1877 -1428
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -3
- package/types/sap.ui.integration.d.ts +2459 -2349
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +89 -7
- 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 +1 -1
- package/types/sap.ui.table.d.ts +35 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +179 -141
- 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.114.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
export interface IToolHeader {
|
|
@@ -313,6 +313,21 @@ declare module "sap/f/library" {
|
|
|
313
313
|
*/
|
|
314
314
|
Up = "Up",
|
|
315
315
|
}
|
|
316
|
+
/**
|
|
317
|
+
* @SINCE 1.104
|
|
318
|
+
*
|
|
319
|
+
* Enumeration for different SidePanel position.
|
|
320
|
+
*/
|
|
321
|
+
export enum SidePanelPosition {
|
|
322
|
+
/**
|
|
323
|
+
* The position is left.
|
|
324
|
+
*/
|
|
325
|
+
Left = "Left",
|
|
326
|
+
/**
|
|
327
|
+
* The position is right.
|
|
328
|
+
*/
|
|
329
|
+
Right = "Right",
|
|
330
|
+
}
|
|
316
331
|
|
|
317
332
|
export namespace cards {
|
|
318
333
|
/**
|
|
@@ -19036,6 +19051,8 @@ declare module "sap/f/SidePanel" {
|
|
|
19036
19051
|
|
|
19037
19052
|
import { ID, CSSSize } from "sap/ui/core/library";
|
|
19038
19053
|
|
|
19054
|
+
import { SidePanelPosition } from "sap/f/library";
|
|
19055
|
+
|
|
19039
19056
|
import {
|
|
19040
19057
|
PropertyBindingInfo,
|
|
19041
19058
|
AggregationBindingInfo,
|
|
@@ -19385,6 +19402,16 @@ declare module "sap/f/SidePanel" {
|
|
|
19385
19402
|
* @returns Value of property `sidePanelMinWidth`
|
|
19386
19403
|
*/
|
|
19387
19404
|
getSidePanelMinWidth(): CSSSize;
|
|
19405
|
+
/**
|
|
19406
|
+
* Gets current value of property {@link #getSidePanelPosition sidePanelPosition}.
|
|
19407
|
+
*
|
|
19408
|
+
* Defines where to place the side panel position.
|
|
19409
|
+
*
|
|
19410
|
+
* Default value is `Right`.
|
|
19411
|
+
*
|
|
19412
|
+
* @returns Value of property `sidePanelPosition`
|
|
19413
|
+
*/
|
|
19414
|
+
getSidePanelPosition(): SidePanelPosition | keyof typeof SidePanelPosition;
|
|
19388
19415
|
/**
|
|
19389
19416
|
* Gets current value of property {@link #getSidePanelResizable sidePanelResizable}.
|
|
19390
19417
|
*
|
|
@@ -19608,6 +19635,23 @@ declare module "sap/f/SidePanel" {
|
|
|
19608
19635
|
*/
|
|
19609
19636
|
sSidePanelMinWidth?: CSSSize
|
|
19610
19637
|
): this;
|
|
19638
|
+
/**
|
|
19639
|
+
* Sets a new value for property {@link #getSidePanelPosition sidePanelPosition}.
|
|
19640
|
+
*
|
|
19641
|
+
* Defines where to place the side panel position.
|
|
19642
|
+
*
|
|
19643
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
19644
|
+
*
|
|
19645
|
+
* Default value is `Right`.
|
|
19646
|
+
*
|
|
19647
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
19648
|
+
*/
|
|
19649
|
+
setSidePanelPosition(
|
|
19650
|
+
/**
|
|
19651
|
+
* New value for property `sidePanelPosition`
|
|
19652
|
+
*/
|
|
19653
|
+
sSidePanelPosition?: SidePanelPosition | keyof typeof SidePanelPosition
|
|
19654
|
+
): this;
|
|
19611
19655
|
/**
|
|
19612
19656
|
* Sets a new value for property {@link #getSidePanelResizable sidePanelResizable}.
|
|
19613
19657
|
*
|
|
@@ -19730,6 +19774,14 @@ declare module "sap/f/SidePanel" {
|
|
|
19730
19774
|
*/
|
|
19731
19775
|
sidePanelResizeLargerStep?: int | PropertyBindingInfo | `{${string}}`;
|
|
19732
19776
|
|
|
19777
|
+
/**
|
|
19778
|
+
* Defines where to place the side panel position.
|
|
19779
|
+
*/
|
|
19780
|
+
sidePanelPosition?:
|
|
19781
|
+
| (SidePanelPosition | keyof typeof SidePanelPosition)
|
|
19782
|
+
| PropertyBindingInfo
|
|
19783
|
+
| `{${string}}`;
|
|
19784
|
+
|
|
19733
19785
|
/**
|
|
19734
19786
|
* The list of controls for the main content.
|
|
19735
19787
|
*/
|