All notable changes to Popover
will be documented in this file
- Change font & icon size to default for tables by @devSviat in #21
- @devSviat made their first contribution in #21
Full Changelog: https://github.com/lara-zeus/popover/compare/1.1.5...1.1.6
- fix formatState by @andreazanini in #18
- @andreazanini made their first contribution in #18
Full Changelog: https://github.com/lara-zeus/popover/compare/1.1.4...1.1.5
- add support for format state by @atmonshi in #17
Full Changelog: https://github.com/lara-zeus/popover/compare/1.1.3...1.1.4
- Bump ramsey/composer-install from 2 to 3 by @dependabot in #13
- fix popover in table by @atmonshi in #15
Full Changelog: https://github.com/lara-zeus/popover/compare/1.1.2...1.1.3
- add a form component for popover as a placeholder by @atmonshi in #11
Full Changelog: https://github.com/lara-zeus/popover/compare/1.1.1...1.1.2
- add support for hover trigger by @atmonshi in #10
Full Changelog: https://github.com/lara-zeus/popover/compare/1.1.0...1.1.1
- refactor to alpine anchor by @atmonshi in #7
using alpine
x-anchor
instead of tooltip js
if you're using it with livewire component, you must add a unieqe 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: https://github.com/lara-zeus/popover/compare/1.0.4...1.1.0
- hide tooltip container if the content is null by @atmonshi in #8
Full Changelog: https://github.com/lara-zeus/popover/compare/1.0.3...1.0.4
- set separate views for column and entry by @atmonshi in #4
Full Changelog: https://github.com/lara-zeus/popover/compare/1.0.2...1.0.3
- add description by @a7medKhalid in #3
- @a7medKhalid made their first contribution in #3
Full Changelog: https://github.com/lara-zeus/popover/compare/1.0.1...1.0.2
- initial release