CreateThrive / react-firebase-admin

React โš›๏ธ starter kit with Firebase ๐Ÿ”ฅ and Bulma for setting up an admin dashboard - Highly scalable, PWA, Serverless
https://docs.react-firebase.com
MIT License
412 stars 97 forks source link

Bump react-hook-form from 6.12.2 to 7.15.0 #467

Closed dependabot[bot] closed 3 years ago

dependabot[bot] commented 3 years ago

Bumps react-hook-form from 6.12.2 to 7.15.0.

Release notes

Sourced from react-hook-form's releases.

Version 7.15.0

๐ŸŽ‡ [useFieldArray] new method replace() (#6304)

const { control } = useForm({
  defaultValues: {
    test: [{ value: 'lorem' }, { value: 'ipsum' }]
  }
});
const { fields, replace } = useFieldArray({ 
  control, 
  name: 'test'
});

const handleFullyReplacement = (): void => { // remove old and set fully new values replace([{ value: 'dolor' }, { value: 'sit' }, { value: 'amet' }]); }

๐Ÿž fix #6379 toggle disabled props with register api (#6459) ๐Ÿ—บ๏ธ improve Mapped types (#6451) ๐Ÿ—๏ธ refactor: improve NestedValue type (#6449) ๐Ÿ—๏ธ feat: improve PathValue type to fully support union type (#6431)

Version 7.14.3-beta.0

๐Ÿ”‘ fix: add UnionLike type for FieldErrors type #6381

Version 7.14.2

๐Ÿ› fix #6403 issue with fields object with getter and setter function (#6407) โŒจ๏ธ update watch observer types (#6404) ๐Ÿงฅ fix getter and setter consistency (#6408)

Version 7.14.1

๐Ÿ‘พ improve change event perf (#6373) ๐Ÿž fix #6379 when disabled is not return from the DOM attribute (#6380) ๐Ÿงป code improvement and size reduction (#6372) ๐ŸŽฎ prevent controller with TypeError: e.focus is not a function (#6386) Revert "๐ŸŽน fix #6265 objects may have error messages (#6275)" (#6391)

Version 7.14.0

๐Ÿฅณ feature: add dependent validation - run a dependent field's validation after another field's validation runs (#6141)

const App = () => {
  const { register, getValues } = useForm();

return ( <form> <input </tr></table>

... (truncated)

Commits


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 3 years ago

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.