Hiyve Components - v1.0.0
    Preparing search index...

    Interface WhiteboardSessionProps

    Props for WhiteboardSession component

    interface WhiteboardSessionProps {
        fileToOpen?: FileEntry;
        labels?: WhiteboardSessionLabels;
        roomName?: string;
        storageKey?: string;
        sx?: SxProps<Theme>;
        whiteboardProps?: Omit<
            WhiteboardProps,
            "fileId"
            | "onClose"
            | "initialFileData",
        >;
    }
    Index

    Properties

    fileToOpen?: FileEntry

    File to open programmatically (e.g. from FileManager smart opening)

    Custom labels for i18n support

    roomName?: string

    Room name for filtering files to current room

    storageKey?: string

    localStorage key for persisting filter and sort state

    sx?: SxProps<Theme>

    MUI sx props for the container

    whiteboardProps?: Omit<
        WhiteboardProps,
        "fileId"
        | "onClose"
        | "initialFileData",
    >

    Props to pass through to Whiteboard