Jeet Versions Save

The most advanced, yet intuitive, grid system available for Sass or Stylus

7.2.0

6 years ago

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 to child for backwards-compatibility)
  • Add nth parameter to column and span 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

7 years ago

Features

  • Make Jeet work via @import 'jeet' as well as @import 'jeet/index' (so it's non-breaking).

7.0.0

7 years ago

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

7 years ago

6.1.5

This is a re-release of the code from 6.1.2 because npm does not allow unpublishing of releases that are older than 24 hours!

v6.1.4

7 years ago

6.1.4

  • Fixes
    • Add fallback aliases to both SCSS and Stylus (due to the API changes in 6.1.3)

v6.1.3

7 years ago
  • Fixes
    • npm install should compile when pulling from GitHub

v6.1.2

9 years ago
  • Fixes
    • Critical bug in Scss port that caused nested columns to have incorrect gutters.
    • column-width() and column-gutter() no longer ignore column nesting.

v6.1.1

9 years ago
  • Fixes
    • By adding cycle/uncycle parameters to span() we are now able to clear floated elements so unequal height columns display as expected.

v6.1.0

9 years ago
  • Enhancements
    • Add important parameter to edit() mixin
      • Defaults to false. When set to true it adds the !important flag to the CSS to force elements with backgrounds already set to show the debug grid.

v6.0.0

9 years ago
  • 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() and column-gutter() functions
    • Add tests for all API methods
    • Add a 3.3 enhanced version of the 'jeet-reverse()' function
    • Remove padding from span() and column() 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