CHANGELOG 3.2.13
🚀 Added
- Added mixed round helpers like
{size}-round {direction}-round
(#170) - Added pure CSS method for label up (don't need to add a background on label anymore) (#163)
- Added typescript strict null check on all project (#171)
🩹 Fixed
- Fixed resized layout (#175)
- Fixed rich tooltip example on homepage (#166)
- Fixed data-ui behavior to not focus on element after close a dialog (#165)
- Fixed sliders (#181)
🚩 Examples
// Mixed of round helpers
<article class="small-round right-round">...<article>
<article class="large-round right-round bottom-round">...<article>
// Pure CSS method to label up
// Input with border
<div class="field label border">
<input placeholder=" ">
<label>Label</label>
</div>
// Input without border
<div class="field label">
<input placeholder=" ">
<label>Label</label>
</div>