react-md-editor icon indicating copy to clipboard operation
react-md-editor copied to clipboard

Why is there no event listener for text selection?

Open dongmucat opened this issue 1 year ago • 1 comments

I can't find the text selection event listener in the documentation.

dongmucat avatar Jun 05 '24 01:06 dongmucat

@dongmucat

<MDEditor
  textareaProps={{
+    onSelect: () => {
+      console.log('onSelect');
+    },
  }}
  style={{ width: '100%' }}
  value={value}
  onChange={onChange}
/>

jaywcjlove avatar Jul 02 '24 06:07 jaywcjlove