Skip to content

Commit

Permalink
🐛 (input-wrapper) remove overflow-hidden from input wrapper so `->n…
Browse files Browse the repository at this point in the history
…ative(false)` works

Closes #7
  • Loading branch information
marvinosswald committed Jan 26, 2024
1 parent 2502248 commit adf5c06
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

All notable changes to `filament-input-select-affix` will be documented in this file.

## 0.1.0 - 2023-11-21
## 0.1.1 - 2024-01-26

initial release - not production tested yet
- remove `overflow-hidden` from input wrapper so `->native(false)` works as expected.

## 1.0.0 - 202X-XX-XX
## 0.1.0 - 2023-11-21

- initial release
initial release - not production tested yet
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ TextInputSelectAffix::make('weight_value')
'class' => 'w-[72px]' // if you want to constrain the selects size, depending on your usecase
])
->options([
'mm' => 'mm',
'm' => 'm'
]),
'mm' => 'mm',
'm' => 'm'
])
),
```

## Testing
Expand Down
2 changes: 1 addition & 1 deletion resources/views/text-input-select-affix.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
class="fi-fo-text-input"
:attributes="
\Filament\Support\prepare_inherited_attributes($getExtraAttributeBag())
->class(['overflow-hidden'])
->class([])
"
>
<x-filament::input
Expand Down

0 comments on commit adf5c06

Please sign in to comment.