@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/types",
3
- "version": "1.114.3",
3
+ "version": "1.114.4",
4
4
  "description": "OpenUI5 TypeScript Definitions",
5
5
  "homepage": "https://sap.github.io/ui5-typescript",
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.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -280,7 +280,7 @@ declare namespace sap {
280
280
  }
281
281
  }
282
282
 
283
- // For Library Version: 1.114.3
283
+ // For Library Version: 1.114.4
284
284
 
285
285
  declare module "sap/base/assert" {
286
286
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare module "sap/ui/integration/library" {
4
4
  import { URI } from "sap/ui/core/library";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare module "sap/ui/layout/library" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare module "sap/ui/mdc/enum/FilterBarValidationStatus" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**