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
* Get the element where the actual scrolling takes place. This element can be used to subscribe to `scroll` events or manually modify `scrollTop`. However, it's recommended to use the API provided by `ion-content`: i.e. Using `ionScroll`, `ionScrollStart`, `ionScrollEnd` for scrolling events and `scrollToPoint()` to scroll the content into a certain point.
869
869
*/
870
870
"getScrollElement": () => Promise<HTMLElement>;
871
+
/**
872
+
* Recalculate content dimensions. Called by overlays (e.g., popover) when sibling elements like headers or footers have finished rendering and their heights are available, ensuring accurate offset-top calculations.
873
+
*/
874
+
"recalculateDimensions": () => Promise<void>;
871
875
/**
872
876
* Scroll by a specified X/Y distance in the component.
873
877
* @param x The amount to scroll by on the horizontal axis.
0 commit comments