Skip to content

Releases: mojotech/jeet

7.2.0

05 Sep 00:36
Compare
Choose a tag to compare

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

22 Nov 16:33
Compare
Choose a tag to compare

Features

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

7.0.0

25 Oct 18:16
Compare
Choose a tag to compare

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

29 Sep 10:35
Compare
Choose a tag to compare

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

23 Jun 15:15
Compare
Choose a tag to compare

6.1.4

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

v6.1.3

22 Jun 15:27
Compare
Choose a tag to compare
  • Fixes
    • npm install should compile when pulling from GitHub

v6.1.2

19 Sep 18:15
Compare
Choose a tag to compare
  • 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

16 Sep 20:25
Compare
Choose a tag to compare
  • 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

16 Sep 20:23
Compare
Choose a tag to compare
  • 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

11 Sep 13:55
Compare
Choose a tag to compare
  • 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