You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(zoomable): allows for dragging without scaling if props.zoomable is set to false.
fix(ts): widens type for RawNodeDatum["attributes"] (#350)
attributes was made unintentionally restrictive during the v2 refactor to Typescript, by moving from a loose implicit object type to Record<string,string>.
This change widens the used Record type to additionally accept number and boolean primitives as possible values.