*** title: Table description: >- Display data in rows and columns using markdown tables with optional sticky headers. -------- Tables display data in rows and columns using standard markdown syntax. For longer datasets, you can use sticky table headers that remain visible while scrolling. ## Usage Create tables using standard markdown syntax with pipes (`|`) and hyphens (`-`):
| Plant | Light Requirements | Water | | ----------- | ---------------------- | --------- | | Fern | Partial shade | Weekly | | Snake Plant | Low to bright indirect | Bi-weekly | | Monstera | Bright indirect | Weekly |
```jsx Markdown | Plant | Light Requirements | Water | |-------|-------------------|-------| | Fern | Partial shade | Weekly | | Snake Plant | Low to bright indirect | Bi-weekly | | Monstera | Bright indirect | Weekly | ``` ## Variants ### Sticky headers The `` component adds a fixed header that remains visible while scrolling. Use sticky tables for longer datasets where users need to reference column headers throughout the table.
| Plant | Light Requirements | Water | | ---------------- | ------------------------- | ----------- | | Fern | Partial shade | Weekly | | Snake Plant | Low to bright indirect | Bi-weekly | | Monstera | Bright indirect | Weekly | | Pothos | Low to bright indirect | Weekly | | Fiddle Leaf Fig | Bright indirect | Weekly | | Peace Lily | Low to medium indirect | Weekly | | Rubber Plant | Bright indirect | Weekly | | ZZ Plant | Low to bright indirect | Bi-weekly | | Philodendron | Medium to bright indirect | Weekly | | Aloe Vera | Bright direct | Bi-weekly | | Boston Fern | Partial shade | 2-3x weekly | | Spider Plant | Medium to bright indirect | Weekly | | Dracaena | Medium indirect | Weekly | | Bird of Paradise | Bright indirect to direct | Weekly | | Calathea | Medium indirect | Weekly |
```jsx Markdown maxLines=10 | Plant | Light Requirements | Water | |-------|-------------------|-------| | Fern | Partial shade | Weekly | | Snake Plant | Low to bright indirect | Bi-weekly | | Monstera | Bright indirect | Weekly | | Pothos | Low to bright indirect | Weekly | | Fiddle Leaf Fig | Bright indirect | Weekly | | Peace Lily | Low to medium indirect | Weekly | | Rubber Plant | Bright indirect | Weekly | | ZZ Plant | Low to bright indirect | Bi-weekly | | Philodendron | Medium to bright indirect | Weekly | | Aloe Vera | Bright direct | Bi-weekly | | Boston Fern | Partial shade | 2-3x weekly | | Spider Plant | Medium to bright indirect | Weekly | | Dracaena | Medium indirect | Weekly | | Bird of Paradise | Bright indirect to direct | Weekly | | Calathea | Medium indirect | Weekly | ``` ### Searchable tables The `` component enables client-side filtering for large tables. A search input appears above the table that filters rows in real-time using case-insensitive substring matching. Use the `placeholder` prop to customize the search input placeholder text.
| Plant | Light Requirements | Water | | ---------------- | ------------------------- | ----------- | | Fern | Partial shade | Weekly | | Snake Plant | Low to bright indirect | Bi-weekly | | Monstera | Bright indirect | Weekly | | Pothos | Low to bright indirect | Weekly | | Fiddle Leaf Fig | Bright indirect | Weekly | | Peace Lily | Low to medium indirect | Weekly | | Rubber Plant | Bright indirect | Weekly | | ZZ Plant | Low to bright indirect | Bi-weekly | | Philodendron | Medium to bright indirect | Weekly | | Aloe Vera | Bright direct | Bi-weekly | | Boston Fern | Partial shade | 2-3x weekly | | Spider Plant | Medium to bright indirect | Weekly | | Dracaena | Medium indirect | Weekly | | Bird of Paradise | Bright indirect to direct | Weekly | | Calathea | Medium indirect | Weekly |
```jsx Markdown maxLines=10 | Plant | Light Requirements | Water | |-------|-------------------|-------| | Fern | Partial shade | Weekly | | Snake Plant | Low to bright indirect | Bi-weekly | | Monstera | Bright indirect | Weekly | | Pothos | Low to bright indirect | Weekly | | Fiddle Leaf Fig | Bright indirect | Weekly | | Peace Lily | Low to medium indirect | Weekly | | Rubber Plant | Bright indirect | Weekly | | ZZ Plant | Low to bright indirect | Bi-weekly | | Philodendron | Medium to bright indirect | Weekly | | Aloe Vera | Bright direct | Bi-weekly | | Boston Fern | Partial shade | 2-3x weekly | | Spider Plant | Medium to bright indirect | Weekly | | Dracaena | Medium indirect | Weekly | | Bird of Paradise | Bright indirect to direct | Weekly | | Calathea | Medium indirect | Weekly | ``` ### Sticky searchable tables The `` component combines both sticky headers and search functionality:
| Plant | Light Requirements | Water | | ---------------- | ------------------------- | ----------- | | Fern | Partial shade | Weekly | | Snake Plant | Low to bright indirect | Bi-weekly | | Monstera | Bright indirect | Weekly | | Pothos | Low to bright indirect | Weekly | | Fiddle Leaf Fig | Bright indirect | Weekly | | Peace Lily | Low to medium indirect | Weekly | | Rubber Plant | Bright indirect | Weekly | | ZZ Plant | Low to bright indirect | Bi-weekly | | Philodendron | Medium to bright indirect | Weekly | | Aloe Vera | Bright direct | Bi-weekly | | Boston Fern | Partial shade | 2-3x weekly | | Spider Plant | Medium to bright indirect | Weekly | | Dracaena | Medium indirect | Weekly | | Bird of Paradise | Bright indirect to direct | Weekly | | Calathea | Medium indirect | Weekly |
```jsx Markdown maxLines=10 | Plant | Light Requirements | Water | |-------|-------------------|-------| | Fern | Partial shade | Weekly | | Snake Plant | Low to bright indirect | Bi-weekly | | Monstera | Bright indirect | Weekly | | Pothos | Low to bright indirect | Weekly | | Fiddle Leaf Fig | Bright indirect | Weekly | | Peace Lily | Low to medium indirect | Weekly | | Rubber Plant | Bright indirect | Weekly | | ZZ Plant | Low to bright indirect | Bi-weekly | | Philodendron | Medium to bright indirect | Weekly | | Aloe Vera | Bright direct | Bi-weekly | | Boston Fern | Partial shade | 2-3x weekly | | Spider Plant | Medium to bright indirect | Weekly | | Dracaena | Medium indirect | Weekly | | Bird of Paradise | Bright indirect to direct | Weekly | | Calathea | Medium indirect | Weekly | ``` ### HTML searchable tables Alternatively, add the `searchable` attribute to an HTML table element:
Plant Light Requirements Water
Fern Partial shade Weekly
Snake Plant Low to bright indirect Bi-weekly
Monstera Bright indirect Weekly
Pothos Low to bright indirect Weekly
Fiddle Leaf Fig Bright indirect Weekly
Peace Lily Low to medium indirect Weekly
Rubber Plant Bright indirect Weekly
ZZ Plant Low to bright indirect Bi-weekly
Philodendron Medium to bright indirect Weekly
Aloe Vera Bright direct Bi-weekly
Boston Fern Partial shade 2-3x weekly
Spider Plant Medium to bright indirect Weekly
Dracaena Medium indirect Weekly
Bird of Paradise Bright indirect to direct Weekly
Calathea Medium indirect Weekly
```jsx Markdown maxLines=10 ...
Plant Light Requirements Water
Fern Partial shade Weekly
``` You can combine `searchable` with `sticky` to create a table with both features: ```jsx Markdown ...
``` ### HTML tables with sticky headers Add the `sticky` attribute to the opening `` tag. No further changes to your table syntax are needed.
Plant Light Requirements Water
Fern Partial shade Weekly
Snake Plant Low to bright indirect Bi-weekly
Monstera Bright indirect Weekly
Pothos Low to bright indirect Weekly
Fiddle Leaf Fig Bright indirect Weekly
Peace Lily Low to medium indirect Weekly
Rubber Plant Bright indirect Weekly
ZZ Plant Low to bright indirect Bi-weekly
Philodendron Medium to bright indirect Weekly
Aloe Vera Bright direct Bi-weekly
Boston Fern Partial shade 2-3x weekly
Spider Plant Medium to bright indirect Weekly
Dracaena Medium indirect Weekly
Bird of Paradise Bright indirect to direct Weekly
Calathea Medium indirect Weekly
```jsx Markdown maxLines=10
Plant Light Requirements Water
Fern Partial shade Weekly
Snake Plant Low to bright indirect Bi-weekly
Monstera Bright indirect Weekly
Pothos Low to bright indirect Weekly
Fiddle Leaf Fig Bright indirect Weekly
Peace Lily Low to medium indirect Weekly
Rubber Plant Bright indirect Weekly
ZZ Plant Low to bright indirect Bi-weekly
Philodendron Medium to bright indirect Weekly
Aloe Vera Bright direct Bi-weekly
Boston Fern Partial shade 2-3x weekly
Spider Plant Medium to bright indirect Weekly
Dracaena Medium indirect Weekly
Bird of Paradise Bright indirect to direct Weekly
Calathea Medium indirect Weekly
``` ## Custom styling Sticky tables can be styled independently from regular tables. To add custom styling, target the `.fern-table.sticky` selector: ```css .fern-table.sticky { //custom css here } ``` ## Properties ### `` properties The markdown table to display with sticky headers. The table must be formatted using standard markdown table syntax. ### `` properties The markdown table to display with search functionality. The table must be formatted using standard markdown table syntax. Custom placeholder text for the search input. Defaults to `"Search..."`. ### `` properties The markdown table to display with both sticky headers and search functionality. The table must be formatted using standard markdown table syntax. Custom placeholder text for the search input. Defaults to `"Search..."`. ### HTML `` attributes When set on an HTML table element, makes the table header sticky during scrolling. When set on an HTML table element, adds a search input above the table that filters rows in real-time using case-insensitive substring matching. Custom placeholder text for the search input when `searchable` is enabled. Defaults to `"Search..."`. CSS class name(s) to apply to the table. Use `fern-table` for default Fern styling.