Hi! This project looks absolutely beautiful but I just imported GithubPicker and ChromePicker into my project and my prod-mode output after bundling increased by 143,413 bytes which is huge.
Is this something that will be addressed in #575 ?
Here's a bit more detail about where the size is coming from:
react-color 160.77 KB
lodash 139.92 KB
tinycolor2 35.84 KB
reactcss 12.82 KB
material-colors 5.48 KB
@icons/material 3.18 KB
prop-types 2.67 KB
^^ sizes are unminified btw
I second this. By doing a quick check on bundlephobia, it seems like this package isn't bundled using ES modules.

You can actually get some very big bundle size wins by:
module property to the published package.json. (reference)material-colorsNone of these have to breaking changes btw. These could be addressed in a minor before 3.x.
Let me know if you're accepting PRs, this is a great lib and I'd happy to contribute!
+1
@casesandberg @atfzl I would suggest re-opening this (I think it auto closed when the PR merged). Still a bit to go but HUGE improvement 馃帀
Most helpful comment
I second this. By doing a quick check on bundlephobia, it seems like this package isn't bundled using ES modules.
Source
You can actually get some very big bundle size wins by:
moduleproperty to the published package.json. (reference)material-colorsNone of these have to breaking changes btw. These could be addressed in a minor before 3.x.
Let me know if you're accepting PRs, this is a great lib and I'd happy to contribute!