Skip to content

Commit

Permalink
fix #181
Browse files Browse the repository at this point in the history
  • Loading branch information
tborychowski committed Jan 7, 2024
1 parent 6b193e8 commit 7c98230
Show file tree
Hide file tree
Showing 4 changed files with 106 additions and 98 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

## v9.4.1 *(2024-01-07)*
- Add `title` attribute to the multiselect `Combobox` input, so that when it's too long, the value can be read easily.


## v9.4.0 *(2024-01-04)*
- Add `multiselect` option to the `Combobox`.

Expand Down
4 changes: 4 additions & 0 deletions docs-src/pages/changelog.svelte
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
<h1>Changelog</h1>
<h2>v9.4.1 <em>(2024-01-07)</em></h2>
<ul>
<li>Add <code>title</code> attribute to the multiselect <code>Combobox</code> input, so that when it&#39;s too long, the value can be read easily.</li>
</ul>
<h2>v9.4.0 <em>(2024-01-04)</em></h2>
<ul>
<li>Add <code>multiselect</code> option to the <code>Combobox</code>.</li>
Expand Down
194 changes: 97 additions & 97 deletions docs/docs.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/input/combobox/Combobox.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<div class="input-inner" class:disabled>
<InputError id="{errorMessageId}" msg="{error}" />

<div class="input-row">
<div class="input-row" title="{valueName}">
<Button
link
icon="dots"
Expand Down

0 comments on commit 7c98230

Please sign in to comment.