Sourced from @yaireo/tagify
's
releases.
v4.32.1
- #1409 - fixed incorrect example code bc63229
- in normal mode, if there is a single tag and while the dropdown is open the tag's
x
button is clicked, then the component should be re-focused 9743bab- improved README
dropdown.includeSelectedTags
setting description b39985c- removed
e.preventDefault
fortab
keydown event a321d15- typo fix 05e86a4
https://github.com/yairEO/tagify/compare/v4.32.0...v4.32.1
v4.32.0
- should set the
selectOption
on the global state every timesuggestionClick
is called (before it is called), which can be either by mouse click or key press 34e81db- fixes #1402 - added
blur
event when a tag has focus (is editable) and then blured. apparently theonFocusBlur
does not catch this blur event for some reason. 3e90111- fixes #1400 - tyrping text in the input element and pressing backspace key should not rmove everything that was typed f0747d1
- fixes #1401 - editing a tag and then selecting a suggestion (from the dropdown) results in an error 0e0e851
- fixes ##1403 - added missing
async
keywrod for a functioninitReac
which usesasync
internally f1bbd0chttps://github.com/yairEO/tagify/compare/v4.31.6...v4.32.0
v4.31.6
- hopefully fixes #1378 - Vue file with compilation error 9b2f3a9
- should tab-autocomplete a tag from the whitelist and with all its data, instead of only the suggetion's text, which is incorrect in case of a whitelist collection ab72938
https://github.com/yairEO/tagify/compare/v4.31.5...v4.31.6
v4.31.5
- Calling
removeChild
in thedestory
method only ifthis.DOM.scope.parentNode
exists afade9e- Upgraded some packages 12f90dd
- Fixes #1393 - calling
this.getPersistedData(&[#39](https://github.com/yairEO/tagify/issues/39);value&[#39](https://github.com/yairEO/tagify/issues/39);)
should return nothing ifsettings.id
is undefined 1d3419f- Fix error when DOM element is already detached during call to destroy method a10ff9a
- Bump rollup from 2.79.1 to 2.79.2 a5ff0d2
https://github.com/yairEO/tagify/compare/v4.31.4...v4.31.5
v4.31.4
- fixes #1374 - add some protection in case
id
' does not exists or if evenlocalStorage
does not exists 92dfd05- fixes #1373 - removed top-level
await
in order to resolve the error: "await is only valid in async functions and the top level bodies of modules" b0b16d3- added missing template mentioning in the README:
input
template 0b2a55a- fixes #1386 - re-enabled
spellcheck
for the input component a459362- fixes #1391 - Can't add a tag with the value 0 as integer 5de627b
- Fix test on settings "dropdown.enable" (should be "dropdown.enabled" instead) f93da3e
https://github.com/yairEO/tagify/compare/v4.31.3...v4.31.4
v4.31.3
- fixes #1372 -
this.value
was updated twice needlessly. It should only be updated within thepostProcessNewTagNode
method 7cce53dhttps://github.com/yairEO/tagify/compare/v4.31.2...v4.31.3
v4.31.2
- fixes #1371 -
add
event should fire ASAP without any delay. Also should include invalid added tags f7c7a84
... (truncated)
c719e25
4.32.1bc63229
#1409 -
fixed incorrect example code9743bab
in normal mode, if there is a single tag and while the dropdown is open
the t...b39985c
improved README dropdown.includeSelectedTags
setting
descriptiona321d15
removed e.preventDefault
for tab
keydown
event05e86a4
typo fix6a4cce7
4.32.034e81db
should set the selectOption
on the global state every time
`suggestionClick...3e90111
fixes #1402 -
added blur
event when a tag has focus (is editable) and
then ...f0747d1
fixes #1400 -
tyrping text in the input element and pressing backspace key sh...