solid-ctrl-flow 1.0.8 → 1.0.9

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/index.mjs CHANGED
@@ -102,6 +102,7 @@ function memoProps(obj, keys = Object.keys(obj)) {
102
102
  const out = {};
103
103
  for (const elm of keys)
104
104
  Object.defineProperty(out, elm, {
105
+ enumerable: true,
105
106
  get: createMemo(() => obj[elm])
106
107
  });
107
108
  return out;
package/dist/index.umd.js CHANGED
@@ -104,6 +104,7 @@
104
104
  const out = {};
105
105
  for (const elm of keys)
106
106
  Object.defineProperty(out, elm, {
107
+ enumerable: true,
107
108
  get: solidJs.createMemo(() => obj[elm])
108
109
  });
109
110
  return out;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "solid-ctrl-flow",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Control flow components for solid-js",
5
5
  "author": "AFatNiBBa",
6
6
  "license": "ISC",