Jason Miller

Results 1189 comments of Jason Miller

I use CSS animations (I am very lazy)

Ah - I don't do cross-component transitions, just animations when inserting elements. I know @prateekbh is working on something really awesome for full animations though, maybe he'll link to it...

This is a CommonJS module though - `default` is not something you should ever expect to be supported in a CommonJS module. Isn't there a mode for TypeScript that automatically...

Looks like a new addition to the API.

Hi @mikestead - would something like this work? ```js if (typeof process!=='undefined' && process.env.NODE_ENV!=='production') { } else { } ``` FWIW, I have found that you have to add a...

Indeed, that's a very good point. I generally compile PropTypes out, so I might have missed something important for those who don't do the same. It's possible that PropTypes might...

That's actually the sole reason `PropTypes` is kept out of the `preact-compat` bundle - licensing. It's just referenced as an external dependency. It's just exported as a proxy object, but...

I think the two have diverged fairly significantly, so a sync seems difficult. The original was from React 0.14.3 I believe. I would prefer to replace this repo with a...

Nah - sadly, like all of the add-on "modules" that is just an alias into React's internals: https://unpkg.com/react-addons-transition-group

That's exactly how I feel haha