@openui5/ts-types-esm 1.105.1 → 1.107.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 +5 -1
- package/package.json +1 -1
- package/types/sap.f.d.ts +902 -170
- package/types/sap.m.d.ts +528 -199
- package/types/sap.tnt.d.ts +3 -3
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +31 -31
- package/types/sap.ui.core.d.ts +869 -372
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +5 -3
- package/types/sap.ui.integration.d.ts +256 -53
- package/types/sap.ui.layout.d.ts +7 -7
- package/types/sap.ui.mdc.d.ts +169 -1
- package/types/sap.ui.rta.d.ts +3 -1
- package/types/sap.ui.suite.d.ts +5 -5
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +32 -14
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +16 -16
- package/types/sap.ui.ux3.d.ts +11 -11
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +31 -28
- package/types/sap.ui.webc.main.d.ts +132 -104
- package/types/sap.uxap.d.ts +75 -1
package/README.md
CHANGED
|
@@ -19,6 +19,8 @@ See the "Usage" section below for links to detailed documentation about this set
|
|
|
19
19
|
|
|
20
20
|
## Usage
|
|
21
21
|
|
|
22
|
+
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.
|
|
23
|
+
|
|
22
24
|
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.
|
|
23
25
|
|
|
24
26
|
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.
|
|
@@ -31,5 +33,7 @@ For quick and easy scaffolding of a new UI5 app written in TypeScript, you can a
|
|
|
31
33
|
This project is in an experimental **_Beta State_**. Significant changes are likely to occur,
|
|
32
34
|
including potential **breaking changes**.
|
|
33
35
|
|
|
36
|
+
For information on changes in the type definitions, in particular ones which require adaptation, please refer to the [Release Notes](https://sap.github.io/ui5-typescript/releasenotes.html).
|
|
37
|
+
|
|
34
38
|
## License
|
|
35
|
-
OpenUI5 is licensed under [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0).
|
|
39
|
+
OpenUI5 is licensed under [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0).
|