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

    Interface NotesSessionProps

    Props for NotesSession component

    interface NotesSessionProps {
        fileToOpen?: FileEntry;
        labels?: NotesSessionLabels;
        noteEditorProps?: Omit<
            NoteEditorProps,
            | "ref"
            | "initialContent"
            | "fileId"
            | "initialTitle"
            | "showHeader"
            | "onAutoSave",
        >;
        roomName?: string;
        storageKey?: string;
        sx?: SxProps<Theme>;
    }
    Index

    Properties

    fileToOpen?: FileEntry

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

    Custom labels for i18n support

    noteEditorProps?: Omit<
        NoteEditorProps,
        | "ref"
        | "initialContent"
        | "fileId"
        | "initialTitle"
        | "showHeader"
        | "onAutoSave",
    >

    Props to pass through to NoteEditor

    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