From 6caa0ba0e6b4bf947bf8eec7082ad6cf648b4287 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Wed, 15 Jan 2020 20:06:49 -0400 Subject: [PATCH 01/22] chore(docs): fix typo in `b-form-tags` section on `tag-state` event closes #4638 docs hotfix --- src/components/form-tags/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/form-tags/README.md b/src/components/form-tags/README.md index 3f6e753552d..54009c679f4 100644 --- a/src/components/form-tags/README.md +++ b/src/components/form-tags/README.md @@ -239,7 +239,7 @@ not validated. ### Detecting new, invalid, and duplicate tags -The event `new-tags` will be emitted whenever new tags are entered into the new tag input element, +The event `tag-state` will be emitted whenever new tags are entered into the new tag input element, tags that do not pass validation, or duplicate tags are detected. The event handler will receive three arrays as it's arguments: @@ -252,10 +252,10 @@ considered part of a tag), or when the user attempts to add a tag (i.e. via ` component, you can disable the built in duplicate and invalid -messages by setting the props `duplicate-tag-text` and `invalid-tag-text` (respectively) to either -an empty string (`''`) or `null`. +If you are providing your own feedback for duplicate and invalid tags (via the use of the +`tag-state` event) outside of the `` component, you can disable the built in duplicate +and invalid messages by setting the props `duplicate-tag-text` and `invalid-tag-text` (respectively) +to either an empty string (`''`) or `null`. ```html