Skip to content

Commit

Permalink
v2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rkuykendall committed Feb 18, 2020
1 parent 465fd21 commit 838cfbd
Show file tree
Hide file tree
Showing 11 changed files with 223 additions and 172 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [v2.0.1](https://github.com/formsy/formsy-react/compare/v2.0.0...v2.0.1)

> 18 February 2020
- Respect dot notation in reset [`#393`](https://github.com/formsy/formsy-react/pull/393)
- Remove unnecesary externalError state [`#398`](https://github.com/formsy/formsy-react/pull/398)
- Allow validation errors to be React elements [`#394`](https://github.com/formsy/formsy-react/pull/394)
- Update rollup plugin libraries [`#397`](https://github.com/formsy/formsy-react/pull/397)
- Improvements to README and PR Template [`#395`](https://github.com/formsy/formsy-react/pull/395)
- Fix types in Formsy spec tests [`#396`](https://github.com/formsy/formsy-react/pull/396)
- Remove unused Formsy props; tighten types; improve runRules [`#392`](https://github.com/formsy/formsy-react/pull/392)
- Rename cloneIfObject to protectAgainstParamReassignment; Fix isObject [`#391`](https://github.com/formsy/formsy-react/pull/391)
- Added possibility to use browser builtin submit [`#226`](https://github.com/formsy/formsy-react/pull/226)
- Improve test coverage [`#378`](https://github.com/formsy/formsy-react/pull/378)
- Dependabot Automatic Library Bumps [`#376`](https://github.com/formsy/formsy-react/pull/376)
- Use React's New Context API [`#198`](https://github.com/formsy/formsy-react/pull/198)
- Fix in-page link to updateInputsWithValue [`6fcc682`](https://github.com/formsy/formsy-react/commit/6fcc682e1dae82dd5643a744f587713f4d8a9ced)
- Change coveralls from dependency to dev dependency [`c9d9db5`](https://github.com/formsy/formsy-react/commit/c9d9db56f9f75770eaa39288dd009aeac528887e)
- Add coverage to gitignore [`0afef60`](https://github.com/formsy/formsy-react/commit/0afef60136a651f32e6e08b447810fef34856155)

#### [v2.0.0](https://github.com/formsy/formsy-react/compare/v2.0.0-beta.8...v2.0.0)

> 3 February 2020
Expand Down
6 changes: 4 additions & 2 deletions dist/Wrapper.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export interface InjectedProps<V> {
ref?: React.Ref<any>;
resetValue: () => void;
setValidations: (validations: Validations<V>, required: RequiredValidation<V>) => void;
setValue: (value: V) => void;
setValue: (value: V, validate?: boolean) => void;
showError: boolean;
showRequired: boolean;
}
Expand All @@ -51,8 +51,10 @@ export interface WrapperInstanceMethods<V> {
getErrorMessages: () => ValidationError[];
getValue: () => V;
isFormDisabled: () => boolean;
isFormSubmitted: () => boolean;
isValid: () => boolean;
setValue: (value: V) => void;
isValidValue: (value: V) => boolean;
setValue: (value: V, validate?: boolean) => void;
}
export declare type PassDownProps<V> = WrapperProps<V> & InjectedProps<V>;
export { propTypes };
Expand Down
118 changes: 63 additions & 55 deletions dist/formsy-react.cjs.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/formsy-react.cjs.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 838cfbd

Please sign in to comment.