Packages

A collection of components and design tokens for building Lustre apps.

Current section

Files

Jump to
lustre_ui src lustre_ui.ffi.mjs
Raw

src/lustre_ui.ffi.mjs

export function scroll_into_view(
selector,
behaviour = "smooth",
block = "start"
) {
document.querySelector(selector)?.scrollIntoView({ behaviour, block });
}
export function focus(selector) {
document.querySelector(selector)?.focus();
}