This repository has been archived by the owner on Jan 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b5de93e
commit bf689eb
Showing
10 changed files
with
142 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
tests/Feature/views/livewire-form-default-wired-lazy.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<x-form wire:submit.prevent="submit"> | ||
<x-form-input name="input" /> | ||
<x-form-textarea name="textarea" /> | ||
<x-form-select name="select" :options="['' => '', 'c' => 'c']" /> | ||
<x-form-select name="multi_select" multiple :options="['d' => 'd', 'e' => 'e', 'f' => 'f']" /> | ||
|
||
<x-form-checkbox name="checkbox" /> | ||
|
||
<x-form-group name="radio"> | ||
<x-form-radio name="radio" /> | ||
</x-form-group> | ||
|
||
<x-form-submit /> | ||
</x-form> |
14 changes: 14 additions & 0 deletions
14
tests/Feature/views/livewire-form-default-wired-with-override.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<x-form wire:submit.prevent="submit"> | ||
<x-form-input name="input" /> | ||
<x-form-textarea name="textarea" /> | ||
<x-form-select name="select" :options="['' => '', 'c' => 'c']" wire:model="" /> | ||
<x-form-select name="multi_select" multiple :options="['d' => 'd', 'e' => 'e', 'f' => 'f']" wire:model.debounce.1000ms="multi_select" /> | ||
|
||
<x-form-checkbox name="checkbox" /> | ||
|
||
<x-form-group name="radio"> | ||
<x-form-radio name="radio" /> | ||
</x-form-group> | ||
|
||
<x-form-submit /> | ||
</x-form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<x-form wire:submit.prevent="submit"> | ||
<x-form-input name="input" /> | ||
<x-form-textarea name="textarea" /> | ||
<x-form-select name="select" :options="['' => '', 'c' => 'c']" /> | ||
<x-form-select name="multi_select" multiple :options="['d' => 'd', 'e' => 'e', 'f' => 'f']" /> | ||
|
||
<x-form-checkbox name="checkbox" /> | ||
|
||
<x-form-group name="radio"> | ||
<x-form-radio name="radio" /> | ||
</x-form-group> | ||
|
||
<x-form-submit /> | ||
</x-form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters