There is one breaking change (though the type error will make it obvious) to the type of boxShadow.
The rest of old API still available, though, with deprecation warnings.
boxShadow now takes a NonEmpty list of BoxShadow values.
Create BoxShadow values with the provided functions shadow*.
Modify using provided functions bs*.
Test suite + changelog included. The tests are a little noisy; there's probably an acceptable way to factor out all of the browser prefixes from the test results.
This does interact slightly with #158 and #159 so if you want to merge all three, I'd be happy to rebase this, first.
Fixes #146 (also #144)
There is one breaking change (though the type error will make it obvious) to the type of
boxShadow
. The rest of old API still available, though, with deprecation warnings.boxShadow
now takes aNonEmpty
list ofBoxShadow
values.BoxShadow
values with the provided functionsshadow*
.bs*
.Test suite + changelog included. The tests are a little noisy; there's probably an acceptable way to factor out all of the browser prefixes from the test results.
This does interact slightly with #158 and #159 so if you want to merge all three, I'd be happy to rebase this, first.