react-textarea-autocomplete icon indicating copy to clipboard operation
react-textarea-autocomplete copied to clipboard

📝 React component implements configurable GitHub's like textarea autocomplete.

Results 27 react-textarea-autocomplete issues
Sort by recently updated
recently updated
newest added

Hello I am trying to implement hashtags ``` "#": { allowWhitespace: true, dataProvider: async token => { console.log(token) const names = await client.query({ query: GroupAutoSugQuery, variables: { token } }).then(...

needs repro 🙏

Is there a way to prevent the autocomplete opening at the top of the textarea? Because on the one hand the change is annoying and on the other it's in...

feature 🚀
approved ✅

I recommend to add support for the defaultValue behavior in react

trigger={{ [/[A-Za-z]/]: { dataProvider: (token) => { return mockData.filter((item) => item[entityLabel].toLowerCase().includes(token.toLowerCase()) ); }, component: ({ entity, selected }) => { return ( { console.log('===>entity', entity) }}> ) }, output: (item,...

I want to do a function like chatwork, when I type '@', a dropdown list of user will appear, then I am able to multiple select mentioned users Currently, when...

Any plans to support React 19?