@openui5/ts-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 +1 -1
- package/package.json +1 -1
- package/types/sap.f.d.ts +5 -5
- package/types/sap.m.d.ts +480 -19
- 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 +113 -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
|
@@ -6,7 +6,7 @@ This npm package contains the types signatures (based on deprecated globals, see
|
|
|
6
6
|
|
|
7
7
|
<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/types](https://www.npmjs.com/package/@openui5/types) package. So better use that one instead of this package.
|
|
8
8
|
|
|
9
|
-
The central entry point for all information about using UI5 with TypeScript (incl. sample apps and templates) is at https://
|
|
9
|
+
The central entry point for all information about using UI5 with TypeScript (incl. sample apps and templates) is at https://ui5.github.io/typescript.
|
|
10
10
|
|
|
11
11
|
## Status
|
|
12
12
|
|
package/package.json
CHANGED
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 namespace sap {
|
|
4
4
|
/**
|
|
@@ -9006,8 +9006,8 @@ declare namespace sap {
|
|
|
9006
9006
|
|
|
9007
9007
|
/**
|
|
9008
9008
|
* The `DynamicPageTitle` actions.
|
|
9009
|
-
* **Note:** The `actions` aggregation accepts any UI5 control,
|
|
9010
|
-
*
|
|
9009
|
+
* **Note:** The `actions` aggregation accepts any UI5 control. However, it is best to use buttons or controls
|
|
9010
|
+
* that work well inside toolbars, such as those typically used with {@link sap.m.Toolbar} and {@link sap.m.OverflowToolbar}.
|
|
9011
9011
|
*
|
|
9012
9012
|
* **Note:** If the `snappedTitleOnMobile` aggregation is set, its content overrides this aggregation when
|
|
9013
9013
|
* the control is viewed on a phone mobile device and the `DynamicPageHeader` is in its collapsed (snapped)
|
|
@@ -13644,8 +13644,8 @@ declare namespace sap {
|
|
|
13644
13644
|
* Gets content of aggregation {@link #getActions actions}.
|
|
13645
13645
|
*
|
|
13646
13646
|
* The `DynamicPageTitle` actions.
|
|
13647
|
-
* **Note:** The `actions` aggregation accepts any UI5 control,
|
|
13648
|
-
*
|
|
13647
|
+
* **Note:** The `actions` aggregation accepts any UI5 control. However, it is best to use buttons or controls
|
|
13648
|
+
* that work well inside toolbars, such as those typically used with {@link sap.m.Toolbar} and {@link sap.m.OverflowToolbar}.
|
|
13649
13649
|
*
|
|
13650
13650
|
* **Note:** If the `snappedTitleOnMobile` aggregation is set, its content overrides this aggregation when
|
|
13651
13651
|
* the control is viewed on a phone mobile device and the `DynamicPageHeader` is in its collapsed (snapped)
|