Releases: mojotech/jeet
Releases · mojotech/jeet
7.2.0
This release consists of the addition of PR #535, which adds a $nth
parameter for column
and span
mixins.
Full set of changes for this release:
- Add
jeet.nth
parameter to settings (defaults tochild
for backwards-compatibility) - Add
nth
parameter tocolumn
andspan
mixins - Add documentation regarding the new parameter
- Update stylus node test to show
nth
in use - Update sass playground to show
nth
in use
Huge thanks to @filipekiss for this contribution!
7.1.0
Features
- Make Jeet work via
@import 'jeet'
as well as@import 'jeet/index'
(so it's non-breaking).
7.0.0
Permanent migration guide available in the project's wiki: https://github.com/mojotech/jeet/wiki/Migrating-from-6-to-7
7.0.0 cleans up the project and gets it on a track for quickly iterating in accordance with semver.
Breaking changes
- 7.0.0 removes Bower completely
- 7.0.0 removes superfluous directories and renames jeet.scss and jeet.styl to index.scss and index.styl
- $uncycle is completely removed and forever banished
- shift() and unshift() have been renamed to move() and unmove() to prevent potential clashes with Stylus built-in shift() function
- All aliasing has been removed and will remain removed
- SCSS uses a map for its default settings now instead of individual variables
- cf() is now clearfix()
- $g in size-getting functions (column-width(), column-gutter()) has been changed to the more explicit $gutter
v6.1.5
v6.1.4
6.1.4
- Fixes
- Add fallback aliases to both SCSS and Stylus (due to the API changes in 6.1.3)
v6.1.3
- Fixes
npm install
should compile when pulling from GitHub
v6.1.2
- Fixes
- Critical bug in Scss port that caused nested columns to have incorrect gutters.
column-width()
andcolumn-gutter()
no longer ignore column nesting.
v6.1.1
- Fixes
- By adding
cycle
/uncycle
parameters tospan()
we are now able to clear floated elements so unequal height columns display as expected.
- By adding
v6.1.0
- Enhancements
- Add
important
parameter toedit()
mixin- Defaults to
false
. When set totrue
it adds the!important
flag to the CSS to force elements with backgrounds already set to show the debug grid.
- Defaults to
- Add
v6.0.0
- Enhancements
- Scss and Stylus version now output identical CSS
- Add fully comprehensive inline documentation
- All API functions namespaced with
jeet-
- All settings variables are now
!default
values so they can be overidden - Move
$width
to_settings
for easier modification - Add uncenter mixin
- Add alias for 'edit()' mixin (
debug()
) and add color parameter - Add
column-width()
andcolumn-gutter()
functions - Add tests for all API methods
- Add a 3.3 enhanced version of the 'jeet-reverse()' function
- Remove padding from
span()
andcolumn()
mixins
- Fixes
- Algorithm for reversing list
- Spelling errors
- Remove the cycle and uncycle parameters from span
- Breaking changes
- Remove IE7 support for edit
- Remove prefixing from jeet. Please use something like autoprefixer for adding vendor prefixes