Jannik Buschke
Jannik Buschke
Also it would be nice if you can clone the boilerplate (cra-antd-x), verify and report back if it works there. Would be kindly appreciated.
maybe remove the single **'** in `"libraryName": "formik-antd'",`? If that does not work, can you try if it works with config-overrids.js exactly as it is done here: https://github.com/jannikbuschke/cra-antd-x/blob/master/config-overrides.js) (not using...
maybe try with "style":"css" and "libraryDirectory":"es" https://github.com/jannikbuschke/formik-antd#advanced-setup
Good old time issues :) Mh, I'm not so sure about your solution. I probably need some time to think about the problem and the solution. Also ant d now...
hi @devony , Im not sure exactly what you are doing. Can you share some code? Im also not sure if Checkbox.Group is suppored (I dont think so)
hi @watafakap, In this line `` you are basically reimplementing `formik-antd`. The idea of `formik-antd` is that you dont need to hook up formik and antd by yourself. So the...
Hi @marcobiedermann, the packaged version of this lib does not include ant design types directly (it is only a peer dependency). So the consuming app packages decides what version is...
You might be able to place the schema and the calls to the `t` function inside a component. To *not* reintantiate the schema on every render you probabaly want to...
Can you use the FormItem (or Form.Item) component from formik-and and pass in the same name prop. I.e. ```jsx ``` and report if this works?
I usually add a global css class to adjust the margin. I.e. in my index.css I add ``` .ant-form-item { margin-bottom: 8px; } ``` Not optimal but a pragmatic solution...