Skip to content

Commit 20b6e9f

Browse files
jyrkidnThibo De Langhe
andauthored
Feature/updates (#1)
* Default classes are now configurable * Added browser event if form is submitted * Updated docs * Remove optional helpers, they were unnecessary * Add Livewire 1 & 2 constraints * Add documentation for GDPR tooltip Co-authored-by: Thibo De Langhe <thibo@codedor.be>
1 parent c8ed0ab commit 20b6e9f

24 files changed

+224
-52
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ If you have not used Livewire in your project before, remember to add the follow
2727

2828

2929
## Documentation
30-
* [Creating forms (start here)](/docs/creating-forms.md)
31-
* [Fields](/docs/fields.md)
32-
* [Custom fields](/docs/custom-fields.md)
33-
* [Form controller](/docs/form-controllers.md)
34-
* [Form steps](/docs/form-steps.md)
35-
* [Examples](/docs/examples.md)
30+
* [Creating forms (start here)](./docs/creating-forms.md)
31+
* [Fields](./docs/fields.md)
32+
* [Custom fields](./docs/custom-fields.md)
33+
* [Form controller](./docs/form-controllers.md)
34+
* [Form steps](./docs/form-steps.md)
35+
* [Examples](./docs/examples.md)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"require": {
99
"php": ">=7.1.0",
1010
"pragmarx/countries": "^0.7.0",
11-
"livewire/livewire": "^1.0 || ^2.0"
11+
"livewire/livewire": "^1.1 || ^2.0"
1212
},
1313
"autoload": {
1414
"psr-4": {

config/livewire-forms.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
return [
4+
'defaults' => [
5+
'inputClass' => '',
6+
'divClass' => 'col-6',
7+
]
8+
];

0 commit comments

Comments
 (0)