Skip to content

Releases: titonova/x-livewire

Updated composer.json to Laravel 11

26 Oct 09:21
6d3fc91
Compare
Choose a tag to compare
Pre-release
1.2.1

Update composer.json for Laravel 11

v1.2.0-beta

12 Oct 12:13
Compare
Choose a tag to compare
v1.2.0-beta Pre-release
Pre-release

Security update.

1.1.12-beta

07 Sep 14:31
50fbdd7
Compare
Choose a tag to compare
1.1.12-beta Pre-release
Pre-release

Updated composer.json to Livewire v3

1.1.1-beta

22 May 15:30
0a8d829
Compare
Choose a tag to compare
1.1.1-beta Pre-release
Pre-release

very tiny change

1.1.0-beta

29 Aug 16:04
Compare
Choose a tag to compare
1.1.0-beta Pre-release
Pre-release

Added the ability to add custom, named slots to <x-livewire> components, just like normal blade components.

For example:

       <x-livewire _="alert" title="Warning">
            My alert message
            <x-slot name="footer">My custom footer </x-slot>
        </x-livewire>
        
        ....

        <div class="alert ...">
            {{ $slot }}
            <div class="alert-footer">
                {{ $footer ?? 'Default footer content' }}
            </div>
        </div>

1.0.1-beta

20 Aug 23:21
6712e23
Compare
Choose a tag to compare
1.0.1-beta Pre-release
Pre-release
Added warning of lack of production readiness

Version 1

02 Aug 12:11
Compare
Choose a tag to compare
Version 1 Pre-release
Pre-release

First release. Haven't added tests yet.