Add-on Directory

Taggable Text Area - Vaadin Add-on Directory

Extension of text area that supports the usage of tags that can be selected from a popup Taggable Text Area - Vaadin Add-on Directory
This component is an extension of text area component that adds support for tagging functionality. Users can insert tags by typing a "@" character to trigger a popup for selecting tags. Tags are rendered as clickable elements that can open popups for additional to add aditional information. See examples on how to use at [demo source code](https://github.com/vaadin-component-factory/taggable-text-area/blob/main/vcf-taggable-text-area-demo/src/main/java/org/vaadin/addons/componentfactory/demo/TaggableTextAreaDemoView.java).
View on GitHub

Taggable Text Area version 1.0.0
Initial implementation

Taggable Text Area version 1.1.0
Add new FilterListSelector that uses grid to render items ([#2](https://github.com/vaadin-component-factory/taggable-text-area/issues/2))

Taggable Text Area version 1.2.0
Improve row visibility logic in FilterListSelector

Taggable Text Area version 1.2.1
Make content not editable when disabled ([#5](https://github.com/vaadin-component-factory/taggable-text-area/issues/5))

Taggable Text Area version 2.0.0
* Breaking change on how to handle getValue method, new API includes: - getValue() method returns the plain (non-HTML) content. - new getHtmlValue() method is added to return the content with HTML. * Adds getter and setter methods for label generator function. * Update on how tags are identified and handled in processAndSetValue method. This update ensures only exact matches for tags are highlighted and decorated, avoiding unintended matches with partial text or substrings. * Update to avoid duplicated call to super.setValue on setValue implementation.

Taggable Text Area version 2.1.0
#### New feature: * Make word matching optional when identifying tag

Taggable Text Area version 2.1.1
## Bugfixes - Made Focus and Blur listeners to work correctly

Taggable Text Area version 2.2.0
## New Features * Add support for obtaining tag search popup open status

Taggable Text Area version 2.2.1
## Bugfixes * Improve logic to clean html tags and just leave new lines

Taggable Text Area version 2.2.2
#### Bug fixes: * fix: update to avoid double appearance of user mentioning symbol ([#14](https://github.com/vaadin-component-factory/taggable-text-area/issues/14))