@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Interface OpenFileOptions<M>

    interface OpenFileOptions<M = unknown> {
        allowMultiple?: boolean;
        ariaLabel?: string;
        datasource: FileBrowserDatasource<M>;
        openLabel?: string;
        title?: string;
    }

    Type Parameters

    • M = unknown
    Index

    Properties

    allowMultiple?: boolean

    Whether the user may select multiple files.

    ariaLabel?: string

    Accessible label for the dialog element.

    Datasource powering the file browser.

    openLabel?: string

    Label for the open button. Defaults to "Open".

    title?: string

    Dialog title. Defaults to "Open File".