Skip to content

Releases: SavvyWombat/tailwindcss-grid-named-lines

2.0.1

04 Feb 02:21
Compare
Choose a tag to compare

Fixed misspelling of Tailwind CSS in documentation

2.0.0

14 Dec 00:17
Compare
Choose a tag to compare
  • Tested against TailwindCSS v3
  • Updated minimum node requirements (v12)
  • Updated documentation

1.5.0: fix lodash dependency in package.json

23 Feb 00:21
Compare
Choose a tag to compare
  • Fixed dependency for lodash in package.json.
  • Minor formatting improvements in README.
  • Remove .idea from npm package.

1.4.1

11 Dec 06:09
Compare
Choose a tag to compare
Fixed links for bugs and homepage in package.json

1.4.0

11 Dec 06:06
Compare
Choose a tag to compare
Added npmignore to lighten the package size.

Support for TailwindCSS version 2

27 Nov 03:52
Compare
Choose a tag to compare

This version will work in TailwindCSS version 1 and 2.

1.2.2

26 Oct 02:42
Compare
Choose a tag to compare
back out of malformed repeats gracefully

Fix documentation

25 Oct 06:51
Compare
Choose a tag to compare
1.2.1

fix lint errors

Support for repeat()

25 Oct 06:45
Compare
Choose a tag to compare

Line names defined inside a repeat() for gridTemplateColumns and gridTempalteRows will now generate indexed utilities.

For example:

// tailwindcss.config.js
module.exports = {
  theme: {
    gridTemplateColumns: {
      'default-layout': 'repeat(3, [left] 1fr [right])',
    }
  }
}

This will generate:

col-start-left-1
col-start-left-2
col-start-left-3

col-start-right-1
col-start-right-2
col-start-right-3

col-end-left-1
col-end-left-2
col-end-left-3

col-end-right-1
col-end-right-2
col-end-right-3

1.1.6

21 Oct 06:35
Compare
Choose a tag to compare
fixed repeated name labels (should be `line n` not `line-n`)