--- // Input to select a character, // e.g. Special Week (not [Special Dreamer] Special Week). import { character, type Character } from "../data/character"; interface Props { id: string; label?: string; required?: boolean; region?: keyof typeof character; } export interface Emits { "chara-change": (ev: CustomEvent<{id: string, chara?: Character}>) => void; } const { id, label, required = false, region = "global" } = Astro.props; --- {label && }