riprap-nyc / web /sveltekit /src /lib /stores /citations.svelte.ts
seriffic's picture
Frontend overhaul: Lit kickoff β†’ Svelte 5 custom elements β†’ SvelteKit design-system
e8a6c67
/** Cross-component highlight state β€” Svelte 5 rune-based store. */
class CitationState {
active = $state<string | null>(null);
highlightDocId = $state<string | null>(null);
}
export const citations = new CitationState();