Skip to content

Releases: akuzko/react-form-material-ui

v1.2.0

26 Feb 12:45
Compare
Choose a tag to compare

New Features

  • Added bindDialogState helper function that, in addition to bindState functionality of react-form-base, passes "formOpen" property from container's state to dialog form component.
  • Dialog form's errors are now cleared when form opens.
  • RadioButton component is re-exported from material-ui for convenience.
  • Add includeBlank property to SelectField input component

Fixes and Minor Updates

  • Fix missing re-export of bindState helper function from react-form-base
  • Fix list of acceptable types for value and options prop for RadioButtonGroup and SelectField
  • Add travis-ci integration
  • README and Demo app updates and fixes

v1.1.0

23 Feb 00:22
Compare
Choose a tag to compare

New Features

  • Depends on [email protected]. Thus, core form updates also apply on this release.
  • Added Dialog(Form) function that generates a Dialog form to be subsequently extended. Thus, you can now declare a base form for your application with all validation rules and custom functionality and declare dialog forms in a following way:
import { Dialog } from 'react-form-material-ui';
import BaseForm from 'your-base-form';

export default class ItemForm extends Dialog(BaseForm) {
  //  form definitions...
}

Patch Updates

  • Reduced ode organization complexity
  • Minor fixes in README and tests

v1.0.1

21 Feb 12:16
Compare
Choose a tag to compare

Patch Updates:

  • updated README: there were a number of flaws/typos made in initial README, v1.0.1 patch version release is to fix them on package's npm page.