All notable changes to Popover
will be documented in this file
- add support for format state by @atmonshi in lara-zeus#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 lara-zeus#13
- fix popover in table by @atmonshi in lara-zeus#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 lara-zeus#11
Full Changelog: https://github.com/lara-zeus/popover/compare/1.1.1...1.1.2
- add support for hover trigger by @atmonshi in lara-zeus#10
Full Changelog: https://github.com/lara-zeus/popover/compare/1.1.0...1.1.1
- refactor to alpine anchor by @atmonshi in lara-zeus#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 lara-zeus#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 lara-zeus#4
Full Changelog: https://github.com/lara-zeus/popover/compare/1.0.2...1.0.3
- add description by @a7medKhalid in lara-zeus#3
- @a7medKhalid made their first contribution in lara-zeus#3
Full Changelog: https://github.com/lara-zeus/popover/compare/1.0.1...1.0.2
- initial release