nexa-runtime 0.8.1 → 0.8.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.
Files changed (2) hide show
  1. package/dist/vdom/dom.js +3 -0
  2. package/package.json +2 -2
package/dist/vdom/dom.js CHANGED
@@ -100,6 +100,9 @@ export const domOptions = {
100
100
  else
101
101
  el.removeAttribute(key);
102
102
  }
103
+ else if (typeof nextValue === 'object' && nextValue !== null) {
104
+ el[key] = nextValue;
105
+ }
103
106
  else {
104
107
  if (nextValue == null) {
105
108
  el.removeAttribute(key);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nexa-runtime",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -13,7 +13,7 @@
13
13
  }
14
14
  },
15
15
  "dependencies": {
16
- "nexa-reactivity": "0.8.1"
16
+ "nexa-reactivity": "0.8.2"
17
17
  },
18
18
  "files": [
19
19
  "dist"