CHANGELOG 3.1.0
ADDED
- Added
slider
element (#115) - Added globals for Typescript,
ui
,beercss
andmaterialDynamicColors
(*.d.ts file) (#123) - Added support to use
<svg>
and<img>
in<i>
element (#126) - Added support to use
<svg>
directly in<article>
,<button>
andchip
elements (#126) - Added custom icons to
checkbox
,radio
andswitch
elements (#126) - Added blur helper
- Added search section on homepage
- Added shadowed section on homepage
- Added blurred section on homepage
UPDATED
- Updated icons section
- Updated media section
- Updated switches section
- Updated card section
- Updated checkbox section
- Updated radio section
- Updated layout section
- Refactored some css, we added new features and reduced the size of final bundle :)
BREAKING CHANGES
- If you use Typescript, you need to remove the globals
ui
,beercss
,materialDynamicColors
from your project (check your *.d.ts file) - If you use
switch
element with custom icons, addicon
helper.
// before
<label class="switch">
<input type="checkbox">
<span>
<i>home</i>
</span>
</label>
// after
<label class="switch icon">
<input type="checkbox">
<span>
<i>home</i>
</span>
</label>