solid-ctrl-flow 5.0.0 → 5.0.1

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
@@ -219,7 +219,7 @@ const memoProps = (obj, equals) => new Proxy(obj, new MemoPropsHandler(getOwner(
219
219
  const splitAndMemoProps = (obj, ...keys) => {
220
220
  const out = splitProps(obj, ...keys);
221
221
  for (var i = 0; i < keys.length; i++)
222
- out[i] = memoProps(out[i], keys[i]);
222
+ out[i] = memoProps(out[i]);
223
223
  return out;
224
224
  };
225
225
  class MemoPropsHandler {
package/dist/index.umd.js CHANGED
@@ -221,7 +221,7 @@
221
221
  const splitAndMemoProps = (obj, ...keys) => {
222
222
  const out = solidJs.splitProps(obj, ...keys);
223
223
  for (var i = 0; i < keys.length; i++)
224
- out[i] = memoProps(out[i], keys[i]);
224
+ out[i] = memoProps(out[i]);
225
225
  return out;
226
226
  };
227
227
  class MemoPropsHandler {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "solid-ctrl-flow",
3
- "version": "5.0.0",
3
+ "version": "5.0.1",
4
4
  "description": "Control flow components for solid-js",
5
5
  "author": "AFatNiBBa",
6
6
  "license": "ISC",