@openui5/ts-types-esm 1.115.1 → 1.116.0
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 -8
- package/package.json +1 -1
- package/types/index.d.ts +9 -3
- package/types/sap.f.d.ts +67 -241
- package/types/sap.m.d.ts +411 -2498
- package/types/sap.tnt.d.ts +52 -26
- package/types/sap.ui.codeeditor.d.ts +3 -15
- package/types/sap.ui.commons.d.ts +43 -355
- package/types/sap.ui.core.d.ts +283 -883
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +4 -69
- package/types/sap.ui.integration.d.ts +124 -90
- package/types/sap.ui.layout.d.ts +6 -40
- package/types/sap.ui.mdc.d.ts +806 -817
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -13
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +23 -169
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +69 -449
- package/types/sap.ui.ux3.d.ts +44 -444
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +731 -311
- package/types/sap.ui.webc.main.d.ts +4016 -1045
- package/types/sap.uxap.d.ts +10 -80
package/README.md
CHANGED
|
@@ -2,17 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
# @openui5/ts-types-esm
|
|
4
4
|
|
|
5
|
-
<span style="color: red; font-size: 150%; font-weight: bold;">The package `@openui5/ts-types-esm` is deprecated, please use the (identical) types in `@openui5/types` instead.</span>
|
|
5
|
+
<span style="color: red; font-size: 150%; font-weight: bold;">The package `@openui5/ts-types-esm` is deprecated and will soon no longer be updated, please use the (identical) types in `@openui5/types` instead.</span>
|
|
6
6
|
|
|
7
7
|
This npm package contains the TypeScript type definitions based on ES modules for all the OpenUI5 libraries.
|
|
8
8
|
|
|
9
|
+
The central entry point for all information about using UI5 with TypeScript (incl. sample apps and templates) is at https://sap.github.io/ui5-typescript.
|
|
9
10
|
|
|
10
|
-
## Status
|
|
11
|
-
|
|
12
|
-
The type definitions are in an experimental **_[Beta State](https://sap.github.io/ui5-typescript/beta-statement.html)_**. Changes are likely to occur,
|
|
13
|
-
including potential **breaking changes**.
|
|
14
|
-
|
|
15
|
-
For information on changes in the type definitions, in particular ones which require adaptation (but also new enhancements), please refer to the [Release Notes](https://sap.github.io/ui5-typescript/releasenotes.html).
|
|
16
11
|
|
|
17
12
|
## License
|
|
18
|
-
OpenUI5 and the type definitions are copyright by SAP and contributors and licensed under [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0).
|
|
13
|
+
OpenUI5 and the type definitions in this package are copyright by SAP and contributors and licensed under the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0).
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -16,9 +16,15 @@
|
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
*
|
|
19
|
+
* We encourage you to use SAPUI5 with TypeScript productively for an
|
|
20
|
+
* improved development efficiency and experience. TypeScript itself keeps
|
|
21
|
+
* evolving and we try to further improve the UI5 type definitions, so there
|
|
22
|
+
* could be potential incompatible changes between versions of the type
|
|
23
|
+
* definitions. However, such incompatibilities would only affect the
|
|
24
|
+
* compilation of your code but will not cause runtime issues in your
|
|
25
|
+
* application. Plus, there are various ways to easily deal with them:
|
|
26
|
+
* you can, for example, simply keep using the previous version of the
|
|
27
|
+
* UI5 type definitions together with an updated UI5 runtime.
|
|
22
28
|
*/
|
|
23
29
|
/// <reference path="./sap.ui.codeeditor.d.ts"/>
|
|
24
30
|
/// <reference path="./sap.ui.commons.d.ts"/>
|