solid-js 2.0.0-experimental.2 → 2.0.0-experimental.4

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/dev.cjs CHANGED
@@ -198,6 +198,7 @@ function Repeat(props) {
198
198
  const options = "fallback" in props ? {
199
199
  fallback: () => props.fallback
200
200
  } : {};
201
+ options.from = () => props.from;
201
202
  return signals.createMemo(signals.repeat(() => props.count, index => typeof props.children === "function" ? props.children(index) : props.children, options), undefined, {
202
203
  name: "value"
203
204
  }) ;
package/dist/dev.js CHANGED
@@ -268,6 +268,7 @@ function Repeat(props) {
268
268
  fallback: () => props.fallback
269
269
  }
270
270
  : {};
271
+ options.from = () => props.from;
271
272
  return createMemo(
272
273
  repeat(
273
274
  () => props.count,