@openui5/ts-types 1.108.29 → 1.108.33
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 +3 -3
- 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 +16 -11
- 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 +1 -1
- 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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.108.
|
|
1
|
+
// For Library Version: 1.108.33
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -12530,14 +12530,14 @@ declare namespace sap {
|
|
|
12530
12530
|
* Required for receiving a `readyState` is to set the property `sendXHR` to true. This property is not
|
|
12531
12531
|
* supported by Internet Explorer 9.
|
|
12532
12532
|
*/
|
|
12533
|
-
readyState?:
|
|
12533
|
+
readyState?: int;
|
|
12534
12534
|
/**
|
|
12535
12535
|
* Status of the XHR request.
|
|
12536
12536
|
*
|
|
12537
12537
|
* Required for receiving a `status` is to set the property `sendXHR` to true. This property is not supported
|
|
12538
12538
|
* by Internet Explorer 9.
|
|
12539
12539
|
*/
|
|
12540
|
-
status?:
|
|
12540
|
+
status?: int;
|
|
12541
12541
|
/**
|
|
12542
12542
|
* Http-Response which comes from the server.
|
|
12543
12543
|
*
|
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.108.
|
|
267
|
+
// For Library Version: 1.108.33
|
|
268
268
|
|
|
269
269
|
declare module "sap/base/assert" {
|
|
270
270
|
/**
|
|
@@ -17202,7 +17202,6 @@ declare namespace sap {
|
|
|
17202
17202
|
): this;
|
|
17203
17203
|
/**
|
|
17204
17204
|
* @SINCE 1.30
|
|
17205
|
-
* @deprecated (since 1.66) - Use {@link sap.ui.core.mvc.View.create View.create} instead
|
|
17206
17205
|
*
|
|
17207
17206
|
* Returns a Promise representing the state of the view initialization.
|
|
17208
17207
|
*
|
|
@@ -44902,22 +44901,29 @@ declare namespace sap {
|
|
|
44902
44901
|
oContext?: sap.ui.model.Context
|
|
44903
44902
|
): any | null | undefined;
|
|
44904
44903
|
/**
|
|
44905
|
-
*
|
|
44906
|
-
*
|
|
44907
|
-
*
|
|
44904
|
+
* Loads JSON-encoded data from the server and stores the resulting JSON data in the model. Note: Due to
|
|
44905
|
+
* browser security restrictions, most "Ajax" requests are subject to the same origin policy, the request
|
|
44906
|
+
* can not successfully retrieve data from a different domain, subdomain, or protocol.
|
|
44907
|
+
*
|
|
44908
|
+
* Note: To send a JSON object in the body of a "POST" request to load the model data, `oParameters` has
|
|
44909
|
+
* to be the JSON-stringified value of the object to be sent, and `mHeaders` has to contain a `"Content-Type"`
|
|
44910
|
+
* property with the value `"application/json;charset=utf-8"`.
|
|
44908
44911
|
*
|
|
44909
44912
|
* @returns in case bAsync is set to true a Promise is returned; this promise resolves/rejects based on
|
|
44910
44913
|
* the request status
|
|
44911
44914
|
*/
|
|
44912
44915
|
loadData(
|
|
44913
44916
|
/**
|
|
44914
|
-
* A string containing the URL to which the request is sent
|
|
44917
|
+
* A string containing the URL to which the request is sent
|
|
44915
44918
|
*/
|
|
44916
44919
|
sURL: string,
|
|
44917
44920
|
/**
|
|
44918
|
-
*
|
|
44919
|
-
* to
|
|
44920
|
-
*
|
|
44921
|
+
* The data to be sent to the server with the data-loading request. If `oParameters` is a string, it has
|
|
44922
|
+
* to be encoded based on the used content type. The default encoding is `'application/x-www-form-urlencoded;
|
|
44923
|
+
* charset=UTF-8'` but it may be overwritten via the `"Content-Type"` property given in `mHeaders`. If `oParameters`
|
|
44924
|
+
* is an object, a string is generated and the keys and values are URL-encoded. The resulting string is
|
|
44925
|
+
* appended to the URL if the HTTP request method cannot have a request body, e.g. for a "GET" request.
|
|
44926
|
+
* Otherwise, the resulting string is added to the request body.
|
|
44921
44927
|
*/
|
|
44922
44928
|
oParameters?: object | string,
|
|
44923
44929
|
/**
|
|
@@ -44927,8 +44933,7 @@ declare namespace sap {
|
|
|
44927
44933
|
*/
|
|
44928
44934
|
bAsync?: boolean,
|
|
44929
44935
|
/**
|
|
44930
|
-
* The
|
|
44931
|
-
* as PUT and DELETE, can also be used here, but they are not supported by all browsers.
|
|
44936
|
+
* The HTTP verb to use for the request ("GET" or "POST")
|
|
44932
44937
|
*/
|
|
44933
44938
|
sType?: string,
|
|
44934
44939
|
/**
|
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
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED