Skip to content

Releases: jantinnerezo/livewire-alert

v3.0.2

12 Mar 15:25
2428163
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.0.1...v3.0.2

v3.0.1 Release

14 Oct 14:41
Compare
Choose a tag to compare

Release Update: Livewire Alert Package v3.0.1

I recently released the Livewire Alert v3.0 to support the v3.0 version of Livewire. Upon review, many of you discovered an oversight in the release: the package dependencies were not correctly updated to reflect the compatibility with Livewire 3.0.

I apologize for any inconvenience this may have caused. To address this:

I've updated the dependencies to ensure compatibility with Livewire 3.0.
A new release with the corrected dependencies has been published. I recommend updating to this latest version to avoid any potential issues.

v3.0 Release

13 Oct 17:23
53a4c04
Compare
Choose a tag to compare

Official Support for Livewire 3 stable release

I'm excited to announce that this release introduces support for Livewire 3 stable release!

Installation

composer update jantinnerezo/livewire-alert

What's Changed

New Contributors

Full Changelog: https://github.com/jantinnerezo/livewire-alert/compare/2.2.7...v3.0@beta

2.2.7

15 Feb 18:08
a017d3f
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.2.6...2.2.7

v2.2.6

15 Mar 17:45
352d137
Compare
Choose a tag to compare

HOTFIX

Fixed #78 callbacksKeyAllowed is not defined by declaring the variable.

v2.2.5

15 Mar 09:46
07783af
Compare
Choose a tag to compare

Added

  • Allow empty string type #75
  • Configurations keys with javascript callbacks #76

Thanks to @gpibarra for submitting the PRs. 👌🏽

v2.2.4

11 Feb 07:54
8c133de
Compare
Choose a tag to compare

Added

  • Support for Laravel 9 #71

2.2.3

21 Nov 21:26
8225e49
Compare
Choose a tag to compare

Hotfix

  • Fixed flash message undefined data variable

2.2.2

20 Nov 18:38
Compare
Choose a tag to compare

Performance updates

Added

  • Alert onConfirmed onDismissed onDenied and onProgress events should now emit to component that called the alert so it won't emit to every component in your project.
  • Ability to only emit to specified component.

Emit events to only specific component. Instead of passing the listener directly to the event, pass an array with component and listeners keys.

'onConfirmed' => [
   'component' => 'livewire-component',
   'listener' => 'confirmed'
];

2.2.1

09 Nov 12:09
3f955ec
Compare
Choose a tag to compare

Bug fixes

  • Fixed update 2.1.9 error #52 refactor alert trait
  • Fixed 2.2.0 break inputAttribute on confirm #54
  • SweetAlert2: Unknown parameter "onConfirmed" #55

Added

You can now pass extra parameters to any alert events with the data key.

$this->alert('info', 'Extra paramters', [
    'onConfirmed' => 'confirmed',
    'showConfirmButton' => true,
    'data' => []
]);
public function confirmed($params)
{
    // Retrieve data
    $params['data'];
}