(s: ScrollBoxHandle, amount: number)
| 871 | // can cover and intermediate drain frames render at scrollTops with no |
| 872 | // mounted children — blank viewport. |
| 873 | export function scrollUp(s: ScrollBoxHandle, amount: number): void { |
| 874 | // Include pendingDelta: scrollBy accumulates without updating scrollTop, |
| 875 | // so getScrollTop() alone is stale within a batch of wheel events. |
| 876 | const effectiveTop = s.getScrollTop() + s.getPendingDelta(); |
| 877 | if (effectiveTop - amount <= 0) { |
| 878 | s.scrollTo(0); |
| 879 | return; |
| 880 | } |
| 881 | s.scrollBy(-amount); |
| 882 | } |
| 883 | export type ModalPagerAction = 'lineUp' | 'lineDown' | 'halfPageUp' | 'halfPageDown' | 'fullPageUp' | 'fullPageDown' | 'top' | 'bottom'; |
| 884 | |
| 885 | /** |
no outgoing calls
no test coverage detected