@openui5/ts-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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/ts-types",
3
- "version": "1.114.3",
3
+ "version": "1.114.5",
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.5
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.5
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.5
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.5
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.5
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.5
284
284
 
285
285
  declare module "sap/base/assert" {
286
286
  /**
@@ -47671,10 +47671,10 @@ declare namespace sap {
47671
47671
  * is converted to an integer (as `number`). May cause truncation of decimals and overruns. Supported by
47672
47672
  * all numeric types. `float`The value is converted to a `number`. Supported
47673
47673
  * by all numeric types. `object`The value is converted to a `Date` so that it
47674
- * can be displayed in a date or time picker. Supported by {@link sap.ui.model.odata.type.Date} and {@link
47675
- * sap.ui.model.odata.type.DateTimeOffset} since 1.69.0. `any`A technical format.
47676
- * The value is simply passed through. Only supported by `format`, not by `parse`. Supported by all types.
47677
- *
47674
+ * can be displayed in a date or time picker. Supported by {@link sap.ui.model.odata.type.Date}, {@link
47675
+ * sap.ui.model.odata.type.DateTime} and {@link sap.ui.model.odata.type.DateTimeOffset} since 1.69.0.
47676
+ * `any`A technical format. The value is simply passed through. Only supported by `format`,
47677
+ * not by `parse`. Supported by all types.
47678
47678
  *
47679
47679
  * All constraints relevant for OData V2 may be given as strings besides their natural types (e.g. `nullable
47680
47680
  * : "false"` or `maxLength : "10"`). This makes the life of template processors easier, but is not needed
@@ -60761,6 +60761,17 @@ declare namespace sap {
60761
60761
  */
60762
60762
  bReturnSuccess?: boolean
60763
60763
  ): this;
60764
+ /**
60765
+ * @SINCE 1.98.0
60766
+ *
60767
+ * Returns all current contexts of this list binding in no special order. Just like {@link #getCurrentContexts},
60768
+ * this method does not request any data from a back end and does not change the binding's state. In contrast
60769
+ * to {@link #getCurrentContexts}, it does not only return those contexts that were last requested by a
60770
+ * control, but all contexts that are currently available in the binding.
60771
+ *
60772
+ * @returns All current contexts of this list binding, in no special order
60773
+ */
60774
+ getAllCurrentContexts(): sap.ui.model.odata.v2.Context[];
60764
60775
  /**
60765
60776
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
60766
60777
  *
@@ -64132,8 +64143,8 @@ declare namespace sap {
64132
64143
  /**
64133
64144
  * Parses the given value to an array of two values representing the start date and the end date of the
64134
64145
  * interval, where the time part of the start date is 0 and the time part of end date is the end of day
64135
- * (23:59:59.999). If the `singleIntervalValue` format option is used, the second entry is `null` if no
64136
- * end date is given.
64146
+ * (23:59:59). If the `singleIntervalValue` format option is used, the second entry is `null` if no end
64147
+ * date is given.
64137
64148
  *
64138
64149
  * @returns The start and the end date of the interval. The resulting values in the array are:
64139
64150
  * - Two `Date` or `module:sap/ui/core/date/UI5Date` objects, or
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.5
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.3
1
+ // For Library Version: 1.114.5
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.5
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.5
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.5
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.5
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.5
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.5
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.5
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.5
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.5
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.5
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.5
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.5
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.5
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.5
2
2
 
3
3
  declare namespace sap {
4
4
  /**