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
Unlike the core wrappers around BaseInput (i.e. EmailWidget, PasswordWidget, etc) which pull the BaseInput component out of the registry.widgets object, the ones for material-ui instead directly import the TextWidget from the source code hierarchy. As a result, because I've created a custom extension of the TextWidget I now need to create custom replacements for ALL of the TextWidget wrappers (i.e. EmailWidget, PasswordWidget, etc).
If the material-ui implementation were to pull the TextWidget from the registry (like core does) instead of directly importing it, then I would not need to override every one of the TextWidget wrappers myself.