@openui5/ts-types 1.117.1 → 1.117.3

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.117.1",
3
+ "version": "1.117.3",
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.117.1
1
+ // For Library Version: 1.117.3
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.117.1
1
+ // For Library Version: 1.117.3
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.117.3
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.117.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.117.3
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.117.1
283
+ // For Library Version: 1.117.3
284
284
 
285
285
  declare module "sap/base/assert" {
286
286
  /**
@@ -33367,6 +33367,8 @@ declare namespace sap {
33367
33367
  onDeactivate(): void;
33368
33368
  /**
33369
33369
  * @since 1.15.1
33370
+ * @deprecated (since 1.117) - (starting with a patch release acc. to the changelog), recommended to use
33371
+ * the browser-native page lifecycle API, providing events such as 'pageshow' and 'pagehide'
33370
33372
  *
33371
33373
  * The window before unload hook. Override this method in your Component class implementation, to handle
33372
33374
  * cleanup before the real unload or to prompt a question to the user, if the component should be exited.
@@ -33377,6 +33379,8 @@ declare namespace sap {
33377
33379
  onWindowBeforeUnload(): string | undefined;
33378
33380
  /**
33379
33381
  * @since 1.15.1
33382
+ * @deprecated (since 1.117) - (starting with a patch release acc. to the changelog), recommended to use
33383
+ * the browser-native API to listen for errors: window.addEventListener("error", function() { ... })
33380
33384
  *
33381
33385
  * The window error hook. Override this method in your Component class implementation to listen to unhandled
33382
33386
  * errors.
@@ -33397,6 +33401,9 @@ declare namespace sap {
33397
33401
  ): void;
33398
33402
  /**
33399
33403
  * @since 1.15.1
33404
+ * @deprecated (since 1.117) - (starting with a patch release acc. to the changelog). Newer browser versions
33405
+ * deprecate the browser-native 'unload' event. Therefore, the former API won't reliably work anymore. Please
33406
+ * have a look at the browser-native page lifecycle API, e.g. its events 'pageshow' and 'pagehide'.
33400
33407
  *
33401
33408
  * The window unload hook. Override this method in your Component class implementation, to handle cleanup
33402
33409
  * of the component once the window will be unloaded (e.g. closed).
@@ -66436,8 +66443,8 @@ declare namespace sap {
66436
66443
  /**
66437
66444
  * Parses the given value to an array of two values representing the start date and the end date of the
66438
66445
  * interval, where the time part of the start date is 0 and the time part of end date is the end of day
66439
- * (23:59:59.999). If the `singleIntervalValue` format option is used, the second entry is `null` if no
66440
- * end date is given.
66446
+ * (23:59:59). If the `singleIntervalValue` format option is used, the second entry is `null` if no end
66447
+ * date is given.
66441
66448
  *
66442
66449
  * @returns The start and the end date of the interval. The resulting values in the array are:
66443
66450
  * - Two `Date` or `module:sap/ui/core/date/UI5Date` objects, or
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.117.3
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.117.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.117.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.117.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.117.3
2
2
 
3
3
  declare module "sap/ui/mdc/BaseDelegate" {
4
4
  import TypeMap from "sap/ui/mdc/util/TypeMap";
@@ -5186,6 +5186,25 @@ declare namespace sap {
5186
5186
  */
5187
5187
  mParameters?: sap.ui.mdc.field.FieldBase$SubmitEventParameters
5188
5188
  ): this;
5189
+ /**
5190
+ * Sets the focus on the stored focus DOM reference.
5191
+ */
5192
+ focus(
5193
+ /**
5194
+ * Options for setting the focus
5195
+ */
5196
+ oFocusInfo?: {
5197
+ /**
5198
+ * @since 1.60 If set to `true`, the focused element won't be moved into the viewport if it's not completely
5199
+ * visible before the focus is set
5200
+ */
5201
+ preventScroll?: boolean;
5202
+ /**
5203
+ * @since 1.98 Further control-specific setting of the focus target within the control
5204
+ */
5205
+ targetInfo?: any;
5206
+ }
5207
+ ): void;
5189
5208
  /**
5190
5209
  * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
5191
5210
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.117.3
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.117.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.117.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.117.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.117.3
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.117.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.117.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.117.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.117.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.117.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.117.1
1
+ // For Library Version: 1.117.3
2
2
 
3
3
  declare namespace sap {
4
4
  /**