@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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.0
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
- * @SINCE 1.92.0
12
- * @EXPERIMENTAL (since 1.92.0) - The API might change. It is not intended for productive usage yet!
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
- * @SINCE 1.92.0
69
- * @EXPERIMENTAL (since 1.92.0) - The API might change. It is not intended for productive usage yet!
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 {