From adf5c061604ad9299efd329bde670c23dfa8bbbc Mon Sep 17 00:00:00 2001 From: Marvin Osswald Date: Fri, 26 Jan 2024 15:11:31 +0100 Subject: [PATCH] :bug: (input-wrapper) remove `overflow-hidden` from input wrapper so `->native(false)` works Closes #7 --- CHANGELOG.md | 8 ++++---- README.md | 7 ++++--- resources/views/text-input-select-affix.blade.php | 2 +- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90e90d9..1cce4f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 626ab21..6d21ddc 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/resources/views/text-input-select-affix.blade.php b/resources/views/text-input-select-affix.blade.php index 32f2069..9ba3a2d 100644 --- a/resources/views/text-input-select-affix.blade.php +++ b/resources/views/text-input-select-affix.blade.php @@ -34,7 +34,7 @@ class="fi-fo-text-input" :attributes=" \Filament\Support\prepare_inherited_attributes($getExtraAttributeBag()) - ->class(['overflow-hidden']) + ->class([]) " >