@openui5/types 1.113.0 → 1.115.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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.113.0
1
+ // For Library Version: 1.115.0
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -16,7 +16,7 @@ declare module "sap/ui/webc/common/WebComponent" {
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
- export default class WebComponent extends Control {
19
+ class WebComponent extends Control {
20
20
  /**
21
21
  * Constructs and initializes a Web Component Wrapper with the given `sId` and settings.
22
22
  *
@@ -56,6 +56,7 @@ declare module "sap/ui/webc/common/WebComponent" {
56
56
  */
57
57
  static getMetadata(): WebComponentMetadata;
58
58
  }
59
+ export default WebComponent;
59
60
 
60
61
  export interface $WebComponentSettings extends $ControlSettings {}
61
62
  }
@@ -67,7 +68,7 @@ declare module "sap/ui/webc/common/WebComponentMetadata" {
67
68
  * @SINCE 1.92.0
68
69
  * @EXPERIMENTAL (since 1.92.0) - The API might change. It is not intended for productive usage yet!
69
70
  */
70
- export default class WebComponentMetadata extends ElementMetadata {
71
+ class WebComponentMetadata extends ElementMetadata {
71
72
  /**
72
73
  * Creates a new metadata object for a WebComponent Wrapper subclass.
73
74
  */
@@ -100,6 +101,7 @@ declare module "sap/ui/webc/common/WebComponentMetadata" {
100
101
  */
101
102
  getTag(): string;
102
103
  }
104
+ export default WebComponentMetadata;
103
105
  }
104
106
 
105
107
  declare namespace sap {