Skip to content

Releases: react-hookz/web

v14.0.0

11 May 22:31
Compare
Choose a tag to compare

14.0.0 (2022-05-11)

Bug Fixes

  • useMediatedState: make initial state be passed through mediator (#753) (727d224)

BREAKING CHANGES

  • useMediatedState: useMediatedState now passes initial state through mediator

v13.3.0

25 Apr 09:06
Compare
Choose a tag to compare

13.3.0 (2022-04-25)

Features

v13.2.1

10 Apr 19:34
Compare
Choose a tag to compare

13.2.1 (2022-04-10)

Bug Fixes

  • make useRerender operate integer increment instead of bool switch (#711) (409a21f), closes #691

v13.2.0

30 Mar 17:16
Compare
Choose a tag to compare

13.2.0 (2022-03-30)

Features

v13.1.0

14 Mar 01:32
Compare
Choose a tag to compare

13.1.0 (2022-03-14)

Features

  • implement useRafState hook (6cd44ec)
  • implement useWindowSize hook (81819cf)

v13.0.0

25 Feb 16:01
Compare
Choose a tag to compare

13.0.0 (2022-02-25)

Features

  • useMediaQuery: add synchronous mql state fetch (0e0be56)
  • implement new hook - useScreenOrientation (107cc21)

BREAKING CHANGES

  • useMediaQuery: useMediaQuery now does synchronous fetch, this means
    that in browser it will return final state on first render, while SSR
    mode still return undefined.
    SSR users should set second parameter of this hook to true, to
    postpone state fetch until effects phase.

v12.3.0

17 Jan 11:14
Compare
Choose a tag to compare

12.3.0 (2022-01-17)

Features

v12.2.0

14 Jan 02:28
Compare
Choose a tag to compare

12.2.0 (2022-01-14)

Features

v12.1.2

13 Jan 08:44
Compare
Choose a tag to compare

12.1.2 (2022-01-13)

Bug Fixes

  • move to stricter linting configuration (#580) (f455992)

v12.1.1

11 Jan 08:39
Compare
Choose a tag to compare

12.1.1 (2022-01-11)

Bug Fixes

  • useLocalStorage, useSessionStorage: replace hook with noop in case of storage absence. (#540) (790b302), closes #521