compute-scroll-into-view icon indicating copy to clipboard operation
compute-scroll-into-view copied to clipboard

Virtual element support

Open luin opened this issue 2 years ago • 0 comments

Thanks for the great library!

I'd like to integrate this library in Quill but the usage is to scroll a range into view. I think it makes sense to support a virtual element as well in addition to Element. A virtual element is basically an object providing the following methods:

interface VirtualElement {
  getBoundingClientRect(): DOMRect;
  getParentElement(): HTMLElement;
}

I can create a PR if that something you want to support.

luin avatar Jul 27 '23 08:07 luin