-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feature request] Iterable support #2
Comments
Just wanted to add, I ended up arriving on a pattern that works pretty well with the current API. I needed a way to access other inputs to my component from within the list items, and the solution I came up with seems to work pretty well while also making the
|
Hey, thanks for the update. Ok, it's still a little bit of wrapping but with your pattern you can avoid converting between |
Cool, sounds good. re: that pattern, just to clarify, it was really only about making values other than the main list accessible from within the template; resolving the iterable vs array issue was incidental. (I'm not super familiar with |
Currently
vsData
is expected to beObservable<any[]>
. It'd be useful if it were expanded to support the more generalObservable<Iterable<any>>
, which would allow it to take such types as ES6 Maps and Sets and Immutable.js data structures.The text was updated successfully, but these errors were encountered: