@openui5/ts-types 1.114.9 → 1.114.11

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.9",
3
+ "version": "1.114.11",
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.9
1
+ // For Library Version: 1.114.11
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.9
1
+ // For Library Version: 1.114.11
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -18165,6 +18165,18 @@ declare namespace sap {
18165
18165
  | sap.ui.base.ManagedObject.PropertyBindingInfo
18166
18166
  | `{${string}}`;
18167
18167
 
18168
+ /**
18169
+ * @SINCE 1.120.0
18170
+ *
18171
+ * Determines whether the `Avatar` is active/toggled (default is set to `false`). Active state is meant
18172
+ * to be toggled when user clicks on the `Avatar`. The Active state is only applied, when the `Avatar` has
18173
+ * `press` listeners.
18174
+ */
18175
+ active?:
18176
+ | boolean
18177
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
18178
+ | `{${string}}`;
18179
+
18168
18180
  /**
18169
18181
  * A `sap.m.LightBox` instance, that will be opened automatically when the user interacts with the `Avatar`
18170
18182
  * control.
@@ -39223,6 +39235,20 @@ declare namespace sap {
39223
39235
  */
39224
39236
  mParameters?: object
39225
39237
  ): this;
39238
+ /**
39239
+ * @SINCE 1.120.0
39240
+ *
39241
+ * Gets current value of property {@link #getActive active}.
39242
+ *
39243
+ * Determines whether the `Avatar` is active/toggled (default is set to `false`). Active state is meant
39244
+ * to be toggled when user clicks on the `Avatar`. The Active state is only applied, when the `Avatar` has
39245
+ * `press` listeners.
39246
+ *
39247
+ * Default value is `false`.
39248
+ *
39249
+ * @returns Value of property `active`
39250
+ */
39251
+ getActive(): boolean;
39226
39252
  /**
39227
39253
  * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
39228
39254
  * ariaDescribedBy}.
@@ -39465,6 +39491,27 @@ declare namespace sap {
39465
39491
  */
39466
39492
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
39467
39493
  ): sap.ui.core.ID | null;
39494
+ /**
39495
+ * @SINCE 1.120.0
39496
+ *
39497
+ * Sets a new value for property {@link #getActive active}.
39498
+ *
39499
+ * Determines whether the `Avatar` is active/toggled (default is set to `false`). Active state is meant
39500
+ * to be toggled when user clicks on the `Avatar`. The Active state is only applied, when the `Avatar` has
39501
+ * `press` listeners.
39502
+ *
39503
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
39504
+ *
39505
+ * Default value is `false`.
39506
+ *
39507
+ * @returns Reference to `this` in order to allow method chaining
39508
+ */
39509
+ setActive(
39510
+ /**
39511
+ * New value for property `active`
39512
+ */
39513
+ bActive?: boolean
39514
+ ): this;
39468
39515
  /**
39469
39516
  * @SINCE 1.99.0
39470
39517
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.9
1
+ // For Library Version: 1.114.11
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.9
1
+ // For Library Version: 1.114.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.9
1
+ // For Library Version: 1.114.11
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.9
283
+ // For Library Version: 1.114.11
284
284
 
285
285
  declare module "sap/base/assert" {
286
286
  /**
@@ -32415,6 +32415,8 @@ declare namespace sap {
32415
32415
  onDeactivate(): void;
32416
32416
  /**
32417
32417
  * @SINCE 1.15.1
32418
+ * @deprecated (since 1.114) - (starting with a patch release acc. to the changelog), recommended to use
32419
+ * the browser-native page lifecycle API, providing events such as 'pageshow' and 'pagehide'
32418
32420
  *
32419
32421
  * The window before unload hook. Override this method in your Component class implementation, to handle
32420
32422
  * cleanup before the real unload or to prompt a question to the user, if the component should be exited.
@@ -32425,6 +32427,8 @@ declare namespace sap {
32425
32427
  onWindowBeforeUnload(): string | undefined;
32426
32428
  /**
32427
32429
  * @SINCE 1.15.1
32430
+ * @deprecated (since 1.114) - (starting with a patch release acc. to the changelog), recommended to use
32431
+ * the browser-native API to listen for errors: window.addEventListener("error", function() { ... })
32428
32432
  *
32429
32433
  * The window error hook. Override this method in your Component class implementation to listen to unhandled
32430
32434
  * errors.
@@ -32445,6 +32449,9 @@ declare namespace sap {
32445
32449
  ): void;
32446
32450
  /**
32447
32451
  * @SINCE 1.15.1
32452
+ * @deprecated (since 1.114) - (starting with a patch release acc. to the changelog). Newer browser versions
32453
+ * deprecate the browser-native 'unload' event. Therefore, the former API won't reliably work anymore. Please
32454
+ * have a look at the browser-native page lifecycle API, e.g. its events 'pageshow' and 'pagehide'.
32448
32455
  *
32449
32456
  * The window unload hook. Override this method in your Component class implementation, to handle cleanup
32450
32457
  * of the component once the window will be unloaded (e.g. closed).
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.114.9
1
+ // For Library Version: 1.114.11
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.9
1
+ // For Library Version: 1.114.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.9
1
+ // For Library Version: 1.114.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.9
1
+ // For Library Version: 1.114.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.9
1
+ // For Library Version: 1.114.11
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.9
1
+ // For Library Version: 1.114.11
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.9
1
+ // For Library Version: 1.114.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.9
1
+ // For Library Version: 1.114.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.9
1
+ // For Library Version: 1.114.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -6768,14 +6768,14 @@ declare namespace sap {
6768
6768
  getColumns(): sap.ui.table.Column[];
6769
6769
  /**
6770
6770
  * Returns the context of a row by its index. Please note that for server-based models like OData, the supplied
6771
- * index might not have been loaded yet. If the context is not available at the client, the binding will
6771
+ * index might not have been loaded yet. If the context is not available at the client, the binding may
6772
6772
  * trigger a backend request and request this single context. Although this API looks synchronous it may
6773
6773
  * not return a context but load it and fire a change event on the binding.
6774
6774
  *
6775
6775
  * For server-based models you should consider to only make this API call when the index is within the currently
6776
6776
  * visible scroll area.
6777
6777
  *
6778
- * @returns The context at this index or `null`
6778
+ * @returns The context at this index if available
6779
6779
  */
6780
6780
  getContextByIndex(
6781
6781
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.9
1
+ // For Library Version: 1.114.11
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.9
1
+ // For Library Version: 1.114.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.9
1
+ // For Library Version: 1.114.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.9
1
+ // For Library Version: 1.114.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.9
1
+ // For Library Version: 1.114.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.9
1
+ // For Library Version: 1.114.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.9
1
+ // For Library Version: 1.114.11
2
2
 
3
3
  declare namespace sap {
4
4
  /**