@openui5/ts-types-esm 1.96.30 → 1.96.32

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-esm",
3
- "version": "1.96.30",
3
+ "version": "1.96.32",
4
4
  "description": "OpenUI5 TypeScript Definitions - ES Modules",
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.96.30
1
+ // For Library Version: 1.96.32
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.96.30
1
+ // For Library Version: 1.96.32
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.30
1
+ // For Library Version: 1.96.32
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.30
1
+ // For Library Version: 1.96.32
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.30
1
+ // For Library Version: 1.96.32
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
264
264
  ): jQuery;
265
265
  }
266
266
 
267
- // For Library Version: 1.96.30
267
+ // For Library Version: 1.96.32
268
268
 
269
269
  declare module "sap/base/assert" {
270
270
  /**
@@ -25597,7 +25597,6 @@ declare module "sap/ui/core/mvc/View" {
25597
25597
  ): this;
25598
25598
  /**
25599
25599
  * @SINCE 1.30
25600
- * @deprecated (since 1.66) - Use {@link sap.ui.core.mvc.View.create View.create} instead
25601
25600
  *
25602
25601
  * Returns a Promise representing the state of the view initialization.
25603
25602
  *
@@ -41733,30 +41732,36 @@ declare module "sap/ui/model/json/JSONModel" {
41733
41732
  oContext?: Context
41734
41733
  ): any;
41735
41734
  /**
41736
- * Load JSON-encoded data from the server using a GET HTTP request and store the resulting JSON data in
41737
- * the model. Note: Due to browser security restrictions, most "Ajax" requests are subject to the same origin
41738
- * policy, the request can not successfully retrieve data from a different domain, subdomain, or protocol.
41735
+ * Loads JSON-encoded data from the server and stores the resulting JSON data in the model. Note: Due to
41736
+ * browser security restrictions, most "Ajax" requests are subject to the same origin policy, the request
41737
+ * can not successfully retrieve data from a different domain, subdomain, or protocol.
41738
+ *
41739
+ * Note: To send a JSON object in the body of a "POST" request to load the model data, `oParameters` has
41740
+ * to be the JSON-stringified value of the object to be sent, and `mHeaders` has to contain a `"Content-Type"`
41741
+ * property with the value `"application/json;charset=utf-8"`.
41739
41742
  */
41740
41743
  loadData(
41741
41744
  /**
41742
- * A string containing the URL to which the request is sent.
41745
+ * A string containing the URL to which the request is sent
41743
41746
  */
41744
41747
  sURL: string,
41745
41748
  /**
41746
- * A map or string that is sent to the server with the request. Data that is sent to the server is appended
41747
- * to the URL as a query string. If the value of the data parameter is an object (map), it is converted
41748
- * to a string and url-encoded before it is appended to the URL.
41749
+ * The data to be sent to the server with the data-loading request. If `oParameters` is a string, it has
41750
+ * to be encoded based on the used content type. The default encoding is `'application/x-www-form-urlencoded;
41751
+ * charset=UTF-8'` but it may be overwritten via the `"Content-Type"` property given in `mHeaders`. If `oParameters`
41752
+ * is an object, a string is generated and the keys and values are URL-encoded. The resulting string is
41753
+ * appended to the URL if the HTTP request method cannot have a request body, e.g. for a "GET" request.
41754
+ * Otherwise, the resulting string is added to the request body.
41749
41755
  */
41750
41756
  oParameters?: object | string,
41751
41757
  /**
41752
- * By default, all requests are sent asynchronous. **Do not use `bAsync=false`** because synchronous requests
41758
+ * By default, all requests are sent asynchronously. **Do not use `bAsync=false`** because synchronous requests
41753
41759
  * may temporarily lock the browser, disabling any actions while the request is active. Cross-domain requests
41754
- * do not support synchronous operation.
41760
+ * do not support synchronous operations.
41755
41761
  */
41756
41762
  bAsync?: boolean,
41757
41763
  /**
41758
- * The type of request to make ("POST" or "GET"), default is "GET". Note: Other HTTP request methods, such
41759
- * as PUT and DELETE, can also be used here, but they are not supported by all browsers.
41764
+ * The HTTP verb to use for the request ("GET" or "POST")
41760
41765
  */
41761
41766
  sType?: string,
41762
41767
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.96.30
1
+ // For Library Version: 1.96.32
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.30
1
+ // For Library Version: 1.96.32
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.30
1
+ // For Library Version: 1.96.32
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.96.30
1
+ // For Library Version: 1.96.32
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.96.30
1
+ // For Library Version: 1.96.32
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.30
1
+ // For Library Version: 1.96.32
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import UI5Element from "sap/ui/core/Element";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.30
1
+ // For Library Version: 1.96.32
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,8 +1,8 @@
1
- // For Library Version: 1.96.30
1
+ // For Library Version: 1.96.32
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
5
- * @SINCE 1.96.30
5
+ * @SINCE 1.96.32
6
6
  *
7
7
  * Defines the Audiences.
8
8
  */
@@ -21,7 +21,7 @@ declare module "sap/ui/support/library" {
21
21
  Internal = "Internal",
22
22
  }
23
23
  /**
24
- * @SINCE 1.96.30
24
+ * @SINCE 1.96.32
25
25
  *
26
26
  * Issue Categories.
27
27
  */
@@ -76,7 +76,7 @@ declare module "sap/ui/support/library" {
76
76
  Usage = "Usage",
77
77
  }
78
78
  /**
79
- * @SINCE 1.96.30
79
+ * @SINCE 1.96.32
80
80
  *
81
81
  * Analysis history formats.
82
82
  */
@@ -91,7 +91,7 @@ declare module "sap/ui/support/library" {
91
91
  String = "String",
92
92
  }
93
93
  /**
94
- * @SINCE 1.96.30
94
+ * @SINCE 1.96.32
95
95
  *
96
96
  * Defines severity types.
97
97
  */
@@ -110,7 +110,7 @@ declare module "sap/ui/support/library" {
110
110
  Medium = "Medium",
111
111
  }
112
112
  /**
113
- * @SINCE 1.96.30
113
+ * @SINCE 1.96.32
114
114
  *
115
115
  * Contains the available system presets.
116
116
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.30
1
+ // For Library Version: 1.96.32
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.96.30
1
+ // For Library Version: 1.96.32
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.30
1
+ // For Library Version: 1.96.32
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.30
1
+ // For Library Version: 1.96.32
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.30
1
+ // For Library Version: 1.96.32
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.30
1
+ // For Library Version: 1.96.32
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.30
1
+ // For Library Version: 1.96.32
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.30
1
+ // For Library Version: 1.96.32
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**