@openui5/types 1.115.0 → 1.115.1
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 +860 -754
- package/types/sap.m.d.ts +8300 -6415
- package/types/sap.tnt.d.ts +81 -74
- package/types/sap.ui.codeeditor.d.ts +40 -25
- package/types/sap.ui.commons.d.ts +991 -672
- package/types/sap.ui.core.d.ts +2853 -2263
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +85 -47
- package/types/sap.ui.integration.d.ts +355 -280
- package/types/sap.ui.layout.d.ts +399 -416
- package/types/sap.ui.mdc.d.ts +1016 -792
- package/types/sap.ui.rta.d.ts +7 -7
- package/types/sap.ui.suite.d.ts +25 -11
- package/types/sap.ui.support.d.ts +12 -13
- package/types/sap.ui.table.d.ts +498 -354
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1228 -894
- package/types/sap.ui.ux3.d.ts +1023 -613
- package/types/sap.ui.webc.common.d.ts +7 -9
- package/types/sap.ui.webc.fiori.d.ts +578 -408
- package/types/sap.ui.webc.main.d.ts +1521 -878
- package/types/sap.uxap.d.ts +304 -267
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.115.
|
|
1
|
+
// For Library Version: 1.115.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/webc/common/library" {}
|
|
4
4
|
|
|
@@ -8,15 +8,15 @@ declare module "sap/ui/webc/common/WebComponent" {
|
|
|
8
8
|
import WebComponentMetadata from "sap/ui/webc/common/WebComponentMetadata";
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
|
-
* @
|
|
12
|
-
* @
|
|
11
|
+
* @since 1.92.0
|
|
12
|
+
* @experimental (since 1.92.0) - The API might change. It is not intended for productive usage yet!
|
|
13
13
|
*
|
|
14
14
|
* Base Class for Web Components. Web Components are agnostic UI elements which can be integrated into the
|
|
15
15
|
* UI5 programming model by using this wrapper control. This wrapper control takes care to propagate the
|
|
16
16
|
* properties, the aggregations and the events. It also ensures to render the control and put the aggregated
|
|
17
17
|
* controls in the dedicated slots of the Web Component.
|
|
18
18
|
*/
|
|
19
|
-
class WebComponent extends Control {
|
|
19
|
+
export default class WebComponent extends Control {
|
|
20
20
|
/**
|
|
21
21
|
* Constructs and initializes a Web Component Wrapper with the given `sId` and settings.
|
|
22
22
|
*
|
|
@@ -56,7 +56,6 @@ declare module "sap/ui/webc/common/WebComponent" {
|
|
|
56
56
|
*/
|
|
57
57
|
static getMetadata(): WebComponentMetadata;
|
|
58
58
|
}
|
|
59
|
-
export default WebComponent;
|
|
60
59
|
|
|
61
60
|
export interface $WebComponentSettings extends $ControlSettings {}
|
|
62
61
|
}
|
|
@@ -65,10 +64,10 @@ declare module "sap/ui/webc/common/WebComponentMetadata" {
|
|
|
65
64
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
66
65
|
|
|
67
66
|
/**
|
|
68
|
-
* @
|
|
69
|
-
* @
|
|
67
|
+
* @since 1.92.0
|
|
68
|
+
* @experimental (since 1.92.0) - The API might change. It is not intended for productive usage yet!
|
|
70
69
|
*/
|
|
71
|
-
class WebComponentMetadata extends ElementMetadata {
|
|
70
|
+
export default class WebComponentMetadata extends ElementMetadata {
|
|
72
71
|
/**
|
|
73
72
|
* Creates a new metadata object for a WebComponent Wrapper subclass.
|
|
74
73
|
*/
|
|
@@ -101,7 +100,6 @@ declare module "sap/ui/webc/common/WebComponentMetadata" {
|
|
|
101
100
|
*/
|
|
102
101
|
getTag(): string;
|
|
103
102
|
}
|
|
104
|
-
export default WebComponentMetadata;
|
|
105
103
|
}
|
|
106
104
|
|
|
107
105
|
declare namespace sap {
|