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

    Props for SessionHeader component

    interface SessionHeaderProps {
        fileId: string | null;
        hasUnsavedChanges?: boolean;
        isSaving?: boolean;
        labels?: Partial<SessionHeaderLabels>;
        onClose: () => void;
        onSave?: () => void;
        sx?: SxProps<Theme>;
    }
    Index

    Properties

    fileId: string | null

    File ID if editing an existing session, null for new

    hasUnsavedChanges?: boolean

    Whether there are unsaved changes

    isSaving?: boolean

    Whether a save is in progress

    labels?: Partial<SessionHeaderLabels>

    Custom labels for i18n support

    onClose: () => void

    Callback when close button is clicked

    onSave?: () => void

    Optional callback when save button is clicked (for Notes)

    sx?: SxProps<Theme>

    MUI sx props for the container