@openui5/types 1.114.3 → 1.114.5
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 +16 -3
- 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.5
|
|
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
|
@@ -280,7 +280,7 @@ declare namespace sap {
|
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
282
|
|
|
283
|
-
// For Library Version: 1.114.
|
|
283
|
+
// For Library Version: 1.114.5
|
|
284
284
|
|
|
285
285
|
declare module "sap/base/assert" {
|
|
286
286
|
/**
|
|
@@ -51419,6 +51419,8 @@ declare module "sap/ui/model/odata/ODataListBinding" {
|
|
|
51419
51419
|
|
|
51420
51420
|
import FilterType from "sap/ui/model/FilterType";
|
|
51421
51421
|
|
|
51422
|
+
import Context1 from "sap/ui/model/odata/v2/Context";
|
|
51423
|
+
|
|
51422
51424
|
import Metadata from "sap/ui/base/Metadata";
|
|
51423
51425
|
|
|
51424
51426
|
import Sorter from "sap/ui/model/Sorter";
|
|
@@ -51526,6 +51528,17 @@ declare module "sap/ui/model/odata/ODataListBinding" {
|
|
|
51526
51528
|
*/
|
|
51527
51529
|
bReturnSuccess?: boolean
|
|
51528
51530
|
): this;
|
|
51531
|
+
/**
|
|
51532
|
+
* @SINCE 1.98.0
|
|
51533
|
+
*
|
|
51534
|
+
* Returns all current contexts of this list binding in no special order. Just like {@link #getCurrentContexts},
|
|
51535
|
+
* this method does not request any data from a back end and does not change the binding's state. In contrast
|
|
51536
|
+
* to {@link #getCurrentContexts}, it does not only return those contexts that were last requested by a
|
|
51537
|
+
* control, but all contexts that are currently available in the binding.
|
|
51538
|
+
*
|
|
51539
|
+
* @returns All current contexts of this list binding, in no special order
|
|
51540
|
+
*/
|
|
51541
|
+
getAllCurrentContexts(): Context1[];
|
|
51529
51542
|
/**
|
|
51530
51543
|
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
51531
51544
|
*
|
|
@@ -68611,8 +68624,8 @@ declare module "sap/ui/model/type/DateInterval" {
|
|
|
68611
68624
|
/**
|
|
68612
68625
|
* Parses the given value to an array of two values representing the start date and the end date of the
|
|
68613
68626
|
* interval, where the time part of the start date is 0 and the time part of end date is the end of day
|
|
68614
|
-
* (23:59:59
|
|
68615
|
-
*
|
|
68627
|
+
* (23:59:59). If the `singleIntervalValue` format option is used, the second entry is `null` if no end
|
|
68628
|
+
* date is given.
|
|
68616
68629
|
*
|
|
68617
68630
|
* @returns The start and the end date of the interval. The resulting values in the array are:
|
|
68618
68631
|
* - Two `Date` or `module:sap/ui/core/date/UI5Date` objects, or
|
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