Skip to content

Releases: wire-elements/modal

1.0.8

07 Apr 12:37

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.0.7...1.0.8

1.0.7

07 Jul 11:22
8daf260

Choose a tag to compare

What's Changed

  • fixes loading speed issue by moving config reads away from View composer ... by @arukompas in #239

New Contributors

Full Changelog: 1.0.6...1.0.7

1.0.6

13 Apr 09:09

Choose a tag to compare

What's Changed

  • Add id to modal container by @ryangjchandler in #198
  • Fix bug that would cause dozens of requests when pressing escape

New Contributors

Full Changelog: 1.0.5...1.0.6

1.0.5

03 Mar 17:16

Choose a tag to compare

What's Changed

  • Gate instead of Guard facade to authorize actions by @olivsinz in #149
  • Fix flickering modal with Alpine 3.9.1 by @PhiloNL in #193

If you published modal.blade.php you will need to replace x-on:close.stop="show = false" with x-on:close.stop="setShowPropertyTo(false)" (see diff)

New Contributors

Full Changelog: 1.0.4...1.0.5

1.0.4

18 Jan 11:14

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.0.3...1.0.4

1.0.3

05 Nov 12:50
b3e08a9

Choose a tag to compare

What's Changed

New Contributors

  • @wit3 made their first contribution in #101

Full Changelog: 1.0.2...1.0.3

1.0.2

30 Oct 13:50
dd9beb7

Choose a tag to compare

Update README.md

v1.0.1

06 Sep 20:01
0fe7036

Choose a tag to compare

v1.0.0

05 Jul 09:40

Choose a tag to compare

v1.0.0 stable release 🚀

Breaking changes to take into account:

The @livewireUIScripts has been removed.

Any required Javascript will be loaded inline. If you want to include the Javascript in your bundler like Webpack you can use the config to disable Javascript and require the necessary Javascript require('vendor/livewire-ui/modal/resources/js/modal');

The package namespace has changed to livewire-ui-modal

If you published the modal view make sure to make the required changes.

0.1.7

19 Jun 12:59

Choose a tag to compare

The setActiveModalComponent is sometimes called multiple times resulting in issues with the component history log and could result in errors. This release prevents an already active modal component to be set active (while it is already active).