@openui5/types 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 +6 -5
- 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
|
@@ -20,18 +20,19 @@ These capabilities are available not only for OpenUI5 apps written in TypeScript
|
|
|
20
20
|
|
|
21
21
|
The central entry point for all information about using UI5 with TypeScript (incl. sample apps and templates) is https://sap.github.io/ui5-typescript.
|
|
22
22
|
|
|
23
|
+
The [UI5 TypeScript tutorial](https://github.com/SAP-samples/ui5-typescript-tutorial) gives the best end-to-end impression of UI5 application and control development in TypeScript. The above and below links lead to further details about certain aspects.
|
|
24
|
+
|
|
23
25
|
To see the suggested project setup for TypeScript development, please check out the [TypeScript Hello World app](https://github.com/SAP-samples/ui5-typescript-helloworld). It not only can serve as copy template, but also includes a [detailed step-by-step guide](https://github.com/SAP-samples/ui5-typescript-helloworld/blob/main/step-by-step.md) for creating this setup from scratch.
|
|
24
26
|
|
|
25
27
|
The [TypeScript branch of the "UI5 CAP Event App"](https://github.com/SAP-samples/ui5-cap-event-app/tree/typescript) sample demonstrates a more complex application using the same setup. It comes with an [explanation](https://github.com/SAP-samples/ui5-cap-event-app/blob/typescript/docs/typescript.md) of what UI5 TypeScript code usually looks like and what to consider when writing such code.
|
|
26
28
|
|
|
27
|
-
For quick and easy scaffolding of a new UI5 app written in TypeScript, you can
|
|
29
|
+
For quick and easy scaffolding of a new UI5 app written in TypeScript, you can use the easy-ui5 tool with the [generator-ui5-ts-app](https://github.com/ui5-community/generator-ui5-ts-app) generator.
|
|
28
30
|
|
|
29
31
|
## Status
|
|
30
32
|
|
|
31
|
-
|
|
32
|
-
including potential **breaking changes**.
|
|
33
|
+
We encourage you to use OpenUI5 with TypeScript productively for an improved development efficiency and experience. TypeScript itself keeps evolving and we try to further improve the UI5 type definitions, so there could be potential incompatible changes between versions of the type definitions. However, such incompatibilities would only affect the compilation of your code but will not cause runtime issues in your application. Plus, there are various ways to easily deal with them: you can, for example, simply keep using the previous version of the UI5 type definitions together with an updated UI5 runtime.
|
|
33
34
|
|
|
34
|
-
For
|
|
35
|
+
For news related to the type definitions, in particular ones which require adaptation, please refer to the [Release Notes](https://sap.github.io/ui5-typescript/releasenotes.html).
|
|
35
36
|
|
|
36
37
|
## License
|
|
37
|
-
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).
|
|
38
|
+
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"/>
|