Matthew "G" Giacomazzo
Matthew "G" Giacomazzo
Simular issue while using the example https://github.com/zeit/next.js/tree/canary/examples/with-external-styled-jsx-sass and trying to `@import` bootstrap from node modules. SASS is supported with my own files but anything imported from node modules and I...
So using NextJS's https://github.com/zeit/next.js/tree/canary/examples/with-next-sass you can see the import `@import "~bootstrap/scss/bootstrap";` works https://codesandbox.io/s/402km8x797 (look in `/styles/globals.scss`) The same import using the method from https://github.com/zeit/next.js/tree/canary/examples/with-external-styled-jsx-sass does not https://codesandbox.io/s/0y2q7162k0 (go into `/styles/globals.scss`...
Unfortunately, we use a mixture of Bootstrap SASS files compiled with our own to create a customized design system and those variables, functions, and mixins are also imported into our...
Perhaps you can use the field's `pristine` prop to watch for a change on that specific field? Pristine will respect initialValues. https://github.com/final-form/final-form#pristine-boolean Edit: Although I don't see the API able...
Just a thought but is there a chance the form is rendered before the initial values are available and adding them to an existing form could be the culprit? This...
Removing zoom is not recommended for accessibility reasons. https://dequeuniversity.com/rules/axe/3.0/meta-viewport-large
Check out the API for `form.initalize` which is what I think you will want instead. The nice thing about that is that it will keep your `submitSucceeded` state so in...
Be aware if you use the above but use`null` instead of `undefined` for your emptied fields, needed for our particular API, you run into the odd issue where `null` makes...
> Your `notRemoveWhenEmpty` proposal sounds like a decent compromise. 👍 What about something like `submitEmptyValue` that not only keeps the property in values but allows you to set what that...
Good to know! Then it might be worth mentioning something about this as a comment in the output + documentation?