Skip to content

Releases: Power-Components/livewire-powergrid

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

v1.1.7

11 Aug 14:20
Compare
Choose a tag to compare
  • Fixed when not passed relationSearch method

v1.1.6

11 Aug 12:15
Compare
Choose a tag to compare
  • add relationSearch - doc
  • change powergrid:create command - doc
  • Add Farsi/Persian Language - pull 38