Releases: lara-zeus/popover
Releases · lara-zeus/popover
1.1.6
1.1.5
What's Changed
- fix formatState by @andreazanini in #18
New Contributors
- @andreazanini made their first contribution in #18
Full Changelog: 1.1.4...1.1.5
1.1.4
1.1.3
What's Changed
- Bump ramsey/composer-install from 2 to 3 by @dependabot in #13
- fix popover in table by @atmonshi in #15
Full Changelog: 1.1.2...1.1.3
1.1.2
1.1.1
1.1.0
What's Changed
if you're using it with livewire component, you must add a unique key as the example:
in your form:
please notice the type
is our key per column
PopoverColumn::make('name')
//.... other config
->content(fn ($record) => view('filament.user-card', ['record' => $record, 'type' => 'name'])),
PopoverColumn::make('email')
//.... other config
->content(fn ($record) => view('filament.user-card', ['record' => $record, 'type' => 'email'])),
now in your LW view:
<livewire:user-card :$record :key="$record->id.'-'.$type"/>
Full Changelog: 1.0.4...1.1.0
1.0.4
1.0.3
1.0.2
What's Changed
- add description by @a7medKhalid in #3
New Contributors
- @a7medKhalid made their first contribution in #3
Full Changelog: 1.0.1...1.0.2