Skip to content

Releases: jmjuanes/lowcss

v0.11.0 (2023-04-22)

22 Apr 21:38
d3339af
Compare
Choose a tag to compare

🔥 Breaking

  • Changed default separator between utility class and value: switched back to - instead of : (e.g. text-blue-500) (284fdcc).

🚀 New features

  • Added letter spacing utilities (283dddd).
  • Added more font sizes (0e0bb13).
  • New required pseudo selector (2f69d0c).
  • Added position selectors (first, last, odd and even) to background color utilities (918052e).

📚 Documentation

v0.10.0 (2023-04-13)

13 Apr 18:09
e0d865a
Compare
Choose a tag to compare

🚀 New features

  • Added utilities for all border sides (border-top, border-bottom, border-left and border-right) (c32a41b).
  • Added utilities for setting the radius of individual corners (1a0cdb1).
  • Added more max-height and max-width values (9640e9d).
  • Added new 2xl breakpoint (fcea288).
  • Added first and last variants to display utilities (8ad747e).
  • Added new scrollbar class to style scrollbar (03939a5).

📚 Documentation

v0.9.0 (2023-02-03)

03 Feb 19:55
3f37819
Compare
Choose a tag to compare

🚀 New features

  • Added focus-within variant (47a243c).
  • Added group variant selectors: group-hover, group-focus and group-focus-within (432dac8).

v0.8.1 (2023-01-27)

27 Jan 00:32
5fa03ee
Compare
Choose a tag to compare

🐛 Bug fixes

  • Fixed bug in width utility sizes (b194185).

v0.8.0 (2023-01-24)

24 Jan 22:55
1bf8446
Compare
Choose a tag to compare

🚀 New features

  • Added background-clip utilities (367364c).
  • Added background gradient utilities (df95fed).

v0.7.0 (2023-01-21)

21 Jan 22:46
eef5036
Compare
Choose a tag to compare

🚀 New features

  • Added new animation utilities (e050238).
  • Added new filter utilities (043a7d3).
  • Added new transform utilities (4652a77).
  • Added new keyframes module (bf93fa4).

🐛 Bug fixes

  • Fixed prefix in utilities generator (40c8b3e).

v0.6.0 (2023-01-07)

07 Jan 16:43
993cd0d
Compare
Choose a tag to compare

💥 Breaking changes

  • New API for generating utilities (bbd7c01). Now importing the low module in SASS will not generate the utilities. Instead, you should include the modules that you want to use.

🚀 New features

  • Added low.apply mixin for applying utilities in your custom CSS (ea66a56).
  • Added $sizes and $space configuration variables (5b59240).
  • Added $extend configuration variable to add new values in utilities without overriding the existing ones (2274b45).

v0.5.1 (2022-12-25)

25 Dec 09:41
042d055
Compare
Choose a tag to compare

🐛 Bug fixes

  • Fixed input selectors in forms module (2ad5973).

v0.5.0 (2022-12-24)

24 Dec 16:28
2aef8b1
Compare
Choose a tag to compare

🚀 New features

  • Added outline utilities: outline-color, outline-offset, outline-style and outline-width (fabf67f).
  • Added checked variant to all color utilities (ce43f8d).
  • Added base styles for forms (520235c).

🧰 Improvements

  • Simplified border widths (6829907).
  • Deprecated $reset configuration variable: now you can use the $include and $exclude lists to enable or disable reset and forms modules (6ccf555).

🐛 Bug fixes

  • Fixed typo in font weight utility (05c2b77).

v0.4.0 (2022-12-21)

21 Dec 18:59
08c0160
Compare
Choose a tag to compare

💥 Breaking changes

  • Changed class names policy and default separators for utility keys, pseudo selectors, and breakpoints.
    • Default utility selectors: now we are using a : between the utility alias and the key. For example: text:blue-500.
    • Pseudo selectors: has been moved to the end of the selector. For example: bg:transparent:hover.
    • Breakpoints: has been moved to the end of the selector, and now a @ is used between the utility selector and the breakpoint name. For example: w:12@sm.
  • $screens variable has been renamed as $breakpoints.
  • Changed folder structure for SCSS files.

🚀 New features

  • Added new utility values for fonts (font sizes and font families), sizes (width and height), and spaces (margin and padding).
  • Added active variant for colors utilities.
  • Improved configuration and utility API.

🐛 Bug fixes

  • Fixed a terrible bug in the generated CSS that caused the duplication of utilities when generating responsive variants.

🗑️ Deprecation

  • Deprecated the container component, as we can now use the new values of the max-width utility for generating responsive containers.