@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 +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.m.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +18 -13
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +6 -6
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
|
|
|
264
264
|
): jQuery;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
// For Library Version: 1.96.
|
|
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
|
-
*
|
|
41737
|
-
*
|
|
41738
|
-
*
|
|
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
|
-
*
|
|
41747
|
-
* to
|
|
41748
|
-
*
|
|
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
|
|
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
|
|
41760
|
+
* do not support synchronous operations.
|
|
41755
41761
|
*/
|
|
41756
41762
|
bAsync?: boolean,
|
|
41757
41763
|
/**
|
|
41758
|
-
* The
|
|
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
|
/**
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.32
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/support/library" {
|
|
4
4
|
/**
|
|
5
|
-
* @SINCE 1.96.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
113
|
+
* @SINCE 1.96.32
|
|
114
114
|
*
|
|
115
115
|
* Contains the available system presets.
|
|
116
116
|
*/
|
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED