Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/entangle lw3 #207

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "rawilk/laravel-form-components",
"name": "onepix/laravel-form-components",
"description": "Set of Blade components for TailwindCSS forms.",
"keywords": [
"rawilk",
Expand All @@ -25,16 +25,16 @@
}
],
"require": {
"php": "^8.0|^8.1|^8.2",
"illuminate/filesystem": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"illuminate/view": "^9.0|^10.0",
"php": "^8.0|^8.1|^8.2|^8.3",
"illuminate/filesystem": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"illuminate/view": "^9.0|^10.0|^11.0",
"spatie/laravel-package-tools": "^1.14"
},
"require-dev": {
"blade-ui-kit/blade-heroicons": "^2.0",
"laravel/pint": "^1.5",
"livewire/livewire": "^2.8",
"livewire/livewire": "^2.8|^3.0",
"orchestra/testbench": "^7.0|^8.0",
"pestphp/pest": "^1.22",
"pestphp/pest-plugin-laravel": "^1.4",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<div
x-data="{
@if ($defer)
__wireValue: @entangle('value').defer,
@else
__wireValue: @entangle('value'),
@else
__wireValue: @entangle('value').live,
@endif
}"
wire:ignore.self
Expand Down
4 changes: 2 additions & 2 deletions resources/views/livewire/tree-select/tree-select.blade.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<div
x-data="{
@if ($defer)
__wireValue: @entangle('value').defer,
@else
__wireValue: @entangle('value'),
@else
__wireValue: @entangle('value').live,
@endif
}"
wire:ignore.self
Expand Down