Sanity Library Reference Docs
    Preparing search index...

    Assigned-task table with Studio document previews, member lookups, and attention hints.

    interface ForMeTableProps {
        now: Date;
        onNavigateKey: (event: RunNavigationKeyEvent) => void;
        onSelect: (row: ForMeTaskRow) => void;
        onSort: (key: ForMeSortKey) => void;
        rows: readonly ForMeTaskRow[];
        selectedId: string | undefined;
        selectedRef: (element: HTMLElement | null) => void;
        sort: ForMeSort;
    }
    Index

    Properties

    now: Date

    Update this clock to refresh relative timestamps.

    onNavigateKey: (event: RunNavigationKeyEvent) => void

    Called for keyboard input on the selected row. The host owns navigation.

    onSelect: (row: ForMeTaskRow) => void
    onSort: (key: ForMeSortKey) => void

    Reports the requested column; the host applies sorting and updates rows.

    rows: readonly ForMeTaskRow[]
    selectedId: string | undefined

    The selected row becomes the table's roving tab stop.

    selectedRef: (element: HTMLElement | null) => void

    Receives the selected row element for host focus and scrolling.

    sort: ForMeSort