Skip to content

Commit

Permalink
fix: display value and dropdown icon spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnCampionJr committed Nov 3, 2023
1 parent 2421f8a commit 6f3802c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .release-it.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ module.exports = {
excludeAuthors: ['John Campion'],
},
},
hooks: {
'after:bump': 'pnpm build',
},
git: {
commit: true,
tag: true,
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog


## v0.9.1

[compare changes](https://github.com/jcamp-code/formkit-shuriken-ui/compare/v0.9.0...v0.9.1)

### 🚀 Enhancements

- Add useful defaults to display and filter based on new label props ([1abcd23](https://github.com/jcamp-code/formkit-shuriken-ui/commit/1abcd23))

### 🤖 CI

- Setup release-it ([9e81a48](https://github.com/jcamp-code/formkit-shuriken-ui/commit/9e81a48))

4 changes: 2 additions & 2 deletions components/BaseAutocomplete.vue
Original file line number Diff line number Diff line change
Expand Up @@ -497,9 +497,9 @@ function key(item: T) {
<div class="nui-autocomplete-outer">
<ComboboxInput
class="nui-autocomplete-input"
:class="classes?.input"
:class="{classes?.input,'mr-8': props.dropdown}"
:display-value="
props.multiple ? undefined : (props.displayValue as any)
props.multiple ? undefined : (displayValueResolved as any)
"
:placeholder="props.placeholder"
:disabled="props.disabled"
Expand Down

0 comments on commit 6f3802c

Please sign in to comment.