Christopher Turner
Christopher Turner
Is there a reason for an array trees, would it not be better to merge trees from within the module?
Apologies for being way behind on this, I've been really busy and just haven't had time to get a release together. _Polymer 3 Update_ - New cleaner and pure API...
PR #137 Checkout https://github.com/tur-nr/polymer-redux/tree/dev/v2.x for the new API. ```sh npm install --save polymer-redux@next ```
@RoXuS both libraries have taken inspiration from https://gist.github.com/kevinpschaaf/995c9d1fd0f58fe021b174c4238b38c3, however, polymer-redux gives a different API to the connected elements. Both can map state to properties in similar ways. However, when it...
Hey, thanks alot. I don't know much about TypeScript so I didn't do the Typings. How are you going with the remaining points?
Closing issue due to lack of response/interest in TypeScript.
Please, add the `index.d.ts` file to the repo. This would be great. I don't use TS for coding, however I'm a big fan of DefinitelyTyped.
I think this is down to the use of the library. You should be using higher order elements that make use of the Mixin and then pass the properties down....
In case a developer wants to subscribe to state changes to perform logic outside of bindings. Much like the `store.subscribe` method. I can't presume every element has access to the...
Hey, yes it would be a nice addition to pass the properties to reselect. So let's discuss implementation; ```javascript // ./polymer-redux.js function compileProps(element, properties) { return Object.keys(properties).reduce((props, name) => Object.assign(props,...