Skip to content

Commit

Permalink
Default all_buttons_outline config value to false
Browse files Browse the repository at this point in the history
  • Loading branch information
forxer committed Feb 21, 2024
1 parent 47d4441 commit e51345b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
CHANGELOG
=========

0.11.1 (2024-02-21)
-------------------

- Default `all_buttons_outline` config value to `false`


0.11.0 (2024-02-21)
-------------------

Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ For example a simple form with Bootstrap 5:
Will render the following HTML:

```html
<form method="POST" action="http://example.com" novalidate="true">
<form method="POST" action="http://example.com" novalidate>
<input type="hidden" name="_token" value="...">
<input type="hidden" name="_method" value="POST">
<div class="mb-3">
Expand All @@ -42,6 +42,7 @@ Will render the following HTML:
And if there are validation errors:

```html
<!-- ... -->
<label for="title" class="form-label">
Title
</label>
Expand All @@ -50,7 +51,7 @@ And if there are validation errors:
<div id="validation-title-feedback" class="invalid-feedback">
The title field is mandatory.
</div>
<!-- .. -->
<!-- ... -->
```

Index
Expand Down
2 changes: 1 addition & 1 deletion config/blade-ui-kit-bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,5 +105,5 @@
|
*/

'all_buttons_outline' => true,
'all_buttons_outline' => false,
];

0 comments on commit e51345b

Please sign in to comment.