Download Latest Version v3.13.1 source code.tar.gz (9.4 MB)
Email in envelope

Get an email when there's a new version of Beer CSS

Home / v3.13.1
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2025-12-05 2.3 kB
v3.13.1 source code.tar.gz 2025-12-05 9.4 MB
v3.13.1 source code.zip 2025-12-05 9.6 MB
Totals: 3 Items   19.0 MB 4

CHANGELOG 3.13.1

minzipped size

🚀 Added

  • Added support to output tag as a replacement for helper and error with multiline support (https://github.com/beercss/beercss/issues/403).
  • Added support to textarea rows attribute. If this attribute is not defined, the textarea will auto resize automatically. It uses a pure CSS solution on all Chromium based browsers, except on Apple devices. Other browsers will use JS.
  • Added wavy helper for circular progress element.
  • Added support to progress value atributte for circular progress element. It uses a pure CSS solution on all Chromium based browsers, except on Apple devices. Other browsers will use JS.

🩹 Fixed

  • None

⚠️ Breaking changes

  • Removed min and textarea helpers from field element.
  • Removed helper and error from field element (use <output> tag instead).

Removed min and textarea helpers from field element.

:::html
// before
<div class="field textarea min">
  <textarea></textarea>
</div>

:::html
// after
<div class="field">
  <textarea></textarea>
</div>

Removed helper and error from field element (use <output> tag instead).

:::html
// before
<div class="field">
  <input />
  <span class="helper">Helper text</span>
  <span class="error">Error text</span>
</div>

:::html
// after
<div class="field">
  <input />
  <output>Helper text</output>
  <output class="invalid">Error text</output>
</div>

:::html
// will show only the helper text
<div class="field">
  <input />
  <output>Helper text</output>
  <output class="invalid">Error text</output>
</div>

:::html
// will show only the error text
<div class="field invalid">
  <input />
  <output>Helper text</output>
  <output class="invalid">Error text</output>
</div>
Source: README.md, updated 2025-12-05