@openui5/types 1.114.3 → 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 +72 -2
- 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 +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 -1
- 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 module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -5182,7 +5182,7 @@ declare module "sap/m/App" {
|
|
|
5182
5182
|
declare module "sap/m/Avatar" {
|
|
5183
5183
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
5184
5184
|
|
|
5185
|
-
import { ID, aria, URI, CSSSize } from "sap/ui/core/library";
|
|
5185
|
+
import { ID, aria, URI, ValueState, CSSSize } from "sap/ui/core/library";
|
|
5186
5186
|
|
|
5187
5187
|
import Event from "sap/ui/base/Event";
|
|
5188
5188
|
|
|
@@ -5481,6 +5481,16 @@ declare module "sap/m/Avatar" {
|
|
|
5481
5481
|
* @returns Value of property `badgeTooltip`
|
|
5482
5482
|
*/
|
|
5483
5483
|
getBadgeTooltip(): string;
|
|
5484
|
+
/**
|
|
5485
|
+
* Gets current value of property {@link #getBadgeValueState badgeValueState}.
|
|
5486
|
+
*
|
|
5487
|
+
* Visualizes the validation state of the badge, e.g. `Error`, `Warning`, `Success`, `Information`.
|
|
5488
|
+
*
|
|
5489
|
+
* Default value is `None`.
|
|
5490
|
+
*
|
|
5491
|
+
* @returns Value of property `badgeValueState`
|
|
5492
|
+
*/
|
|
5493
|
+
getBadgeValueState(): ValueState | keyof typeof ValueState;
|
|
5484
5494
|
/**
|
|
5485
5495
|
* Gets current value of property {@link #getCustomDisplaySize customDisplaySize}.
|
|
5486
5496
|
*
|
|
@@ -5548,6 +5558,17 @@ declare module "sap/m/Avatar" {
|
|
|
5548
5558
|
* @returns Value of property `displaySize`
|
|
5549
5559
|
*/
|
|
5550
5560
|
getDisplaySize(): AvatarSize | keyof typeof AvatarSize;
|
|
5561
|
+
/**
|
|
5562
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
5563
|
+
*
|
|
5564
|
+
* Determines whether the `Avatar` is enabled (default is set to `true`). A disabled `Button` has different
|
|
5565
|
+
* colors depending on the {@link sap.m.AvatarColor AvatarColor}.
|
|
5566
|
+
*
|
|
5567
|
+
* Default value is `true`.
|
|
5568
|
+
*
|
|
5569
|
+
* @returns Value of property `enabled`
|
|
5570
|
+
*/
|
|
5571
|
+
getEnabled(): boolean;
|
|
5551
5572
|
/**
|
|
5552
5573
|
* Gets current value of property {@link #getFallbackIcon fallbackIcon}.
|
|
5553
5574
|
*
|
|
@@ -5720,6 +5741,23 @@ declare module "sap/m/Avatar" {
|
|
|
5720
5741
|
*/
|
|
5721
5742
|
sBadgeTooltip?: string
|
|
5722
5743
|
): this;
|
|
5744
|
+
/**
|
|
5745
|
+
* Sets a new value for property {@link #getBadgeValueState badgeValueState}.
|
|
5746
|
+
*
|
|
5747
|
+
* Visualizes the validation state of the badge, e.g. `Error`, `Warning`, `Success`, `Information`.
|
|
5748
|
+
*
|
|
5749
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5750
|
+
*
|
|
5751
|
+
* Default value is `None`.
|
|
5752
|
+
*
|
|
5753
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5754
|
+
*/
|
|
5755
|
+
setBadgeValueState(
|
|
5756
|
+
/**
|
|
5757
|
+
* New value for property `badgeValueState`
|
|
5758
|
+
*/
|
|
5759
|
+
sBadgeValueState?: ValueState | keyof typeof ValueState
|
|
5760
|
+
): this;
|
|
5723
5761
|
/**
|
|
5724
5762
|
* Sets a new value for property {@link #getCustomDisplaySize customDisplaySize}.
|
|
5725
5763
|
*
|
|
@@ -5824,6 +5862,24 @@ declare module "sap/m/Avatar" {
|
|
|
5824
5862
|
*/
|
|
5825
5863
|
sDisplaySize?: AvatarSize | keyof typeof AvatarSize
|
|
5826
5864
|
): this;
|
|
5865
|
+
/**
|
|
5866
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
5867
|
+
*
|
|
5868
|
+
* Determines whether the `Avatar` is enabled (default is set to `true`). A disabled `Button` has different
|
|
5869
|
+
* colors depending on the {@link sap.m.AvatarColor AvatarColor}.
|
|
5870
|
+
*
|
|
5871
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5872
|
+
*
|
|
5873
|
+
* Default value is `true`.
|
|
5874
|
+
*
|
|
5875
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5876
|
+
*/
|
|
5877
|
+
setEnabled(
|
|
5878
|
+
/**
|
|
5879
|
+
* New value for property `enabled`
|
|
5880
|
+
*/
|
|
5881
|
+
bEnabled?: boolean
|
|
5882
|
+
): this;
|
|
5827
5883
|
/**
|
|
5828
5884
|
* Sets a new value for property {@link #getFallbackIcon fallbackIcon}.
|
|
5829
5885
|
*
|
|
@@ -6037,6 +6093,20 @@ declare module "sap/m/Avatar" {
|
|
|
6037
6093
|
| PropertyBindingInfo
|
|
6038
6094
|
| `{${string}}`;
|
|
6039
6095
|
|
|
6096
|
+
/**
|
|
6097
|
+
* Visualizes the validation state of the badge, e.g. `Error`, `Warning`, `Success`, `Information`.
|
|
6098
|
+
*/
|
|
6099
|
+
badgeValueState?:
|
|
6100
|
+
| (ValueState | keyof typeof ValueState)
|
|
6101
|
+
| PropertyBindingInfo
|
|
6102
|
+
| `{${string}}`;
|
|
6103
|
+
|
|
6104
|
+
/**
|
|
6105
|
+
* Determines whether the `Avatar` is enabled (default is set to `true`). A disabled `Button` has different
|
|
6106
|
+
* colors depending on the {@link sap.m.AvatarColor AvatarColor}.
|
|
6107
|
+
*/
|
|
6108
|
+
enabled?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6109
|
+
|
|
6040
6110
|
/**
|
|
6041
6111
|
* A `sap.m.LightBox` instance, that will be opened automatically when the user interacts with the `Avatar`
|
|
6042
6112
|
* control.
|
package/types/sap.tnt.d.ts
CHANGED
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
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