@openui5/ts-types 1.120.6 → 1.121.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 +1607 -886
- package/types/sap.m.d.ts +14867 -8380
- package/types/sap.tnt.d.ts +827 -247
- package/types/sap.ui.codeeditor.d.ts +57 -24
- package/types/sap.ui.commons.d.ts +2075 -673
- package/types/sap.ui.core.d.ts +5739 -3520
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +169 -104
- package/types/sap.ui.integration.d.ts +494 -388
- package/types/sap.ui.layout.d.ts +1345 -668
- package/types/sap.ui.mdc.d.ts +3395 -2036
- package/types/sap.ui.rta.d.ts +7 -7
- package/types/sap.ui.suite.d.ts +46 -12
- package/types/sap.ui.support.d.ts +58 -26
- package/types/sap.ui.table.d.ts +963 -627
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1979 -1249
- package/types/sap.ui.ux3.d.ts +1311 -491
- package/types/sap.ui.webc.common.d.ts +11 -9
- package/types/sap.ui.webc.fiori.d.ts +884 -213
- package/types/sap.ui.webc.main.d.ts +2815 -601
- package/types/sap.uxap.d.ts +626 -321
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.121.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
5
5
|
/**
|
|
6
|
+
* Namespace for UI5 Web Components Retrofit libraries
|
|
7
|
+
*
|
|
6
8
|
* @since 1.92.0
|
|
7
9
|
* @experimental (since 1.92.0)
|
|
8
|
-
*
|
|
9
|
-
* Namespace for UI5 Web Components Retrofit libraries
|
|
10
10
|
*/
|
|
11
11
|
namespace webc {
|
|
12
12
|
/**
|
|
13
|
+
* UI5 library: sap.ui.webc.common
|
|
14
|
+
*
|
|
13
15
|
* @since 1.92.0
|
|
14
16
|
* @experimental (since 1.92.0)
|
|
15
|
-
*
|
|
16
|
-
* UI5 library: sap.ui.webc.common
|
|
17
17
|
*/
|
|
18
18
|
namespace common {
|
|
19
19
|
namespace WebComponent {
|
|
@@ -28,14 +28,14 @@ declare namespace sap {
|
|
|
28
28
|
extends sap.ui.core.webc.$WebComponentSettings {}
|
|
29
29
|
|
|
30
30
|
/**
|
|
31
|
-
* @since 1.92.0
|
|
32
|
-
* @deprecated (since 1.118.0) - Use sap.ui.core.webc.WebComponent instead!
|
|
33
|
-
* @experimental (since 1.92.0) - The API might change. It is not intended for productive usage yet!
|
|
34
|
-
*
|
|
35
31
|
* Base Class for Web Components. Web Components are agnostic UI elements which can be integrated into the
|
|
36
32
|
* UI5 programming model by using this wrapper control. This wrapper control takes care to propagate the
|
|
37
33
|
* properties, the aggregations and the events. It also ensures to render the control and put the aggregated
|
|
38
34
|
* controls in the dedicated slots of the Web Component.
|
|
35
|
+
*
|
|
36
|
+
* @since 1.92.0
|
|
37
|
+
* @deprecated (since 1.118.0) - Use sap.ui.core.webc.WebComponent instead!
|
|
38
|
+
* @experimental (since 1.92.0) - The API might change. It is not intended for productive usage yet!
|
|
39
39
|
*/
|
|
40
40
|
class WebComponent extends sap.ui.core.webc.WebComponent {
|
|
41
41
|
/**
|
|
@@ -102,6 +102,7 @@ declare namespace sap {
|
|
|
102
102
|
* ```
|
|
103
103
|
*
|
|
104
104
|
*
|
|
105
|
+
*
|
|
105
106
|
* @returns Created class / constructor function
|
|
106
107
|
*/
|
|
107
108
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -121,6 +122,7 @@ declare namespace sap {
|
|
|
121
122
|
/**
|
|
122
123
|
* Returns a metadata object for class sap.ui.webc.common.WebComponent.
|
|
123
124
|
*
|
|
125
|
+
*
|
|
124
126
|
* @returns Metadata object describing this class
|
|
125
127
|
*/
|
|
126
128
|
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|