Chris Zempel

Results 12 comments of Chris Zempel

It appears `lit-element` doesn’t pull in `@polymer/polymer/lib/mixins/property-effects.js`, it only pulls in `@polymer/lib/mixins/properties-mixin.js'`. Gonna attempt a switch to `lit-html` and see if I can make any headway...

I ended up needing to basically yank out the polymer-redux bit and rewrite portions of it. results here: https://github.com/ZempTime/marsfarm-ui/blob/master/src/mixins/marsfarm-polymer-redux.js Additionally, because I stopped using the production dist of redux, had...

One of the issues was, `event.target` behaves differently with shadow dom. This click actually happened on the `Selectr` component, but the syntax of accessing where the click was obscures it....

Next issue I ran into was when setting to "multiple": ``` selectr.js:1479 Uncaught (in promise) TypeError: Cannot read property 'selected' of undefined at Selectr.setSelected (selectr.js:1479) at Selectr.build (selectr.js:569) at Selectr.render...

Oh my gosh! So helpful! I'm not doing Ruby/Rails full time anymore, but next coding session I'll sit down and get a PR in before starting on my personal stuff.

I've received unofficial word via the gitter that unfortunately, development here has halted. Not gonna post alternatives or close this issue (I feel that'd be stepping on the toes of...

I'm also getting a pretty much identical stack trace when I updated to > "babel-preset-minify": "^0.5.0-alpha.9",

Hey, I'm new to Polymer, and having a lot of troubles understanding how to use this component (I'm just fiddling around in a cli-starter-kit-generated 2.x app.) I'd be happy to...

I feel as though we should provide some guidance how/where to specify and use events. ## Event Guide **In General**: * When and where possible, set `composed: false`. This prevents...

Re: existing cowpaths. No, I'm unaware of any. In the case of `close-sheet`, it's a way of exposing the interface of the component (the method that closes the sheet) to...