Mateusz Burzyński
Mateusz Burzyński
> Switching (adding) named exports should be a practicable solution for now. We'd be open to accepting a PR that would add a named export "alias" for all our default...
The workaround is to do this: ```ts import _createCache from '@emotion/cache' const createCache = _createCache.default ```
Yeah, the size increase is worrying for a feature that is very rarely requested. I don't recall this being raised in the issues for a very long time (I might...
Please always try to share a repro case in a runnable form - either by providing a git repository to clone or a codesandbox. OSS maintainers usually can't afford the...
> Hello @Andarist, It is a private project. The problem is, I can't reproduce on another simple app. That is only an indication that this might be related to your...
Then you should look into why `className`s are different here - I really don't have magic tips here, I would myself just start debugging to get to the bottom of...
It shouldn't matter - because JS should automatically stringify this if you really are passing a number there. Could you prepare repro case? Without such, we'll have to close the...
Ok, so I've debugged this a little bit and it seems that `StyleSheet.create` outputs an object with numbers as values and currently, we allow for interpolating those values (numbers) -...
Both are workarounds though. Could you describe complexity of implementing a "proper" solution? I suspect it would require tracking more information about already parsed~ stuff to differentiate regular numbers from...
No workaround - somebody from the community has to step up to implement a fix for this as our team do not have resources to handle issues related to the...