/** * Breadcrumb entity * * Tracks page sections using Intersection Observer with scroll direction * detection. Sections appear in breadcrumbs when scrolling down and exiting * the viewport top. * * @example * ```svelte * * ``` */ export { type NavigationAction, scrollBreadcrumbsStore, } from './model'; export { BreadcrumbHeader, NavigationWrapper, } from './ui';