Luca Cantini
Luca Cantini
@YurySolovyov This is a good patch fix for this issue, but this needs to be resolved in a later release of `react-virtualized`!
This problem also happens when building with `rollup`. Can we remove this particular import since this variable doesn't seem to exist?
I'm also having this problem with Playroom + TS. It complains about having `moduleResolutions` set to `"node"`. +1
I also think that this behaviour should be supported, for cases that we need to use [controlled](https://reactjs.org/docs/forms.html) inputs, the `MaskedInput` simply won't work, as it does not accept an external...
@DTupalov These changes were merged, but they don't seem to work. For example: ```jsx class ExampleClass extends React.Component { constructor(props) { super(props); this.state = { value: 'Example Value', }; setTimeout(()...
@wmertens When the `mask` prop is set to `false` or `undefined` the value does not update. That was the case in my example. check: https://codesandbox.io/s/nk508jvpq4
@DTupalov According with the [documentation](https://github.com/text-mask/text-mask/blob/master/componentDocumentation.md#mask) you can send it as `false` to disable the masking behavior completely. Which is what is happening [here](https://codesandbox.io/s/nk508jvpq4). But doing so, disables the external control...
@DTupalov [This line](https://github.com/text-mask/text-mask/blob/d8510f81c8900c5a35ebb3731a7149164cca0013/core/src/createTextMaskInputElement.js#L64) over here ignores any changes done inside of the `update` function and just returns when the provided mask is `false`. I suspect it has something to do...
I've opened up a [PR](https://github.com/text-mask/text-mask/pull/831) with the fix
@lozjackson This is related to #806 which is specific to React. Should I change the reactTextMask.js file itself then?