Skip to content

Releases: Power-Components/livewire-powergrid

v1.3.1

10 Oct 01:05
Compare
Choose a tag to compare

⚡️ PowerGrid 1.3 Released! ⚡️

✨New Features ✨

  • Demo command (Play with a table out of the box) php artisan powergrid:demo
  • Customize button placeholder
  • Record count with filter
  • Improved docs

🧰 Fixes 🧰

  • openModal parameter bug
    ** Long URL with GET method
  • Fixed bugs on DateTime filter
  • Fixed bugs on Create command

👀 Check it out!

v1.2.11

27 Sep 12:41
Compare
Choose a tag to compare

Fix:

  • Add new trait pagination
  • Refactoring

Translation:

v1.2.10

18 Sep 19:18
Compare
Choose a tag to compare

Added

Now you can export only selected per page or all (No changes are required)

image

v1.2.8

05 Sep 14:01
Compare
Choose a tag to compare
  • fix: duplicate query - #60

v1.2.7

31 Aug 20:08
Compare
Choose a tag to compare
  • added can method in actions - when false, it will not be visible on the screen

public function actions(): array
{
$canDelete = false;

 return [
    Button::add('destroy')
        ->caption(__('Delete'))
        ->caption(__('Delete'))
        **->can($canDelete)**
        ->class('bg-red-500 text-white')
        ->route('product.destroy', ['product' => 'id'])
        ->method('delete'),
    //...
 ];

}

https://livewire-powergrid.docsforge.com/#action-and-header-methods

v1.2.6

31 Aug 19:07
Compare
Choose a tag to compare
  • added can method in actions - when false, it will not be visible on the screen

public function actions(): array
{
$canDelete = false;

 return [
    Button::add('destroy')
        ->caption(__('Delete'))
        ->caption(__('Delete'))
        **->can($canDelete)**
        ->class('bg-red-500 text-white')
        ->route('product.destroy', ['product' => 'id'])
        ->method('delete'),
    //...
 ];

}

https://livewire-powergrid.docsforge.com/#action-and-header-methods

v1.2.5

28 Aug 12:52
Compare
Choose a tag to compare
  • Changed wire.input.lazy to wire.input.debounce issue 57

v1.2.4

27 Aug 16:02
Compare
Choose a tag to compare

v1.2.3

25 Aug 21:03
e12d746
Compare
Choose a tag to compare
  • Updated model.php so that the relationSearch() method works with polymorphic relationships, and for a nested relationship. 53

v1.2.2

21 Aug 15:47
Compare
Choose a tag to compare

Layout correction

  • Improvements to filter components
  • Responsive layout (tailwind)
  • DarkMode (tailwind) - see demo

Back-end fix

Display html on action - issues 38
News

  • ToggleColumns allows to show/hide columns - setUp - showToggleColumns
  • ThemeManager - Allows you to change a CSS behavior for a particular component class or globally - template
  • Release Notification - when you run the powergrid:create command, we can let you know if you are using an older version - notification
  • Method createFromFillable refactored for more databases support - pull 51