@openui5/ts-types 1.114.2 → 1.114.4
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 +1 -1
- package/types/sap.m.d.ts +74 -1
- package/types/sap.tnt.d.ts +49 -13
- 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 +1 -1
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -14
- package/types/sap.ui.mdc.d.ts +1 -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 +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- 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
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.114.
|
|
1
|
+
// For Library Version: 1.114.4
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -18148,6 +18148,23 @@ declare namespace sap {
|
|
|
18148
18148
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18149
18149
|
| `{${string}}`;
|
|
18150
18150
|
|
|
18151
|
+
/**
|
|
18152
|
+
* Visualizes the validation state of the badge, e.g. `Error`, `Warning`, `Success`, `Information`.
|
|
18153
|
+
*/
|
|
18154
|
+
badgeValueState?:
|
|
18155
|
+
| sap.ui.core.ValueState
|
|
18156
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18157
|
+
| `{${string}}`;
|
|
18158
|
+
|
|
18159
|
+
/**
|
|
18160
|
+
* Determines whether the `Avatar` is enabled (default is set to `true`). A disabled `Button` has different
|
|
18161
|
+
* colors depending on the {@link sap.m.AvatarColor AvatarColor}.
|
|
18162
|
+
*/
|
|
18163
|
+
enabled?:
|
|
18164
|
+
| boolean
|
|
18165
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18166
|
+
| `{${string}}`;
|
|
18167
|
+
|
|
18151
18168
|
/**
|
|
18152
18169
|
* A `sap.m.LightBox` instance, that will be opened automatically when the user interacts with the `Avatar`
|
|
18153
18170
|
* control.
|
|
@@ -39278,6 +39295,16 @@ declare namespace sap {
|
|
|
39278
39295
|
* @returns Value of property `badgeTooltip`
|
|
39279
39296
|
*/
|
|
39280
39297
|
getBadgeTooltip(): string;
|
|
39298
|
+
/**
|
|
39299
|
+
* Gets current value of property {@link #getBadgeValueState badgeValueState}.
|
|
39300
|
+
*
|
|
39301
|
+
* Visualizes the validation state of the badge, e.g. `Error`, `Warning`, `Success`, `Information`.
|
|
39302
|
+
*
|
|
39303
|
+
* Default value is `None`.
|
|
39304
|
+
*
|
|
39305
|
+
* @returns Value of property `badgeValueState`
|
|
39306
|
+
*/
|
|
39307
|
+
getBadgeValueState(): sap.ui.core.ValueState;
|
|
39281
39308
|
/**
|
|
39282
39309
|
* Gets current value of property {@link #getCustomDisplaySize customDisplaySize}.
|
|
39283
39310
|
*
|
|
@@ -39345,6 +39372,17 @@ declare namespace sap {
|
|
|
39345
39372
|
* @returns Value of property `displaySize`
|
|
39346
39373
|
*/
|
|
39347
39374
|
getDisplaySize(): sap.m.AvatarSize;
|
|
39375
|
+
/**
|
|
39376
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
39377
|
+
*
|
|
39378
|
+
* Determines whether the `Avatar` is enabled (default is set to `true`). A disabled `Button` has different
|
|
39379
|
+
* colors depending on the {@link sap.m.AvatarColor AvatarColor}.
|
|
39380
|
+
*
|
|
39381
|
+
* Default value is `true`.
|
|
39382
|
+
*
|
|
39383
|
+
* @returns Value of property `enabled`
|
|
39384
|
+
*/
|
|
39385
|
+
getEnabled(): boolean;
|
|
39348
39386
|
/**
|
|
39349
39387
|
* Gets current value of property {@link #getFallbackIcon fallbackIcon}.
|
|
39350
39388
|
*
|
|
@@ -39517,6 +39555,23 @@ declare namespace sap {
|
|
|
39517
39555
|
*/
|
|
39518
39556
|
sBadgeTooltip?: string
|
|
39519
39557
|
): this;
|
|
39558
|
+
/**
|
|
39559
|
+
* Sets a new value for property {@link #getBadgeValueState badgeValueState}.
|
|
39560
|
+
*
|
|
39561
|
+
* Visualizes the validation state of the badge, e.g. `Error`, `Warning`, `Success`, `Information`.
|
|
39562
|
+
*
|
|
39563
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
39564
|
+
*
|
|
39565
|
+
* Default value is `None`.
|
|
39566
|
+
*
|
|
39567
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
39568
|
+
*/
|
|
39569
|
+
setBadgeValueState(
|
|
39570
|
+
/**
|
|
39571
|
+
* New value for property `badgeValueState`
|
|
39572
|
+
*/
|
|
39573
|
+
sBadgeValueState?: sap.ui.core.ValueState
|
|
39574
|
+
): this;
|
|
39520
39575
|
/**
|
|
39521
39576
|
* Sets a new value for property {@link #getCustomDisplaySize customDisplaySize}.
|
|
39522
39577
|
*
|
|
@@ -39621,6 +39676,24 @@ declare namespace sap {
|
|
|
39621
39676
|
*/
|
|
39622
39677
|
sDisplaySize?: sap.m.AvatarSize
|
|
39623
39678
|
): this;
|
|
39679
|
+
/**
|
|
39680
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
39681
|
+
*
|
|
39682
|
+
* Determines whether the `Avatar` is enabled (default is set to `true`). A disabled `Button` has different
|
|
39683
|
+
* colors depending on the {@link sap.m.AvatarColor AvatarColor}.
|
|
39684
|
+
*
|
|
39685
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
39686
|
+
*
|
|
39687
|
+
* Default value is `true`.
|
|
39688
|
+
*
|
|
39689
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
39690
|
+
*/
|
|
39691
|
+
setEnabled(
|
|
39692
|
+
/**
|
|
39693
|
+
* New value for property `enabled`
|
|
39694
|
+
*/
|
|
39695
|
+
bEnabled?: boolean
|
|
39696
|
+
): this;
|
|
39624
39697
|
/**
|
|
39625
39698
|
* Sets a new value for property {@link #getFallbackIcon fallbackIcon}.
|
|
39626
39699
|
*
|
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.114.
|
|
1
|
+
// For Library Version: 1.114.4
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -270,6 +270,16 @@ declare namespace sap {
|
|
|
270
270
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
271
271
|
| `{${string}}`;
|
|
272
272
|
|
|
273
|
+
/**
|
|
274
|
+
* @SINCE 1.115
|
|
275
|
+
*
|
|
276
|
+
* Specifies the content background design.
|
|
277
|
+
*/
|
|
278
|
+
contentBackgroundDesign?:
|
|
279
|
+
| sap.m.PageBackgroundDesign
|
|
280
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
281
|
+
| `{${string}}`;
|
|
282
|
+
|
|
273
283
|
/**
|
|
274
284
|
* The control to appear in the header area.
|
|
275
285
|
*/
|
|
@@ -1388,8 +1398,6 @@ declare namespace sap {
|
|
|
1388
1398
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1389
1399
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1390
1400
|
* of the syntax of the settings object.
|
|
1391
|
-
* See:
|
|
1392
|
-
* {@link fiori:https://experience.sap.com/fiori-design-web/side-navigation/ Side Navigation}
|
|
1393
1401
|
*/
|
|
1394
1402
|
constructor(
|
|
1395
1403
|
/**
|
|
@@ -1403,8 +1411,6 @@ declare namespace sap {
|
|
|
1403
1411
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1404
1412
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1405
1413
|
* of the syntax of the settings object.
|
|
1406
|
-
* See:
|
|
1407
|
-
* {@link fiori:https://experience.sap.com/fiori-design-web/side-navigation/ Side Navigation}
|
|
1408
1414
|
*/
|
|
1409
1415
|
constructor(
|
|
1410
1416
|
/**
|
|
@@ -1706,16 +1712,19 @@ declare namespace sap {
|
|
|
1706
1712
|
/**
|
|
1707
1713
|
* @SINCE 1.34
|
|
1708
1714
|
*
|
|
1709
|
-
* The ToolHeader control is a horizontal container that is most commonly used to display buttons,
|
|
1715
|
+
* The ToolHeader control is a horizontal container that is most commonly used to display buttons, texts,
|
|
1710
1716
|
* and other various input controls. Overview: The ToolHeader control is based on {@link sap.m.OverflowToolbar}.
|
|
1711
1717
|
* It contains clearly structured menus of commands that are available across the various apps within the
|
|
1712
1718
|
* same tool layout. Usage:
|
|
1719
|
+
* - This control is specialized for administrative applications. For other types of applications use:
|
|
1720
|
+
* {@link sap.m.Shell}
|
|
1713
1721
|
* - If an app implements side navigation in addition to the tool header menu, the menu icon must be the
|
|
1714
1722
|
* first item on the left-hand side of the tool header.
|
|
1715
1723
|
* - The app menu and the side navigation must not have any dependencies and must work independently.
|
|
1716
|
-
*
|
|
1717
|
-
*
|
|
1718
|
-
* design
|
|
1724
|
+
* Horizon theme specifics: Only the following controls are supported: sap.m.Button, sap.m.Image,
|
|
1725
|
+
* sap.m.Title, sap.m.Text, sap.m.SearchField, sap.m.Avatar. Fiori 3 theme specifics: In Fiori 3 Default
|
|
1726
|
+
* theme the ToolHeader is with dark design unlike most of the other controls. This defines the usage of
|
|
1727
|
+
* limited controls inside it, which will result in good design combination.
|
|
1719
1728
|
* The ToolHeader stylizes the contained controls with the Shell color parameters, to match the dark design
|
|
1720
1729
|
* requirement. However, that's not a dark theme.
|
|
1721
1730
|
*
|
|
@@ -1751,8 +1760,6 @@ declare namespace sap {
|
|
|
1751
1760
|
*
|
|
1752
1761
|
* This class does not have its own settings, but all settings applicable to the base type {@link sap.m.OverflowToolbar#constructor
|
|
1753
1762
|
* sap.m.OverflowToolbar} can be used.
|
|
1754
|
-
* See:
|
|
1755
|
-
* {@link fiori:https://experience.sap.com/fiori-design-web/tool-header/ Tool Header}
|
|
1756
1763
|
*/
|
|
1757
1764
|
constructor(
|
|
1758
1765
|
/**
|
|
@@ -1769,8 +1776,6 @@ declare namespace sap {
|
|
|
1769
1776
|
*
|
|
1770
1777
|
* This class does not have its own settings, but all settings applicable to the base type {@link sap.m.OverflowToolbar#constructor
|
|
1771
1778
|
* sap.m.OverflowToolbar} can be used.
|
|
1772
|
-
* See:
|
|
1773
|
-
* {@link fiori:https://experience.sap.com/fiori-design-web/tool-header/ Tool Header}
|
|
1774
1779
|
*/
|
|
1775
1780
|
constructor(
|
|
1776
1781
|
/**
|
|
@@ -1994,6 +1999,18 @@ declare namespace sap {
|
|
|
1994
1999
|
* @returns Reference to `this` in order to allow method chaining
|
|
1995
2000
|
*/
|
|
1996
2001
|
destroySubHeader(): this;
|
|
2002
|
+
/**
|
|
2003
|
+
* @SINCE 1.115
|
|
2004
|
+
*
|
|
2005
|
+
* Gets current value of property {@link #getContentBackgroundDesign contentBackgroundDesign}.
|
|
2006
|
+
*
|
|
2007
|
+
* Specifies the content background design.
|
|
2008
|
+
*
|
|
2009
|
+
* Default value is `Standard`.
|
|
2010
|
+
*
|
|
2011
|
+
* @returns Value of property `contentBackgroundDesign`
|
|
2012
|
+
*/
|
|
2013
|
+
getContentBackgroundDesign(): sap.m.PageBackgroundDesign;
|
|
1997
2014
|
/**
|
|
1998
2015
|
* Gets content of aggregation {@link #getHeader header}.
|
|
1999
2016
|
*
|
|
@@ -2078,6 +2095,25 @@ declare namespace sap {
|
|
|
2078
2095
|
*/
|
|
2079
2096
|
vMainContent: int | string | sap.ui.core.Control
|
|
2080
2097
|
): sap.ui.core.Control | null;
|
|
2098
|
+
/**
|
|
2099
|
+
* @SINCE 1.115
|
|
2100
|
+
*
|
|
2101
|
+
* Sets a new value for property {@link #getContentBackgroundDesign contentBackgroundDesign}.
|
|
2102
|
+
*
|
|
2103
|
+
* Specifies the content background design.
|
|
2104
|
+
*
|
|
2105
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2106
|
+
*
|
|
2107
|
+
* Default value is `Standard`.
|
|
2108
|
+
*
|
|
2109
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2110
|
+
*/
|
|
2111
|
+
setContentBackgroundDesign(
|
|
2112
|
+
/**
|
|
2113
|
+
* New value for property `contentBackgroundDesign`
|
|
2114
|
+
*/
|
|
2115
|
+
sContentBackgroundDesign?: sap.m.PageBackgroundDesign
|
|
2116
|
+
): this;
|
|
2081
2117
|
/**
|
|
2082
2118
|
* Sets the aggregated {@link #getHeader header}.
|
|
2083
2119
|
*
|
package/types/sap.ui.core.d.ts
CHANGED
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.114.
|
|
1
|
+
// For Library Version: 1.114.4
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -10128,19 +10128,6 @@ declare namespace sap {
|
|
|
10128
10128
|
* Main content controls.
|
|
10129
10129
|
*/
|
|
10130
10130
|
getMainContent(): sap.ui.core.Control[];
|
|
10131
|
-
/**
|
|
10132
|
-
* @SINCE 1.78
|
|
10133
|
-
*
|
|
10134
|
-
* Returns a scroll helper object used to handle scrolling.
|
|
10135
|
-
*
|
|
10136
|
-
* @returns The scroll helper instance
|
|
10137
|
-
*/
|
|
10138
|
-
getScrollDelegate(
|
|
10139
|
-
/**
|
|
10140
|
-
* The control instance that requested the scroll helper
|
|
10141
|
-
*/
|
|
10142
|
-
oControl: sap.ui.core.Control
|
|
10143
|
-
): sap.ui.core.delegate.ScrollEnablement;
|
|
10144
10131
|
/**
|
|
10145
10132
|
* Gets current value of property {@link #getShowMainContent showMainContent}.
|
|
10146
10133
|
*
|
package/types/sap.ui.mdc.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED