CHANGELOG 3.4.2
🚀 Added
- Added support for RTL (#207).
- Added new surface colors according to guidelines (#214).
- Added new colors section on homepage.
- Added support to input color, using the same logic of input file (#218).
- Added more use cases for input file/color.
- Added vertical divider #227
🩹 Fixed
- Fixed input label up on file.
- Fixed main content #228 (reverted in v3.4.2)
⚠️ Breaking changes
- Updated the html of input file inside
field
elements.
// Updated the html of input file inside field elements
// before
<div class="field">
<input type="text">
<input type="file">
</div>
// after
<div class="field">
<input type="file">
<input type="text">
</div>
// Added more use cases for input file/color
// inside fields
<div class="field">
<input type="color|file">
<input type="text">
</div>
// inside button elements
<button class="circle">
<input type="color|file">
</button>
// inside other elements
<*>
<input type="color|file">
</*>