@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/ts-types-esm",
3
- "version": "1.108.30",
3
+ "version": "1.108.34",
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.108.30
1
+ // For Library Version: 1.108.34
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.108.30
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?: string;
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?: string;
130117
+ status?: int;
130118
130118
  /**
130119
130119
  * Http-Response which comes from the server.
130120
130120
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.30
1
+ // For Library Version: 1.108.34
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.30
1
+ // For Library Version: 1.108.34
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.30
1
+ // For Library Version: 1.108.34
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.108.30
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
- * Load JSON-encoded data from the server using a GET HTTP request and store the resulting JSON data in
46469
- * the model. Note: Due to browser security restrictions, most "Ajax" requests are subject to the same origin
46470
- * policy, the request can not successfully retrieve data from a different domain, subdomain, or protocol.
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
- * A map or string that is sent to the server with the request. Data that is sent to the server is appended
46482
- * to the URL as a query string. If the value of the data parameter is an object (map), it is converted
46483
- * to a string and url-encoded before it is appended to the URL.
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 type of request to make ("POST" or "GET"), default is "GET". Note: Other HTTP request methods, such
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
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.108.30
1
+ // For Library Version: 1.108.34
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.30
1
+ // For Library Version: 1.108.34
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.30
1
+ // For Library Version: 1.108.34
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.108.30
1
+ // For Library Version: 1.108.34
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.108.30
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;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.30
1
+ // For Library Version: 1.108.34
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.30
1
+ // For Library Version: 1.108.34
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.30
1
+ // For Library Version: 1.108.34
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.30
1
+ // For Library Version: 1.108.34
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.108.30
1
+ // For Library Version: 1.108.34
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.30
1
+ // For Library Version: 1.108.34
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.30
1
+ // For Library Version: 1.108.34
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.30
1
+ // For Library Version: 1.108.34
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.30
1
+ // For Library Version: 1.108.34
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.30
1
+ // For Library Version: 1.108.34
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.30
1
+ // For Library Version: 1.108.34
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**