Skip to content

Commit bcad1ef

Browse files
committed
Update CHANGELOG.md
1 parent 8fca633 commit bcad1ef

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.3.1 (26/04/2021)
2+
3+
- It is now easier to create custom inputs by exposing `defaultSerializer` and `defaultDeserializer` to the user.
4+
15
# 1.3.0 (07/04/2021)
26

37
- Moved `yupValidator` to seperate package [`typed-react-form-yup`](https://www.npmjs.com/package/typed-react-form-yup)

src/elements/FormSelect.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export type FormSelectProps<T extends object, State, Error extends string> = Omi
1919
*
2020
* **FormInput**, **FormTextArea** and **FormError** are also available.
2121
*
22-
* When this component does not satisfy your needs, you can always [implement your own](https://typed-react-form.codestix.nl/docs/Custom-inputs#example-custom-input).
22+
* When this component does not satisfy your needs, you can always [implement your own](https://typed-react-form.codestix.nl/docs/Custom-input#example-custom-input).
2323
*/
2424
export function FormSelect<T extends object, State extends DefaultState = DefaultState, Error extends string = DefaultError>({
2525
form,

src/elements/FormTextArea.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export type FormTextAreaProps<T extends object, State, Error extends string> = O
1919
*
2020
* **FormSelect**, **FormInput** and **FormError** are also available.
2121
*
22-
* When this component does not satisfy your needs, you can always [implement your own](https://typed-react-form.codestix.nl/docs/Custom-inputs#example-custom-input).
22+
* When this component does not satisfy your needs, you can always [implement your own](https://typed-react-form.codestix.nl/docs/Custom-input#example-custom-input).
2323
*/
2424
export function FormTextArea<T extends object, State extends DefaultState = DefaultState, Error extends string = DefaultError>({
2525
form,

0 commit comments

Comments
 (0)