Skip to content

Commit

Permalink
Improve API docs slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
jassmith committed May 28, 2022
1 parent a79b5b8 commit 301d35b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions packages/core/API.md
Expand Up @@ -263,6 +263,19 @@ export type GridColumn = SizedGridColumn | AutoGridColumn;
| Protected | Displays stars instead of data. Useful for indicating that hidden data is present but unavailable to the user. |
| Custom | Has no rendering by default and must be provided via `drawCell`. Used to implement 3rd party cells. |

All grid cells support the following properties

```ts
interface BaseGridCell {
readonly allowOverlay: boolean;
readonly lastUpdated?: number;
readonly style?: "normal" | "faded";
readonly themeOverride?: Partial<Theme>;
readonly span?: Item;
readonly contentAlign?: "left" | "right" | "center";
}
```

---

## GridSelection
Expand Down

0 comments on commit 301d35b

Please sign in to comment.