By introducing the proxyObject a month ago (Commit: c1dc1ed), there is no possible to set the value (e.g., input.value, or div.innerHTML, etc.) directly.
When I assign a ref this.inputRef to a rc-input-number component, for example, If the code is this.inputRef.value="123", the following error will be triggerred.
Uncaught TypeError: Illegal invocation
at Proxy.set (react-dom.development.js:1661:1)
...
By introducing the proxyObject a month ago (Commit: c1dc1ed), there is no possible to set the value (e.g.,
input.value, ordiv.innerHTML, etc.) directly.When I assign a ref
this.inputRefto arc-input-numbercomponent, for example, If the code isthis.inputRef.value="123", the following error will be triggerred.