Releases: greena13/react-ref-manager
Releases · greena13/react-ref-manager
Release list
v1.2.0
v1.0.0
Breaking Changes
- Move
RefManagerto the package's default export:
i.e. The previous way of importing the packages:
import { RefManager, FocusDirection } from 'react-ref-manager';
Becomes
import RefManager, { FocusDirection } from 'react-ref-manager';
v0.0.9
v0.0.8
v0.0.7
v0.0.5
v0.0.4
Breaking Changes
- Removed the requirement that refs must have a
parentNodeattribute. This effectively allows custom React components that define.focus()or.scrollIntoView()methods, to have those methods called instead ofreact-ref-managerattempting to find the corresponding element in the DOM and calling the respective methods on them, instead.
v0.0.3
Breaking changes
- Focus methods now return Focus Objects instead of instances of
ReactClassComponent. - Scroll methods now return Scroll Objects instead of instances of
ReactClassComponent.
Documentation
- Completed Readme to cover the full public API
- Added JSDoc comments to the public API methods