@openui5/ts-types 1.92.0 → 1.93.3
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/README.md +3 -1
- package/package.json +1 -1
- package/types/sap.f.d.ts +623 -468
- package/types/sap.m.d.ts +5498 -4814
- package/types/sap.tnt.d.ts +149 -117
- package/types/sap.ui.codeeditor.d.ts +28 -28
- package/types/sap.ui.commons.d.ts +1387 -1387
- package/types/sap.ui.core.d.ts +3852 -3973
- package/types/sap.ui.dt.d.ts +2 -4
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +118 -112
- package/types/sap.ui.layout.d.ts +593 -586
- package/types/sap.ui.mdc.d.ts +7 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +53 -53
- package/types/sap.ui.support.d.ts +6 -12
- package/types/sap.ui.table.d.ts +248 -248
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +853 -713
- package/types/sap.ui.ux3.d.ts +785 -793
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +454 -450
- package/types/sap.ui.webc.main.d.ts +1317 -1317
- package/types/sap.uxap.d.ts +384 -220
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# @openui5/ts-types
|
|
4
4
|
|
|
5
|
-
This npm package contains the types signatures for all the OpenUI5 libraries.
|
|
5
|
+
This npm package contains the types signatures (based on globals) for all the OpenUI5 libraries.
|
|
6
6
|
|
|
7
7
|
These signatures can be used to:
|
|
8
8
|
|
|
@@ -11,6 +11,8 @@ These signatures can be used to:
|
|
|
11
11
|
|
|
12
12
|
These two capabilities are available both for OpenUI5 apps written in TypeScript **and** in JavaScript.
|
|
13
13
|
|
|
14
|
+
<b>NOTE:</b> "based on globals" means that it supports the usage of the global "sap" object and the huge tree below this global object containing all modules and controls. But this usage is <b>no longer recommended</b>. In traditional JavaScript, UI5 application code should use the asynchronous sap.ui.define()/sap.ui.require() calls instead and for TypeScript code we recommend using ES6 module syntax provided by the [@openui5/ts-types-esm](https://www.npmjs.com/package/@openui5/ts-types-esm) package. So better use that one instead of this package.
|
|
15
|
+
|
|
14
16
|
## Status
|
|
15
17
|
|
|
16
18
|
This project is in an experimental **_Beta State_**. Significant changes are likely to occur,
|