| Name | Modified | Size | Downloads / 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
🚀 Added
- Added support to output tag as a replacement for
helperanderrorwith multiline support (https://github.com/beercss/beercss/issues/403). - Added support to textarea rows attribute. If this attribute is not defined, the
textareawill auto resize automatically. It uses a pure CSS solution on all Chromium based browsers, except on Apple devices. Other browsers will use JS. - Added
wavyhelper for circularprogresselement. - Added support to progress value atributte for circular
progresselement. 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
minandtextareahelpers fromfieldelement. - Removed
helperanderrorfromfieldelement (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>