As a result of #440, component styles are no longer part of the JS bundle. They reside in the extracted react-ui[.development].css file. Therefore:
The Sass scenario is not supported now. Importing just the theme.scss, foundation.scss and helpers.scss makes no sense. Users still have to load the entire CSS bundle which is the only way to get components styles, and it already contains those global style layers.
To allow tree shaking, more steps need to be taken from our side.
As a result of #440, component styles are no longer part of the JS bundle. They reside in the extracted
react-ui[.development].css
file. Therefore:theme.scss
,foundation.scss
andhelpers.scss
makes no sense. Users still have to load the entire CSS bundle which is the only way to get components styles, and it already contains those global style layers.Closes #517.