You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My understanding is that Solid.js uses this library to convert JSX to JavaScript that manipulates the DOM.
In experimenting with the Squint library, I've noticed that if a JSX value contains a custom collection of JSX nodes that are not in an array, these nodes are not inserted in the DOM. Instead, a warning message is printed to the console stating Unrecognized value. Skipped inserting. I assume this message is generated by the following code:
If the collection is iterable (i.e. it has Symbol.iterator set), is there a reason not to iterate over it and extract its elements that way? A number of Squint's functions return a LazyIterable object rather than an array, and it would be helpful if those were supported.
The text was updated successfully, but these errors were encountered:
My understanding is that Solid.js uses this library to convert JSX to JavaScript that manipulates the DOM.
In experimenting with the Squint library, I've noticed that if a JSX value contains a custom collection of JSX nodes that are not in an array, these nodes are not inserted in the DOM. Instead, a warning message is printed to the console stating
Unrecognized value. Skipped inserting
. I assume this message is generated by the following code:dom-expressions/packages/dom-expressions/src/client.js
Lines 460 to 470 in 82c377d
If the collection is iterable (i.e. it has
Symbol.iterator
set), is there a reason not to iterate over it and extract its elements that way? A number of Squint's functions return aLazyIterable
object rather than an array, and it would be helpful if those were supported.The text was updated successfully, but these errors were encountered: