Skip to content

Commit 3921e74

Browse files
committed
2.3.1
1 parent 7dc2c11 commit 3921e74

10 files changed

+65
-69
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,16 @@ All notable changes to this project will be documented in this file. Dates are d
44

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

7+
#### [v2.3.1](https://github.com/formsy/formsy-react/compare/v2.3.0...v2.3.1)
8+
9+
- add throttledValidateForm in detachFromForm [`#713`](https://github.com/formsy/formsy-react/pull/713)
10+
- feat: add test for unmounting multiple inputs, closes #712 [`#712`](https://github.com/formsy/formsy-react/issues/712)
11+
- bump action versions [`7dc2c11`](https://github.com/formsy/formsy-react/commit/7dc2c11b0e34d0c80e3ac2ccdcde15658fc06288)
12+
713
#### [v2.3.0](https://github.com/formsy/formsy-react/compare/v2.2.8...v2.3.0)
814

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

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

dist/Formsy.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export declare class Formsy extends React.Component<FormsyProps, FormsyState> {
5454
validationErrors: PropTypes.Requireable<object>;
5555
};
5656
static defaultProps: Partial<FormsyProps>;
57-
private readonly throttledValidateForm;
57+
private readonly debouncedValidateForm;
5858
constructor(props: FormsyProps);
5959
componentDidMount: () => void;
6060
componentDidUpdate: (prevProps: FormsyProps) => void;

dist/formsy-react.cjs.development.js

+25-31
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formsy-react.cjs.development.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formsy-react.cjs.production.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formsy-react.cjs.production.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formsy-react.esm.js

+25-31
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formsy-react.esm.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/utils.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ interface RulesResult {
1919
success: string[];
2020
}
2121
export declare function runRules<V>(value: V, currentValues: Values, validations: Validations<V>, validationRules: Validations<V>): RulesResult;
22-
export declare function throttle(callback: any, interval: any): (...args: any[]) => void;
22+
export declare function debounce(callback: any, timeout: number): (...args: any[]) => void;
2323
export {};

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "formsy-react",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"description": "A form input builder and validator for React",
55
"keywords": [
66
"form",

0 commit comments

Comments
 (0)