Livewire Ui Modal Versions Save

Livewire component that provides you with a modal that supports multiple child modals while maintaining state.

1.0.8

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/wire-elements/modal/compare/1.0.7...1.0.8

1.0.7

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/wire-elements/modal/compare/1.0.6...1.0.7

1.0.6

2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/wire-elements/modal/compare/1.0.5...1.0.6

1.0.5

2 years ago

What's Changed

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: https://github.com/wire-elements/modal/compare/1.0.4...1.0.5

1.0.4

2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/wire-elements/modal/compare/1.0.3...1.0.4

1.0.3

2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/wire-elements/modal/compare/1.0.2...1.0.3

1.0.2

2 years ago

1.0.0

2 years ago

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

2 years ago

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).