@ktjs/core 0.29.0 → 0.29.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/index.mjs +1 -1
  2. package/package.json +2 -2
package/dist/index.mjs CHANGED
@@ -90,7 +90,7 @@ function attrIsObject(element, attr) {
90
90
  }
91
91
  }
92
92
  for (const key in attr) {
93
- if (key === "k-if" || key === "k-model" || key === "ref" || key === "class" || key === "className" || key === "style" || key === "children" || key === "k-html") {
93
+ if (key === "k-if" || key === "k-model" || key === "k-for" || key === "k-key" || key === "ref" || key === "class" || key === "className" || key === "style" || key === "children" || key === "k-html" || key === "k-else") {
94
94
  continue;
95
95
  }
96
96
  const o = attr[key];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ktjs/core",
3
- "version": "0.29.0",
3
+ "version": "0.29.2",
4
4
  "description": "Core functionality for kt.js - DOM manipulation utilities with JSX/TSX support",
5
5
  "type": "module",
6
6
  "module": "./dist/index.mjs",
@@ -50,4 +50,4 @@
50
50
  "build": "rollup -c rollup.config.mjs",
51
51
  "dev": "rollup -c rollup.config.mjs -w"
52
52
  }
53
- }
53
+ }