@openui5/types 1.117.1 → 1.119.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/package.json +1 -1
- package/types/sap.f.d.ts +536 -4
- package/types/sap.m.d.ts +696 -169
- package/types/sap.tnt.d.ts +17 -15
- package/types/sap.ui.codeeditor.d.ts +5 -2
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1406 -228
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -4
- package/types/sap.ui.integration.d.ts +78 -3
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1586 -533
- package/types/sap.ui.rta.d.ts +1 -4
- 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 +1183 -128
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -20
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +76 -35
- package/types/sap.ui.webc.fiori.d.ts +85 -85
- package/types/sap.ui.webc.main.d.ts +225 -225
- package/types/sap.uxap.d.ts +116 -1
package/types/sap.ui.rta.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.119.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/rta/api/startAdaptation" {
|
|
4
4
|
import Control from "sap/ui/core/Control";
|
|
@@ -7,7 +7,6 @@ declare module "sap/ui/rta/api/startAdaptation" {
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @since 1.83
|
|
10
|
-
* @experimental (since 1.83)
|
|
11
10
|
*
|
|
12
11
|
* Starts UI adaptation, initiated for an application at the passed root control instance. With this API
|
|
13
12
|
* you are also able to modify the UI adaptation plugins list and or add some event handler functions to
|
|
@@ -65,7 +64,6 @@ declare module "sap/ui/rta/api/startKeyUserAdaptation" {
|
|
|
65
64
|
|
|
66
65
|
/**
|
|
67
66
|
* @since 1.71
|
|
68
|
-
* @experimental (since 1.71)
|
|
69
67
|
*
|
|
70
68
|
* Starts key user adaptation, initiated for an application at the passed root control instance. It subsequently
|
|
71
69
|
* extends to all valid child controls.
|
|
@@ -88,7 +86,6 @@ declare module "sap/ui/rta/api/startKeyUserAdaptation" {
|
|
|
88
86
|
declare module "sap/ui/rta/enablement/TestDelegate" {
|
|
89
87
|
/**
|
|
90
88
|
* @since 1.77
|
|
91
|
-
* @experimental (since 1.77)
|
|
92
89
|
*
|
|
93
90
|
* sap.ui.fl Delegate to be used in elementActionTests.
|
|
94
91
|
*/
|
package/types/sap.ui.suite.d.ts
CHANGED