Skip to content

Commit

Permalink
2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
felixmosh committed Jun 14, 2024
1 parent 7dc2c11 commit 3921e74
Show file tree
Hide file tree
Showing 10 changed files with 65 additions and 69 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,16 @@ 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.3.1](https://github.com/formsy/formsy-react/compare/v2.3.0...v2.3.1)

- add throttledValidateForm in detachFromForm [`#713`](https://github.com/formsy/formsy-react/pull/713)
- feat: add test for unmounting multiple inputs, closes #712 [`#712`](https://github.com/formsy/formsy-react/issues/712)
- bump action versions [`7dc2c11`](https://github.com/formsy/formsy-react/commit/7dc2c11b0e34d0c80e3ac2ccdcde15658fc06288)

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

> 8 November 2022
- Add support for React 18 [`#692`](https://github.com/formsy/formsy-react/pull/692)

#### [v2.2.8](https://github.com/formsy/formsy-react/compare/v2.2.7...v2.2.8)
Expand Down
2 changes: 1 addition & 1 deletion dist/Formsy.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export declare class Formsy extends React.Component<FormsyProps, FormsyState> {
validationErrors: PropTypes.Requireable<object>;
};
static defaultProps: Partial<FormsyProps>;
private readonly throttledValidateForm;
private readonly debouncedValidateForm;
constructor(props: FormsyProps);
componentDidMount: () => void;
componentDidUpdate: (prevProps: FormsyProps) => void;
Expand Down
56 changes: 25 additions & 31 deletions dist/formsy-react.cjs.development.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.development.js.map

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

56 changes: 25 additions & 31 deletions dist/formsy-react.esm.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.esm.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/utils.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ interface RulesResult {
success: string[];
}
export declare function runRules<V>(value: V, currentValues: Values, validations: Validations<V>, validationRules: Validations<V>): RulesResult;
export declare function throttle(callback: any, interval: any): (...args: any[]) => void;
export declare function debounce(callback: any, timeout: number): (...args: any[]) => void;
export {};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "formsy-react",
"version": "2.3.0",
"version": "2.3.1",
"description": "A form input builder and validator for React",
"keywords": [
"form",
Expand Down

0 comments on commit 3921e74

Please sign in to comment.