You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`editorDidAttach(editor)`|`UnControlled`| component is now **responding** to new props |
127
-
|`editorDidConfigure(editor)`|`Controlled,UnControlled`| component configuration has been set |
128
-
|`editorDidDetach(editor)`|`UnControlled`| component is now **ignoring** new props |
129
-
|`editorDidMount(editor, _**next**_)`|`Controlled,UnControlled`|**invoking optional `next` will trigger `editorDidConfigure`**|
130
-
|`editorWillUnmount(editor)`|`editor`|`Controlled,UnControlled`| invoked before [`componentWillUnmount`](https://reactjs.org/docs/react-component.html#componentwillunmount)|
131
-
|`onBeforeChange(editor,data,value, _**next**_)`|`Controlled,UnControlled*`| * if used, `next` is returned via `UnControlled` and *must* be invoked to trigger onChange |
132
-
|`onChange(editor,data,value)`|`Controlled,UnControlled`| the component value has been changed |
| editorDidAttach(editor) |`UnControlled`| component is now **responding** to new props |
127
+
| editorDidConfigure(editor) |`Controlled` `UnControlled`| component configuration has been set |
128
+
| editorDidDetach(editor) |`UnControlled`| component is now **ignoring** new props |
129
+
| editorDidMount(editor, *[next]*)|`Controlled` `UnControlled`| *invoking optional `next` will trigger `editorDidConfigure`|
130
+
| editorWillUnmount(editor)|`Controlled` `UnControlled`| invoked before [`componentWillUnmount`](https://reactjs.org/docs/react-component.html#componentwillunmount)|
131
+
| onBeforeChange(editor, data, value, *[next]*)|`Controlled` `UnControlled`| * if used, `next` is returned via `UnControlled` and *must* be invoked to trigger onChange |
132
+
| onChange(editor, data, value) |`Controlled` `UnControlled`| the component value has been changed |
0 commit comments