@limetech/lime-web-components 4.50.0-alpha.0 → 4.50.0-alpha.3

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/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [4.50.0-alpha.3](https://github.com/Lundalogik/lime-web-components/compare/v4.50.0-alpha.2...v4.50.0-alpha.3) (2022-07-11)
7
+
8
+ **Note:** Version bump only for package @limetech/lime-web-components
9
+
10
+
11
+
12
+
13
+
14
+ # [4.50.0-alpha.2](https://github.com/Lundalogik/lime-web-components/compare/v4.50.0-alpha.1...v4.50.0-alpha.2) (2022-07-11)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **loader:** remove return types ([c7f33b5](https://github.com/Lundalogik/lime-web-components/commit/c7f33b5e0d6462534a00e1a0e7f4e3a477601347))
20
+
21
+
22
+
23
+
24
+
25
+ # [4.50.0-alpha.1](https://github.com/Lundalogik/lime-web-components/compare/v4.50.0-alpha.0...v4.50.0-alpha.1) (2022-07-08)
26
+
27
+ **Note:** Version bump only for package @limetech/lime-web-components
28
+
29
+
30
+
31
+
32
+
6
33
  # [4.50.0-alpha.0](https://github.com/Lundalogik/lime-web-components/compare/v4.49.1-alpha.6...v4.50.0-alpha.0) (2022-07-07)
7
34
 
8
35
 
@@ -8,21 +8,21 @@ export interface LimePluginLoader extends LimeWebComponent {
8
8
  * the DOM. For a plugin loader component, it should happen only once. The
9
9
  * method must be present on the component for technical reasons.
10
10
  */
11
- connectedCallback(): void | Promise<any>;
11
+ connectedCallback(): any;
12
12
  /**
13
13
  * Do any initializations required for the plugin in this method
14
14
  */
15
- componentWillLoad(): void | Promise<any>;
15
+ componentWillLoad(): any;
16
16
  /**
17
17
  * This method will never be called since the component will never
18
18
  * be updated. It must still be present on the component though.
19
19
  */
20
- componentWillUpdate(): void | Promise<any>;
20
+ componentWillUpdate(): any;
21
21
  /**
22
22
  * This method will be invoked every time the component is removed from
23
23
  * the DOM. For a plugin loader component, it should never happen since
24
24
  * the component will live during the whole lifespan of the application.
25
25
  * The method must be present on the component for technical reasons.
26
26
  */
27
- disconnectedCallback(): void | Promise<any>;
27
+ disconnectedCallback(): any;
28
28
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@limetech/lime-web-components",
3
- "version": "4.50.0-alpha.0",
3
+ "version": "4.50.0-alpha.3",
4
4
  "author": "Lime Technologies",
5
5
  "homepage": "https://github.com/Lundalogik/lime-web-components",
6
6
  "license": "Apache-2.0",
@@ -37,9 +37,9 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@limetech/lime-web-components-commands": "^4.49.1-alpha.6",
40
- "@limetech/lime-web-components-decorators": "^4.49.1-alpha.6",
40
+ "@limetech/lime-web-components-decorators": "^4.50.0-alpha.1",
41
41
  "@limetech/lime-web-components-interfaces": "^4.49.1-alpha.6",
42
- "@limetech/lime-web-components-testing": "^4.49.1-alpha.6"
42
+ "@limetech/lime-web-components-testing": "^4.50.0-alpha.3"
43
43
  },
44
- "gitHead": "3487a0fe8c6bcea547a9831e38f6bbcdd59fd9d3"
44
+ "gitHead": "2d964462582f150de33ad5149956e2fa1e5c3310"
45
45
  }