@wirestate/lit-signals 0.7.0-experimental.1 → 0.7.0-experimental.2
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 +8 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
##
|
|
1
|
+
## Unreleased
|
|
2
2
|
|
|
3
3
|
- Add `useScope` in `@wirestate/react`
|
|
4
4
|
- New lit elements modules - `@wirestate/lit` and `@wirestate/lit-signals`
|
|
@@ -10,13 +10,19 @@
|
|
|
10
10
|
- Export more alias / methods from `@wirestate/react-mobx`
|
|
11
11
|
- Export missing methods typing for `@wirestate/core`
|
|
12
12
|
- Extensive JSDoc coverage for wirestate packages
|
|
13
|
-
- `createIocContainer`:
|
|
13
|
+
- `createIocContainer`: Removed in favor of `createContainer`
|
|
14
|
+
- `createContainer`: Added ability to instantly provide and activate entries, targeted seeds
|
|
14
15
|
- `createInjectablesProvider`: Removed.
|
|
15
16
|
- `IocProvider`: Removed
|
|
16
17
|
- `useRootContainer`: Added separate hook for store management in React tree
|
|
17
18
|
- `ContainerProvider`: Simpler provider for containers.
|
|
18
19
|
- `SubContainerProvider`: Added component solving problems of removed `createInjectablesProvider`
|
|
19
20
|
- `ContainerActivator`: Added separate activation component
|
|
21
|
+
- Replace IoC-context provision APIs with `ContainerContext`, `containerProvide`, `ContainerProvider`, and `useContainerProvision`
|
|
22
|
+
- Replace injectables-provider APIs with `subContainerProvide`, `SubContainerProvider`, and `useSubContainerProvider`
|
|
23
|
+
- Provide plain `Container` values through Lit context instead of wrapper objects
|
|
24
|
+
- Recreate managed child containers when the parent container context changes
|
|
25
|
+
- Add `useContainer` and `useScope` consumers in `@wirestate/lit`
|
|
20
26
|
|
|
21
27
|
## 0.6.3
|
|
22
28
|
|