-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Customizing @material-ui TextWidget requires me to customize ALL of the TextWidget wrapped widgets #2512
Comments
Yeah, that would be a good change. Do you know if this is the case for all other themes as well? Would you be willing to add a PR to fix it? |
I haven't looked at the other themes... I can try pushing a PR... at least for the source changes in material-ui |
It seems to be similar for |
Wow... that's a lot of vulnerabilities:
|
So the bootstrap4 changes were causing me too many problems and I aborted on them. I'll let somebody else figure it out. |
Also, what's the command to regenerate the snapshots for |
You can run `npm run test -- -u` to update snapshots.
…--
Ashwin Ramaswami
On Wed, Aug 11, 2021 at 8:34 PM Heath C ***@***.***> wrote:
Also, what's the command to regenerate the snapshots for material-ui?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#2512 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAM4MX6F7U7FXRZSRIL6BPLT4MJK3ANCNFSM5B7CL6KA>
.
|
@epicfaace I have a PR but can't push it... What is the process?
|
You should fork this repo to create your own version (which will likely be
under https://github.com/heath-freenome/react-jsonschema-form.git/). Then,
you push to your fork and create a PR from your fork.
…--
Ashwin Ramaswami
On Thu, Aug 12, 2021 at 2:01 PM Heath C ***@***.***> wrote:
@epicfaace <https://github.com/epicfaace> I have a PR but can't push
it... What is the process?
remote: Permission to rjsf-team/react-jsonschema-form.git denied to heath-freenome.
fatal: unable to access 'https://github.com/rjsf-team/react-jsonschema-form.git/': The requested URL returned error: 403
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#2512 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAM4MX7SRA7MF3V7KTMOOCTT4QD5XANCNFSM5B7CL6KA>
.
|
Prerequisites
Description
Unlike the
core
wrappers aroundBaseInput
(i.e.EmailWidget
,PasswordWidget
, etc) which pull theBaseInput
component out of theregistry.widgets
object, the ones formaterial-ui
instead directly import theTextWidget
from the source code hierarchy. As a result, because I've created a custom extension of theTextWidget
I now need to create custom replacements for ALL of theTextWidget
wrappers (i.e.EmailWidget
,PasswordWidget
, etc).If the
material-ui
implementation were to pull theTextWidget
from the registry (likecore
does) instead of directly importing it, then I would not need to override every one of theTextWidget
wrappers myself.Version
v3.0.2
The text was updated successfully, but these errors were encountered: