@openui5/ts-types 1.99.1 → 1.102.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 +2015 -119
- package/types/sap.m.d.ts +17146 -1257
- package/types/sap.tnt.d.ts +279 -19
- package/types/sap.ui.codeeditor.d.ts +89 -8
- package/types/sap.ui.commons.d.ts +3784 -313
- package/types/sap.ui.core.d.ts +6986 -704
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +5 -1
- package/types/sap.ui.integration.d.ts +336 -25
- package/types/sap.ui.layout.d.ts +1851 -199
- package/types/sap.ui.mdc.d.ts +17 -1
- package/types/sap.ui.rta.d.ts +5 -1
- package/types/sap.ui.suite.d.ts +87 -6
- package/types/sap.ui.support.d.ts +39 -12
- package/types/sap.ui.table.d.ts +1061 -121
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +2704 -202
- package/types/sap.ui.ux3.d.ts +2379 -181
- package/types/sap.ui.webc.common.d.ts +11 -4
- package/types/sap.ui.webc.fiori.d.ts +1717 -333
- package/types/sap.ui.webc.main.d.ts +6464 -966
- package/types/sap.uxap.d.ts +903 -88
|
@@ -1,7 +1,13 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.102.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
5
|
+
/**
|
|
6
|
+
* @SINCE 1.92.0
|
|
7
|
+
* @EXPERIMENTAL (since 1.92.0)
|
|
8
|
+
*
|
|
9
|
+
* Namespace for UI5 Web Components Retrofit libraries
|
|
10
|
+
*/
|
|
5
11
|
namespace webc {
|
|
6
12
|
/**
|
|
7
13
|
* @SINCE 1.92.0
|
|
@@ -28,9 +34,6 @@ declare namespace sap {
|
|
|
28
34
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
29
35
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
30
36
|
* of the syntax of the settings object.
|
|
31
|
-
*
|
|
32
|
-
* This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.Control#constructor
|
|
33
|
-
* sap.ui.core.Control} can be used.
|
|
34
37
|
*/
|
|
35
38
|
constructor();
|
|
36
39
|
|
|
@@ -39,6 +42,8 @@ declare namespace sap {
|
|
|
39
42
|
* with the information contained in `oClassInfo`.
|
|
40
43
|
*
|
|
41
44
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
45
|
+
*
|
|
46
|
+
* @returns Created class / constructor function
|
|
42
47
|
*/
|
|
43
48
|
static extend<T extends Record<string, unknown>>(
|
|
44
49
|
/**
|
|
@@ -57,6 +62,8 @@ declare namespace sap {
|
|
|
57
62
|
): Function;
|
|
58
63
|
/**
|
|
59
64
|
* Returns a metadata object for class sap.ui.webc.common.WebComponent.
|
|
65
|
+
*
|
|
66
|
+
* @returns Metadata object describing this class
|
|
60
67
|
*/
|
|
61
68
|
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
62
69
|
}
|