react-forms
react-forms copied to clipboard
React library for rendering forms.
**Scope**: FormEditor **Description** Currently, the live editor is disabled in the state manager branch.
Checked out code, run npm install, then yarn start, accessed demo via localhost:8080 Steps to reproduce: 1. go to MUI demo 2. drag CHECKBOX component to form builder 3. enter...
**Description** - Added HOC to simplify use and maintenance within field components. - Updated style implementation to use Mui's styled function. **Checklist:** *(please see [documentation page](https://data-driven-forms.org/development-setup) for more information)* -...
**Scope**: common **Description** `WizardContext` can get some enhancement in its API. i.e.: handleNext should not need any arguments to work. Also, I would like to explore skipping multiple steps.
**Scope**: PF4 mapper **Description** Validating is set to true **Schema** ```jsx const asyncValidator = () => new Promise((res) => setTimeout(() => res(), 1000)); export const wizardSchema = { fields: [...
**Scope**: Docs **Description** Cascading demo is broken and it blocks loading of other pages Steps to reproduce 1. Go to https://www.data-driven-forms.org/examples/cascading-select 2. Check Demo functionality, it is not working 3....
**What is the current behavior?** - pauseValidation is not working. **My Code** ``` /* Custom form template*/ const CustomFormTemplate = ({ formDetails, submitDetails, formFields, name }: FormTempateProps) => { const...
Validation working on the blur of fields(input, select) before clicking submit. Can we validate fields when clicking on the submit button instead on blur?
Select field ``` { "name": "SELECT_OPTION", "label": "test", "options": [ { "label": "none", "value": 0 }, { "label": "2", "value": 2 }, ], "component": "select" }, ``` Note: I'm using...
For hiding a fields using either `hideField `or `condition` in a row, the field itself hides but the parent col (with style ant-col) doesn't hide. As a result, the hidden...