Liang

Results 26 comments of Liang

Maybe it can be used by implementing a parcel plugin.

By the time of the development, babel 7 is already used. I have not tested it with babel 6.x. Maybe it's time to do a little upgrade?

Check this out, same issue https://github.com/gaoxiaoliangz/react-scoped-css/issues/2

Consider a situation like this ```jsx const Select = { Fragment: () => fragment } const App = () => { return } ``` In this situation `Select.Fragment` is supposed...

Adding `pragmaFragIdentifier` config doesn't seem to be a good idea, this job is supposed to be done by the plugin. Maybe it's just enough to just bypass adding `data-v-*` for...

There are two ways to achieve this: 1. use the `/deep/` selector 2. If you can control the impl of Component, let it pass down the data-v-{hash} prop, then the...

Current implementation will only add data-v hash to jsx element. To enable the use of React.createElement, more work needs to be done. I have a couple of ideas upon that,...

Thanks for the feedback, I'll add support for it when I have time.

In order to override third party styles you have to use `/deep/` eg: ```js export default (props) => { return ( 1 ); }; ``` ```css .my-select /deep/ .ant-select-single.ant-select-show-arrow .ant-select-selection-item,...

> @gaoxiaoliangz I'm trying to use the `/deep/` selector, but I'm getting errors from sass-loader: `SassError: expected selector.`. > > Are there any other things that must be done in...