@yamlresume/playground
    Preparing search index...

    Interface PreviewPanelProps

    Props for the PreviewPanel component.

    interface PreviewPanelProps {
        activeLayoutIndex: number;
        filename?: string;
        resume: Resume;
        setActiveLayoutIndex: (index: number) => void;
        tooltips: Pick<
            PlaygroundTooltipMessages,
            "copy"
            | "print"
            | "openInNewTab"
            | "download",
        >;
    }
    Index

    Properties

    activeLayoutIndex: number

    The index of the currently active layout.

    filename?: string

    The name of the file being edited.

    resume: Resume

    The parsed resume object.

    setActiveLayoutIndex: (index: number) => void

    Callback to change the active layout index.

    tooltips: Pick<
        PlaygroundTooltipMessages,
        "copy"
        | "print"
        | "openInNewTab"
        | "download",
    >

    Localized tooltip labels for preview actions.