CHANGELOG 3.7.14
🚀 Added
- Refactored the JS file, break into small parts
- Added
ui("mode", "auto")
to set the mode according to device color scheme #360 - Added max height for autoresized textarea #297
- Added logic tabs to
<nav class="tabbed">
elements #355 - Added color to wave effect, it will get the foreground color by default
- Added outline to buttons and links (#371)
- Updated font icons
- Updated border color of default
chip
, like MD3 guidelines - Added outline to checkbox, radio, switch and slider
- Preventing import cycles on the JS part (#376)
- Using
nav.row
likea.row
to avoid nested<a>
markup #391
🩹 Fixed
- Fixed multi-level menu #359
- Fixed focus on search #357
- Fixed vertical slider on touchable devices #354
- Fixed scroll dialog on touchable devices #339
- Fixed color on autofill inputs, using
--on-surface
color #367 #332 - Fixed
chip
letter spacing when usedbutton
tag - Fixed rounded
chip
- Fixed color on transparent buttons #373
- Fixed label up on filled textarea #372
- Fixed circle progress on iOS #370
- Fixed side effetct on other elements, when use progress #388
- Fixed imports #386
- Fixed active tabs #393
- Fixed navigations with buttons and vertical borders #392
⚠️ Breaking changes
- If you don't set
light
ordark
onbody
, the mode will be set according to device color scheme
If you don't set light
or dark
on body
, the mode will be set according to device color scheme
// before, it was light
<body>
// after, it will add light/dark according to device color scheme
<body class="light|dark">