Skip to content

Releases: NewOldMax/react-material-ui-form-validator

React 16.3 support

10 Apr 09:32
Compare
Choose a tag to compare
2.0.0-beta.8

Fix wrong build.

React 16.3 support

10 Apr 09:33
Compare
Choose a tag to compare
1.1.3

Fix wrong build.

New features release

01 Feb 09:06
Compare
Choose a tag to compare
  • AutocompleteValidator was removed because material-ui v1 doesn't have built-in implementation. You must implement your own Validator component in order to validate Autocomplete
  • core validations was moved to react-form-validator-core so you can use latest validation features in your forms

Expose components release

01 Feb 08:54
Compare
Choose a tag to compare

Now you don't need to install react-form-validator-core, compatible version will be installed automatically. 🍦
Just import all required components from react-material-ui-form-validator

- import { ValidatorForm } from 'react-form-validator-core';
- import { TextValidator } from 'react-material-ui-form-validator';
+ import { ValidatorForm, TextValidator } from 'react-material-ui-form-validator';

`debounce` release

16 Jan 09:32
Compare
Choose a tag to compare

Update deps to have debounce feature

1.0.5

03 Jan 07:14
Compare
Choose a tag to compare

update deps

Redo Select validator release

11 Dec 13:37
Compare
Choose a tag to compare

Breaking change

For now SelectValidator uses TextField component in select mode, to migrate you should remove formControl and inputLabel props and use label prop

<SelectValidator
    ...
-    formControl={FormControl}
-    inputLabel={InputLabel}
+    label="Label title"
/>

1.0.4

05 Dec 07:34
Compare
Choose a tag to compare

Update react-form-validator-core to ^0.2.0

Fix React 16 version

28 Nov 07:16
Compare
Choose a tag to compare
1.0.3

Bump version.

Improve React 16 support

13 Oct 09:53
Compare
Choose a tag to compare
Pre-release
  • remove refs from inputs