What's Changed
- Tags: New component for managing multiple tags by @iammuttaqi in #163
- Errors: New component by @robsontenorio in #170
- Header: allow customize
middlecss slot. by @robsontenorio in #164 - Drawer: fix
wire:modelplacement by @robsontenorio in #166 - Drawer: embeds
x-cardby @robsontenorio in #167 - Card: add
progress-indicadorby @robsontenorio in #168 - Checkbox/Toggle: improvements by @robsontenorio in #181
- Button: add
no-wire-navigateattribute by @robsontenorio in #182 - Input: fix validation by @robsontenorio in #183
- Input: fix
x-refif not usingmoneyby @robsontenorio in #185 - Choices: fix numeric/string by @robsontenorio in #184
- Table: fix
selectablefor pagination by @robsontenorio in #186
Breaking change ⚠️
Actually it is more a DX than BC.
Now <x-drawer> has an embed <x-card />. So, you don't need place it manually anymore.
FROM
<x-drawer id="my-drawer">
<x-card title="Settings" subtitle="Main profile" separator>
....
</x-card>
</x-drawer>TO
<x-drawer id="my-drawer" title="Hello" title="Settings" subtitle="Main profile" separator>
....
</x-drawer>Full Changelog: 1.6.0...1.7.0