What's Changed
- Tags: New component for managing multiple tags by @iammuttaqi in #163
- Errors: New component by @robsontenorio in #170
- Header: allow customize
middle
css slot. by @robsontenorio in #164 - Drawer: fix
wire:model
placement by @robsontenorio in #166 - Drawer: embeds
x-card
by @robsontenorio in #167 - Card: add
progress-indicador
by @robsontenorio in #168 - Checkbox/Toggle: improvements by @robsontenorio in #181
- Button: add
no-wire-navigate
attribute by @robsontenorio in #182 - Input: fix validation by @robsontenorio in #183
- Input: fix
x-ref
if not usingmoney
by @robsontenorio in #185 - Choices: fix numeric/string by @robsontenorio in #184
- Table: fix
selectable
for 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