react-textarea-autocomplete
react-textarea-autocomplete copied to clipboard
📝 React component implements configurable GitHub's like textarea autocomplete.
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(...
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...
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?