@openui5/ts-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/ts-types",
3
- "version": "1.114.3",
3
+ "version": "1.114.4",
4
4
  "description": "OpenUI5 TypeScript Definitions",
5
5
  "homepage": "https://openui5.org",
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 namespace sap {
4
4
  /**
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 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
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare namespace sap {
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 namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -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 namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -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
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.4
2
2
 
3
3
  declare namespace sap {
4
4
  /**