-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor Form.RichText component to use Quill #14
Conversation
@kishannareshpal are you able to offer any input on what's going on with the |
What's happening with this branch? It looks super old? |
This can likely be closed - this PR was for the tasks project but the UI components are now baked into that repo instead. Do you agree @Jamie-n? |
Yeah I agree, this PR can be closed. The features and changes within this branch are now included directly in the tasks project. |
Refactor FormRichText to use
quill
instead ofreact-quill
to enable us to use the mention plugin as this isn't supported byreact-quill
.Caution
Due to an ongoing issue, anything using this package will have to directly import the
FormRichText
component and use it as<FormRichText>
rather than<Form.RichText>
.The
onChange
handler has also changed and will not be compatible with directly injecting states into the prop, instead(value) => setFoo(value)
will need to be used.