liform-react icon indicating copy to clipboard operation
liform-react copied to clipboard

Generate forms from JSON Schema to use with React (& redux-form)

Results 20 liform-react issues
Sort by recently updated
recently updated
newest added

Due to the use of an outdated version of `ajv` (uses `5.2.2` and latest is `8.2.0`) that still uses the deprecated `url.parse` method (deprecated since node 11) this module will...

I'm using `liform-react` with `LiformBundle`. I have a form: ```php $builder->add('someField', EntityType::class, [ 'label' => $this->getLabel($contact), 'required' => false, 'class' => 'Entity\SomeEntity', ]); ``` Object generated by `liform`: ```js properties:...

**Problem**: Required fields make the placeholder (default value) disappear in select inputs. **Solution**: In order to avoid select placeholder, set `placeholder` to `false`.

Hi guys, I'm new to using liform-react but I think it's really fantastic! Unfortunately I can not quite understand how to use the processSubmitErrors function I saw in the example...

Update to allow newer version of react-redux and react-form since from what I can see it's compatible (have run the test suite) and keeping the versions low creates problems, in...

In react-redux v6 passing the store directly as a prop to a connected component was removed. When I try to use liform with "react-redux": "^6.0.0" I get the following error:...

Added a EmbeddedLiform component, which allows to embed liform generated fields in existent redux-form form.

There was a problem with DateTimeWidget, it generated a value not according to json schema date-time format, which is YYYY-MM-DDTHH:mm:ssZ (the generated value was of YYYY-MM-DDTHH:mm format). For example for...

While https://github.com/Limenius/liform-react/commit/5530c0183a33209e8870443b646fb54360805b1c Fixed validation for numbers in the case where they are entered by the user the normalizer isn't applied to initial values it seems and therefore they fail validation...

If you store schema as reactive property (as a state for example) and it will change, then submitting validation stops working.