@timlassiter11/yatl
    Preparing search index...

    Interface StorageOptions

    Options used to configure what state information should be saved and restored automatically.

    interface StorageOptions {
        key: string;
        saveColumnOrder?: boolean;
        saveColumnSortOrders?: boolean;
        saveColumnStickyPositions?: boolean;
        saveColumnVisibility?: boolean;
        saveColumnWidths?: boolean;
        saveSearchQuery?: boolean;
        saveSelectedRows?: boolean;
        storage?: StorageInterface;
    }
    Index

    Properties

    key: string

    The unique key used to store the table state in the browser. *

    "my-app-users-table-v1"
    
    saveColumnOrder?: boolean

    Save the current order of columns

    saveColumnSortOrders?: boolean

    Save the current column sorting

    saveColumnStickyPositions?: boolean

    Save the current column sticky positions

    saveColumnVisibility?: boolean

    Save the current column visibility

    saveColumnWidths?: boolean

    Save the current column widths

    saveSearchQuery?: boolean

    Save the current search query

    saveSelectedRows?: boolean

    Save the currently selected rows

    A storage client for getting and setting values. Defaults to window.localStorage