Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Accent insensitive search feature #177

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/voerro-vue-tagsinput.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/voerro-vue-tagsinput.js.map

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,15 @@ <h2 class="is-size-4" style="margin-bottom: 1rem;">Options</h2>
</div>
</div>

<div class="field">
<div class="control">
<label class="checkbox">
<input type="checkbox" v-model="accentSensitiveTags">
Tags are accent sensitive
</label>
</div>
</div>

<div class="field">
<div class="control">
<label class="checkbox">
Expand Down Expand Up @@ -234,6 +243,9 @@ <h2 class="is-size-4" style="margin-bottom: 1rem;">Options</h2>
v-model="selectedTags"
element-id="tags"
:existing-tags="[
{ key: `Divison` , value : `Division`},
{ key: `Divisón` , value : `División`},
{ key: `Divisonnn` , value : `Divisionnn`},
{ key: 'children-of-bodom', value: 'Children of Bodom' },
{ key: 'epica', value: 'Epica' },
{ key: 'emperor', value: 'Emperor' },
Expand All @@ -259,6 +271,7 @@ <h2 class="is-size-4" style="margin-bottom: 1rem;">Options</h2>
:limit="limit"
:only-existing-tags="onlyExistingTags"
:case-sensitive-tags="caseSensitiveTags"
:accent-sensitive-tags="accentSensitiveTags"
:delete-on-backspace="deleteOnBackspace"
:allow-duplicates="allowDuplicates"
:add-tags-on-comma="addTagsOnComma"
Expand Down Expand Up @@ -343,6 +356,7 @@ <h2 class="is-size-3 mb-1">Custom Display Field for the Dropdown</h2>
limit: 0,
onlyExistingTags: false,
caseSensitiveTags: false,
accentSensitiveTags: false,
deleteOnBackspace: true,
allowDuplicates: false,
addTagsOnComma: false,
Expand Down
Loading