0.3.3 • Published 3 years ago

react-quill-security v0.3.3

Weekly downloads
-
License
BSD 3-clause
Repository
github
Last release
3 years ago

React Quill Editor

A security react quill editor, react-quill is out of date, it's time to retire it!

Browser Support

ChromeFirefoxSafariOperaEdgeIE
Latest ✔Latest ✔Latest ✔Latest ✔Latest ✔11 ✔

Install

Using npm:

$ npm install react-quill-security

Using yarn:

$ yarn add react-quill-security

Minimize Example

import QuillSecurity from 'react-quill-security';

export default App = props => {

    const initValue = useRef({
      "ops":[{"insert":"React Quill Security Working!\n"}]
    });
    const [value, setValue] = useState(initValue.current);

    return (
      <QuillSecurity
        value={value}
        onChange={value => setValue(value)}
      />
    );
  }
}

License

BSD 3-clause

0.3.3

3 years ago

0.3.2

3 years ago

0.3.1

3 years ago

0.3.0

3 years ago

0.2.1

3 years ago

0.2.0

3 years ago

0.1.0

3 years ago