sly-svelte-file-tree
Version:
A customizable file tree view component for Svelte
13 lines (12 loc) • 357 B
JavaScript
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
};
}