Releases: cmalven/sass-toolkit
Releases · cmalven/sass-toolkit
8.0.0
8.0.0 Beta 1
Changed
- Now requires the use of Sass Modules (
@useand@forward)
7.0.0
6.0.1
6.0.0
This is a big release with some breaking changes that allow even more powerful typography and a renaming of the fluid sizing toolkit to better reflect the flexibility of the system.
Changed
- Individual type style sets can now customize properties other than
font-sizeat a given breakpoint. For instance, you can changeline-height(even fluidly!) at different breakpoints. - The
font-smoothingproperty has been removed from$type-styles - The
$fluid-sizesconfiguration variable has been renamed to$sizes - The
fluid-sizeandget-fluid-sizemixins have been renamed tosizeandget-sizeto reflect the fact that the values set there do not necessarily need to be fluid.
6.0.0-beta.4
Sass toolkit shouldn't handle font smoothing.
6.0.0-beta.3
By sure to import map-extend in type styles.
6.0.0-beta.2
Bump beta version.
6.0.0-beta.1
Allow workflow to be manually run.
5.0.0
Changed
- CSS custom property values are no longer output based on a variable. You'll now need to manually use a mixin to output custom properties and helper classes similar to the following:
// Toolkit
@import '@malven/sass-toolkit/color';
@import '@malven/sass-toolkit/fluid-size';
@import '@malven/sass-toolkit/type-styles';
// Toolkit Properties + Helpers
@include output-fluid-size-custom-properties;
@include output-color-helpers;
@include output-type-helpers;
@include output-fluid-size-helpers;Helpers are completely optional, but output-fluid-size-custom-properties is required for @include fluid-size() to work properly.