UNPKG

sly-svelte-file-tree

Version:

A customizable file tree view component for Svelte

13 lines (12 loc) 357 B
export default function scrollMeasure(node, selector) { function update() { const contentWidth = node.querySelector(selector)?.offsetWidth || node.offsetWidth; node.style.setProperty('--sly-scrollbar-width', `${node.offsetWidth - contentWidth}px`); } update(); return { destroy() { }, update }; }