Skip to content

Commit

Permalink
Version 4.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoinel committed Mar 6, 2024
1 parent 1b502de commit db7dd87
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 8 deletions.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [4.0.4] - 2024-03-06

### Fixed

- Make sure the `GridLayout` and `GridGap` plugins are working with prefix.

## [4.0.3] - 2024-03-05

### Changed
Expand Down
10 changes: 5 additions & 5 deletions docs/GridLine.html
Original file line number Diff line number Diff line change
Expand Up @@ -510,11 +510,11 @@ <h3>Responsive</h3>
<figure class="code-example">
<figcaption class="code-example-filename">document.html</figcaption>
<pre class="code-example-code"><code class="language-html">&lt;div class="
grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4
gap-x-gutter
gap-y-48 md:gap-y-64 grid-line-x-24 md:grid-line-x-32 xl:grid-line-x-32
grid-line-xfull grid-line-x-primary
grid-line-y-0 md:grid-line-y md:grid-line-y-primary md:grid-line-x-tertiary
grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4
gap-x-gutter
gap-y-48 md:gap-y-64 grid-line-x-24 md:grid-line-x-32 xl:grid-line-x-32
grid-line-xfull grid-line-x-primary
grid-line-y-0 md:grid-line-y md:grid-line-y-primary md:grid-line-x-tertiary
lg:grid-line-y-secondary lg:grid-line-x-0
xl:grid-line-x xl:grid-line-x-primary"></code></pre>
</figure>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@area17/a17-tailwind-plugins",
"version": "4.0.3",
"version": "4.0.4",
"author": "A17 <[email protected]> (https://area17.com/)",
"description": "A collection of Tailwind plugins to help build responsive design systems in collaboration with A17 design and development build methodologies",
"main": "index.js",
Expand Down
4 changes: 3 additions & 1 deletion src/GridGap/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,7 @@ module.exports = function ({ addBase, prefix }) {
},
};

addBase(styles);
addBase(styles, {
respectPrefix: false,
});
};
4 changes: 3 additions & 1 deletion src/GridLayout/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,7 @@ module.exports = function ({ addComponents, theme, prefix }) {
};
}

addComponents(styles);
addComponents(styles, {
respectPrefix: false,
});
};

0 comments on commit db7dd87

Please sign in to comment.