@limetech/lime-web-components 4.50.0-alpha.1 → 4.50.0-alpha.4
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 +30 -0
- package/README.md +1 -0
- package/dist/core/plugin-loader.d.ts +4 -4
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
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.4](https://github.com/Lundalogik/lime-web-components/compare/v4.50.0-alpha.3...v4.50.0-alpha.4) (2022-07-12)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* trigger release of all packages ([2909cf7](https://github.com/Lundalogik/lime-web-components/commit/2909cf75c7bc5adb1c5381304add8f7b10b62e06))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [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)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @limetech/lime-web-components
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [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)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* **loader:** remove return types ([c7f33b5](https://github.com/Lundalogik/lime-web-components/commit/c7f33b5e0d6462534a00e1a0e7f4e3a477601347))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
# [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)
|
|
7
37
|
|
|
8
38
|
**Note:** Version bump only for package @limetech/lime-web-components
|
package/README.md
CHANGED
|
@@ -11,3 +11,4 @@ Please use **lime-project** to generate new plugins and components. **lime-web-c
|
|
|
11
11
|
For a list of changes, see the [CHANGELOG](https://github.com/Lundalogik/lime-web-components/blob/master/CHANGELOG.md).
|
|
12
12
|
|
|
13
13
|
Read the full documentation at [https://lundalogik.github.io/lime-web-components/](https://lundalogik.github.io/lime-web-components/)
|
|
14
|
+
|
|
@@ -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():
|
|
11
|
+
connectedCallback(): any;
|
|
12
12
|
/**
|
|
13
13
|
* Do any initializations required for the plugin in this method
|
|
14
14
|
*/
|
|
15
|
-
componentWillLoad():
|
|
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():
|
|
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():
|
|
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.
|
|
3
|
+
"version": "4.50.0-alpha.4",
|
|
4
4
|
"author": "Lime Technologies",
|
|
5
5
|
"homepage": "https://github.com/Lundalogik/lime-web-components",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
"url": "https://github.com/Lundalogik/lime-web-components/issues"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@limetech/lime-web-components-commands": "^4.
|
|
40
|
-
"@limetech/lime-web-components-decorators": "^4.50.0-alpha.
|
|
41
|
-
"@limetech/lime-web-components-interfaces": "^4.
|
|
42
|
-
"@limetech/lime-web-components-testing": "^4.50.0-alpha.
|
|
39
|
+
"@limetech/lime-web-components-commands": "^4.50.0-alpha.4",
|
|
40
|
+
"@limetech/lime-web-components-decorators": "^4.50.0-alpha.4",
|
|
41
|
+
"@limetech/lime-web-components-interfaces": "^4.50.0-alpha.4",
|
|
42
|
+
"@limetech/lime-web-components-testing": "^4.50.0-alpha.4"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "50b55e75ee769099ac1165ee36c583c8565ec511"
|
|
45
45
|
}
|