Skip to content

Commit

Permalink
4.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Yair Even Or authored and Yair Even Or committed Jul 31, 2022
1 parent c0d0f09 commit 6f841fb
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions dist/jQuery.tagify.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/react.tagify.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/tagify.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Tagify (v 4.15.1) - tags input component
* Tagify (v 4.15.2) - tags input component
* By Yair Even-Or
* https://github.com/yairEO/tagify
* Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down Expand Up @@ -870,7 +870,7 @@ var _dropdown = {

var tagifySuggestionIdx = elm.getAttribute('tagifySuggestionIdx'),
isNoMatch = tagifySuggestionIdx == 'noMatch',
tagData = this.suggestedListItems.find(item => item.value == tagifySuggestionIdx); // The below event must be triggered, regardless of anything else which might go wrong
tagData = this.suggestedListItems.find(item => (item.value || item) == tagifySuggestionIdx); // The below event must be triggered, regardless of anything else which might go wrong

this.trigger("dropdown:select", {
data: tagData,
Expand Down
4 changes: 2 additions & 2 deletions dist/tagify.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Tagify (v 4.15.1) - tags input component
* Tagify (v 4.15.2) - tags input component
* By Yair Even-Or
* https://github.com/yairEO/tagify
* Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down Expand Up @@ -876,7 +876,7 @@

var tagifySuggestionIdx = elm.getAttribute('tagifySuggestionIdx'),
isNoMatch = tagifySuggestionIdx == 'noMatch',
tagData = this.suggestedListItems.find(item => item.value == tagifySuggestionIdx); // The below event must be triggered, regardless of anything else which might go wrong
tagData = this.suggestedListItems.find(item => (item.value || item) == tagifySuggestionIdx); // The below event must be triggered, regardless of anything else which might go wrong

this.trigger("dropdown:select", {
data: tagData,
Expand Down
4 changes: 2 additions & 2 deletions dist/tagify.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/tagify.polyfills.min.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Tagify (v 4.15.1) - tags input component
* Tagify (v 4.15.2) - tags input component
* By Yair Even-Or
* https://github.com/yairEO/tagify
* Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yaireo/tagify",
"version": "4.15.1",
"version": "4.15.2",
"homepage": "https://github.com/yairEO/tagify",
"description": "lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]",
"keywords": [
Expand Down

0 comments on commit 6f841fb

Please sign in to comment.