Fix: mask does not update after component state changes.
add debounce time for update EditorMask
This is a fallback when component developer did not implement elementRef or onRef. The editor will traverse React Fiber Tree to find this component and its DOM Element, then use it to render EditorMask.
Because it uses React Fiber's implementation, it it not very stable. Developers should not rely on it.
Changes
EditorMask
This is a fallback when component developer did not implement
elementRef
oronRef
. The editor will traverse React Fiber Tree to find this component and its DOM Element, then use it to renderEditorMask
.Because it uses React Fiber's implementation, it it not very stable. Developers should not rely on it.