avosignals 1.0.1 → 1.0.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/dist/singal-watch.d.ts +5 -0
- package/dist/singal-watch.js +1 -1
- package/package.json +2 -1
package/dist/singal-watch.d.ts
CHANGED
package/dist/singal-watch.js
CHANGED
|
@@ -5,7 +5,7 @@ import { singalToJSON } from "./avosignals-util";
|
|
|
5
5
|
@customElement("signal-watch")
|
|
6
6
|
export class SignalWatch extends LitElement {
|
|
7
7
|
watcher = new SignalWatcher(this);
|
|
8
|
-
@property()
|
|
8
|
+
@property({ attribute: false })
|
|
9
9
|
accessor signals = [];
|
|
10
10
|
_subscribers = [];
|
|
11
11
|
render() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "avosignals",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "A lightweight signaling library for web components and modern web applications with Lit integration.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"signals",
|
|
@@ -34,5 +34,6 @@
|
|
|
34
34
|
"bugs": {
|
|
35
35
|
"url": "https://github.com/anatolipr/avos/issues"
|
|
36
36
|
},
|
|
37
|
+
"homepage": "https://github.com/anatolipr/avos/tree/main/packages/avosignals#readme",
|
|
37
38
|
"license": "MIT"
|
|
38
39
|
}
|