@openui5/ts-types-esm 1.108.30 → 1.108.34
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 -10
- 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 +3 -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.34
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -130107,14 +130107,14 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
130107
130107
|
* Required for receiving a `readyState` is to set the property `sendXHR` to true. This property is not
|
|
130108
130108
|
* supported by Internet Explorer 9.
|
|
130109
130109
|
*/
|
|
130110
|
-
readyState?:
|
|
130110
|
+
readyState?: int;
|
|
130111
130111
|
/**
|
|
130112
130112
|
* Status of the XHR request.
|
|
130113
130113
|
*
|
|
130114
130114
|
* Required for receiving a `status` is to set the property `sendXHR` to true. This property is not supported
|
|
130115
130115
|
* by Internet Explorer 9.
|
|
130116
130116
|
*/
|
|
130117
|
-
status?:
|
|
130117
|
+
status?: int;
|
|
130118
130118
|
/**
|
|
130119
130119
|
* Http-Response which comes from the server.
|
|
130120
130120
|
*
|
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.34
|
|
268
268
|
|
|
269
269
|
declare module "sap/base/assert" {
|
|
270
270
|
/**
|
|
@@ -46465,22 +46465,29 @@ declare module "sap/ui/model/json/JSONModel" {
|
|
|
46465
46465
|
oContext?: Context
|
|
46466
46466
|
): any | null | undefined;
|
|
46467
46467
|
/**
|
|
46468
|
-
*
|
|
46469
|
-
*
|
|
46470
|
-
*
|
|
46468
|
+
* Loads JSON-encoded data from the server and stores the resulting JSON data in the model. Note: Due to
|
|
46469
|
+
* browser security restrictions, most "Ajax" requests are subject to the same origin policy, the request
|
|
46470
|
+
* can not successfully retrieve data from a different domain, subdomain, or protocol.
|
|
46471
|
+
*
|
|
46472
|
+
* Note: To send a JSON object in the body of a "POST" request to load the model data, `oParameters` has
|
|
46473
|
+
* to be the JSON-stringified value of the object to be sent, and `mHeaders` has to contain a `"Content-Type"`
|
|
46474
|
+
* property with the value `"application/json;charset=utf-8"`.
|
|
46471
46475
|
*
|
|
46472
46476
|
* @returns in case bAsync is set to true a Promise is returned; this promise resolves/rejects based on
|
|
46473
46477
|
* the request status
|
|
46474
46478
|
*/
|
|
46475
46479
|
loadData(
|
|
46476
46480
|
/**
|
|
46477
|
-
* A string containing the URL to which the request is sent
|
|
46481
|
+
* A string containing the URL to which the request is sent
|
|
46478
46482
|
*/
|
|
46479
46483
|
sURL: string,
|
|
46480
46484
|
/**
|
|
46481
|
-
*
|
|
46482
|
-
* to
|
|
46483
|
-
*
|
|
46485
|
+
* The data to be sent to the server with the data-loading request. If `oParameters` is a string, it has
|
|
46486
|
+
* to be encoded based on the used content type. The default encoding is `'application/x-www-form-urlencoded;
|
|
46487
|
+
* charset=UTF-8'` but it may be overwritten via the `"Content-Type"` property given in `mHeaders`. If `oParameters`
|
|
46488
|
+
* is an object, a string is generated and the keys and values are URL-encoded. The resulting string is
|
|
46489
|
+
* appended to the URL if the HTTP request method cannot have a request body, e.g. for a "GET" request.
|
|
46490
|
+
* Otherwise, the resulting string is added to the request body.
|
|
46484
46491
|
*/
|
|
46485
46492
|
oParameters?: object | string,
|
|
46486
46493
|
/**
|
|
@@ -46490,8 +46497,7 @@ declare module "sap/ui/model/json/JSONModel" {
|
|
|
46490
46497
|
*/
|
|
46491
46498
|
bAsync?: boolean,
|
|
46492
46499
|
/**
|
|
46493
|
-
* The
|
|
46494
|
-
* as PUT and DELETE, can also be used here, but they are not supported by all browsers.
|
|
46500
|
+
* The HTTP verb to use for the request ("GET" or "POST")
|
|
46495
46501
|
*/
|
|
46496
46502
|
sType?: string,
|
|
46497
46503
|
/**
|
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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.108.
|
|
1
|
+
// For Library Version: 1.108.34
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/filterbar/vh/FilterContainer" {
|
|
4
4
|
import Metadata from "sap/ui/base/Metadata";
|
|
@@ -427,6 +427,8 @@ declare namespace sap {
|
|
|
427
427
|
|
|
428
428
|
"sap/ui/mdc/util/DateUtil": undefined;
|
|
429
429
|
|
|
430
|
+
"sap/ui/mdc/util/DensityHelper": undefined;
|
|
431
|
+
|
|
430
432
|
"sap/ui/mdc/util/FilterUtil": undefined;
|
|
431
433
|
|
|
432
434
|
"sap/ui/mdc/util/PromiseCache": undefined;
|
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