@openui5/types 1.138.0 → 1.139.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 -3
- package/package.json +2 -2
- package/types/sap.f.d.ts +5 -5
- package/types/sap.m.d.ts +488 -20
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +112 -31
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +45 -8
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +16 -2
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# @openui5/types
|
|
4
4
|
|
|
5
|
-
This npm package contains the TypeScript type definitions based on ES modules for all the OpenUI5 libraries. Read [below](#usage) and at the main [UI5 & TypeScript documentation](https://
|
|
5
|
+
This npm package contains the TypeScript type definitions based on ES modules for all the OpenUI5 libraries. Read [below](#usage) and at the main [UI5 & TypeScript documentation](https://ui5.github.io/typescript) how to use them.
|
|
6
6
|
|
|
7
7
|
<b>NOTE:</b> the same types are also available via [DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/openui5) as [@types/openui5](https://www.npmjs.com/package/@types/openui5). Be aware of the remarks in the readme file, in particular about the [versioning difference](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/openui5#versioning).
|
|
8
8
|
|
|
@@ -18,7 +18,7 @@ These capabilities are available not only for OpenUI5 apps written in TypeScript
|
|
|
18
18
|
|
|
19
19
|
## Usage
|
|
20
20
|
|
|
21
|
-
The central entry point for all information about using UI5 with TypeScript (incl. sample apps and templates) is https://
|
|
21
|
+
The central entry point for all information about using UI5 with TypeScript (incl. sample apps and templates) is https://ui5.github.io/typescript.
|
|
22
22
|
|
|
23
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
24
|
|
|
@@ -32,7 +32,7 @@ For quick and easy scaffolding of a new UI5 app written in TypeScript, you can u
|
|
|
32
32
|
|
|
33
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.
|
|
34
34
|
|
|
35
|
-
For news related to the type definitions, in particular ones which require adaptation, please refer to the [Release Notes](https://
|
|
35
|
+
For news related to the type definitions, in particular ones which require adaptation, please refer to the [Release Notes](https://ui5.github.io/typescript/releasenotes.html).
|
|
36
36
|
|
|
37
37
|
## License
|
|
38
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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openui5/types",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.139.0",
|
|
4
4
|
"description": "OpenUI5 TypeScript Definitions",
|
|
5
|
-
"homepage": "https://
|
|
5
|
+
"homepage": "https://ui5.github.io/typescript",
|
|
6
6
|
"author": "SAP SE (https://www.sap.com)",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"types": "types/index.d.ts",
|
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.139.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
export interface IToolHeader {
|
|
@@ -6898,8 +6898,8 @@ declare module "sap/f/DynamicPageTitle" {
|
|
|
6898
6898
|
* Gets content of aggregation {@link #getActions actions}.
|
|
6899
6899
|
*
|
|
6900
6900
|
* The `DynamicPageTitle` actions.
|
|
6901
|
-
* **Note:** The `actions` aggregation accepts any UI5 control,
|
|
6902
|
-
*
|
|
6901
|
+
* **Note:** The `actions` aggregation accepts any UI5 control. However, it is best to use buttons or controls
|
|
6902
|
+
* that work well inside toolbars, such as those typically used with {@link sap.m.Toolbar} and {@link sap.m.OverflowToolbar}.
|
|
6903
6903
|
*
|
|
6904
6904
|
* **Note:** If the `snappedTitleOnMobile` aggregation is set, its content overrides this aggregation when
|
|
6905
6905
|
* the control is viewed on a phone mobile device and the `DynamicPageHeader` is in its collapsed (snapped)
|
|
@@ -7614,8 +7614,8 @@ declare module "sap/f/DynamicPageTitle" {
|
|
|
7614
7614
|
|
|
7615
7615
|
/**
|
|
7616
7616
|
* The `DynamicPageTitle` actions.
|
|
7617
|
-
* **Note:** The `actions` aggregation accepts any UI5 control,
|
|
7618
|
-
*
|
|
7617
|
+
* **Note:** The `actions` aggregation accepts any UI5 control. However, it is best to use buttons or controls
|
|
7618
|
+
* that work well inside toolbars, such as those typically used with {@link sap.m.Toolbar} and {@link sap.m.OverflowToolbar}.
|
|
7619
7619
|
*
|
|
7620
7620
|
* **Note:** If the `snappedTitleOnMobile` aggregation is set, its content overrides this aggregation when
|
|
7621
7621
|
* the control is viewed on a phone mobile device and the `DynamicPageHeader` is in its collapsed (snapped)
|