Pavel Klimashkin
Pavel Klimashkin
https://github.com/babel/babel/releases/tag/v6.19.0 "Make the plugin work standalone with parameters/destructuring plugins"
Since Babel 6.22 `transform-object-rest-spread` works fine finally, there is no need to use `es2015-node6/object-rest` preset anymore, just `es2015-node6` is quite enough. I think this issue and #4 can be closed
I would recommend my https://github.com/klimashkin/css-modules-theme, it's much faster and is react version agnostic.
Moreover, if I have hundred components with themr and redux, I need to write everywhere the same thing ``` function mapThemrProps(props, theme) { const { composeTheme, innerRef, mapThemrProps, themeNamespace, ...rest...
@raveclassic > why can't we just pass actual ref prop through all the hocs? Because of React design - child component never receive it, react uses it to pass component...
That's why I asked @javivelasco at https://github.com/javivelasco/react-css-themr/pull/46#issuecomment-284483101 about introducing to react community new convention with two properties: `innerRef` and `passInnerRef`. I'm pretty happy with current `withRef` and `getWrappedInstance` convention -...
The new ref forwarding api is coming to react https://github.com/bvaughn/rfcs/blob/ref-forwarding/text/0000-ref-forwarding.md  https://reactjs.org/docs/forwarding-refs.html
Looks like it's fixed in Chrome 93+ with the rollout of the GridNG https://blogs.windows.com/msedgedev/2021/08/10/compat2021-css-grid-gridng/
Not sure that I've got your question correctly, but if you have a Button with different types, the easiest way to style it would be something like that. Assume your...
I think to resolve it you can use: 1. `gulp-replace` to simply replace script with whatever you want 2. Use 'handlers' option to modify source in build time as you...