Closed deser closed 2 years ago
Some things I noticed when I updated from 5 to 6 the following:
import Popover from 'react-tiny-popover';
to
import { Popover } from 'react-tiny-popover';
Prop position has been replaced with positions which accepts an array of positions
position = {'top'}
to
positions = {['top']} // preferred positions by priority
property targetRect
is no longer valid on ArrowContainer, appears it is replaced with childRect
Would be great to note in release notes in case the above is wrong or there are more changes.
disableReposition seems to have been renamed to reposition and i suppose you need to change from true -> false depending on what you had.
Hi! From version 6 and on I've added a change log to the repo and tried to be very explicit about changes, fixes, etc.. Thanks for your input!
You are making breaking changes to lib but it is hard to understand whether there are breaking changes or not.