Skip to content

Latest commit

 

History

History
136 lines (68 loc) · 3.33 KB

CHANGELOG.md

File metadata and controls

136 lines (68 loc) · 3.33 KB

Changelog

All notable changes to Popover will be documented in this file

1.1.6 - 2024-08-27

What's Changed

  • Change font & icon size to default for tables by @devSviat in #21

New Contributors

  • @devSviat made their first contribution in #21

Full Changelog: https://github.com/lara-zeus/popover/compare/1.1.5...1.1.6

1.1.5 - 2024-03-13

What's Changed

  • fix formatState by @andreazanini in #18

New Contributors

  • @andreazanini made their first contribution in #18

Full Changelog: https://github.com/lara-zeus/popover/compare/1.1.4...1.1.5

1.1.4 - 2024-03-09

What's Changed

  • add support for format state by @atmonshi in #17

Full Changelog: https://github.com/lara-zeus/popover/compare/1.1.3...1.1.4

1.1.3 - 2024-03-07

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: https://github.com/lara-zeus/popover/compare/1.1.2...1.1.3

1.1.2 - 2024-02-25

What's Changed

  • 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

1.1.1 - 2024-02-24

What's Changed

  • add support for hover trigger by @atmonshi in #10

Full Changelog: https://github.com/lara-zeus/popover/compare/1.1.0...1.1.1

1.1.0 - 2024-02-09

What's Changed

  • 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

1.0.4 - 2024-01-19

What's Changed

  • 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

1.0.3 - 2024-01-10

What's Changed

  • 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

1.0.2 - 2024-01-09

What's Changed

  • add description by @a7medKhalid in #3

New Contributors

  • @a7medKhalid made their first contribution in #3

Full Changelog: https://github.com/lara-zeus/popover/compare/1.0.1...1.0.2

1.0.0 - 2024-01-01

What's Changed

  • initial release