Kiho Chang
Kiho Chang
It is supporting react-intl now.
Check this out https://github.com/Kiho/react-form-builder/issues/109#issuecomment-767338828 something similar setup should work.
There is example of custom component https://github.com/Kiho/react-form-builder/blob/master/examples/custom/app.js#L14 ```jsx const MyInput = React.forwardRef((props, ref) => { const { name, defaultValue, disabled } = props; return ; }); ``` Your custom component...
No, conditional logic is not supported as out of box.
You can find example of multiple form instance here https://github.com/Kiho/react-form-builder/blob/master/examples/custom/app.js and snippets of server side code here https://github.com/Kiho/react-form-builder/issues/101
Maybe you can try delete yarn.lock & node_modules then reinstall. I have 2 examples here https://github.com/Kiho/react-form-builder/blob/master/examples/next/package.json & https://github.com/Kiho/react-form-builder/blob/master/examples/demo/package.json running without issues.
That affects to demo only, you need to create and host back-end by yourself.
Sorry but I have no experience with PHP, you can follow this example server https://github.com/Kiho/react-form-builder/blob/master/server/api/form.js#L46
You should use bootstrap 4.4.1, you can apply css like this https://github.com/Kiho/react-form-builder/blob/master/index.html#L14 if you don't want full width form builder
If you need help to resolve issue then please create github project showing your problem. I am not using TS with this project, so it is hard to replicate problem...