@targoninc/jess-components 0.0.6 → 0.0.8

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -154,7 +154,7 @@ class DomNode {
154
154
  return this._node;
155
155
  }
156
156
  wrapProperty(property, value) {
157
- if (value && value.constructor === Signal) {
157
+ if (value && isSignal(value)) {
158
158
  const sig = value;
159
159
  this._node[property] = sig.value;
160
160
  sig.subscribe((newValue) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@targoninc/jess-components",
3
3
  "type": "module",
4
- "version": "0.0.6",
4
+ "version": "0.0.8",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "files": [
@@ -17,7 +17,7 @@
17
17
  "prepublishOnly": "bun run build"
18
18
  },
19
19
  "dependencies": {
20
- "@targoninc/jess": "^0.0.10"
20
+ "@targoninc/jess": "^0.0.11"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@types/bun": "latest",