@wirestate/lit-signals 0.6.1 → 0.7.0-experimental.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.
- package/CHANGELOG.md +10 -1
- package/README.md +10 -17
- package/index.d.ts +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,15 @@
|
|
|
8
8
|
- `WireScope`: add new event/command/query subscribe-unsubscribe methods
|
|
9
9
|
- Export more alias / methods from `@wirestate/core`
|
|
10
10
|
- Export more alias / methods from `@wirestate/react-mobx`
|
|
11
|
+
- Export missing methods typing for `@wirestate/core`
|
|
12
|
+
- Extensive JSDoc coverage for wirestate packages
|
|
13
|
+
- `createIocContainer`: Added ability to instantly provide and activate entries, targeted seeds
|
|
14
|
+
- `createInjectablesProvider`: Removed.
|
|
15
|
+
- `IocProvider`: Removed
|
|
16
|
+
- `useRootContainer`: Added separate hook for store management in React tree
|
|
17
|
+
- `ContainerProvider`: Simpler provider for containers.
|
|
18
|
+
- `SubContainerProvider`: Added component solving problems of removed `createInjectablesProvider`
|
|
19
|
+
- `ContainerActivator`: Added separate activation component
|
|
11
20
|
|
|
12
21
|
## 0.6.3
|
|
13
22
|
|
|
@@ -70,6 +79,6 @@
|
|
|
70
79
|
- useService -> useInjection
|
|
71
80
|
- AbstractService::getService -> AbstractService::resolve
|
|
72
81
|
|
|
73
|
-
## 0.1.
|
|
82
|
+
## 0.1.0
|
|
74
83
|
|
|
75
84
|
- Initial release
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @wirestate/lit-signals
|
|
1
|
+
# @wirestate/lit-signals [[monorepo](https://github.com/Neloreck/wirestate)] [[docs](https://neloreck.github.io/wirestate/)]
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@wirestate/lit-signals)
|
|
4
4
|
[](https://github.com/Neloreck/wirestate/blob/master/LICENSE)
|
|
@@ -14,21 +14,14 @@ npm install @wirestate/lit-signals @lit-labs/signals
|
|
|
14
14
|
## Usage
|
|
15
15
|
|
|
16
16
|
```ts
|
|
17
|
-
import {
|
|
18
|
-
signal,
|
|
19
|
-
computed,
|
|
20
|
-
watch,
|
|
21
|
-
Signal,
|
|
22
|
-
State,
|
|
23
|
-
Computed,
|
|
24
|
-
} from '@wirestate/lit-signals';
|
|
17
|
+
import { signal, computed, watch, Signal, State, Computed } from "@wirestate/lit-signals";
|
|
25
18
|
```
|
|
26
19
|
|
|
27
20
|
Example service:
|
|
28
21
|
|
|
29
22
|
```ts
|
|
30
|
-
import { Injectable, Inject, WireScope } from
|
|
31
|
-
import { signal, computed, State, Computed } from
|
|
23
|
+
import { Injectable, Inject, WireScope } from "@wirestate/core";
|
|
24
|
+
import { signal, computed, State, Computed } from "@wirestate/lit-signals";
|
|
32
25
|
|
|
33
26
|
@Injectable()
|
|
34
27
|
export class CounterService {
|
|
@@ -46,14 +39,14 @@ export class CounterService {
|
|
|
46
39
|
Example Lit element:
|
|
47
40
|
|
|
48
41
|
```ts
|
|
49
|
-
import { LitElement, html } from
|
|
50
|
-
import { customElement } from
|
|
51
|
-
import { injection } from
|
|
52
|
-
import { watch, computed } from
|
|
42
|
+
import { LitElement, html } from "lit";
|
|
43
|
+
import { customElement } from "lit/decorators.js";
|
|
44
|
+
import { injection } from "@wirestate/lit";
|
|
45
|
+
import { watch, computed } from "@wirestate/lit-signals";
|
|
53
46
|
|
|
54
|
-
import { CounterService } from
|
|
47
|
+
import { CounterService } from "./services";
|
|
55
48
|
|
|
56
|
-
@customElement(
|
|
49
|
+
@customElement("my-component")
|
|
57
50
|
class MyComponent extends LitElement {
|
|
58
51
|
@injection({ injectionId: CounterService })
|
|
59
52
|
private readonly counterService!: CounterService;
|
package/index.d.ts
CHANGED
|
@@ -2,12 +2,12 @@ import { Signal } from 'signal-polyfill';
|
|
|
2
2
|
export { Signal, SignalWatcher, WatchDirective, WatchDirectiveFunction, computed, signal, watch, withWatch } from '@lit-labs/signals';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
|
-
* @group
|
|
5
|
+
* @group Signals
|
|
6
6
|
* @see {@link https://lit.dev/docs/data/signals/}
|
|
7
7
|
*/
|
|
8
8
|
type State<T> = Signal.State<T>;
|
|
9
9
|
/**
|
|
10
|
-
* @group
|
|
10
|
+
* @group Signals
|
|
11
11
|
* @see {@link https://lit.dev/docs/data/signals/}
|
|
12
12
|
*/
|
|
13
13
|
type Computed<T> = Signal.Computed<T>;
|