mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-19 11:59:34 +00:00
Run "yarn build:docs"
This commit is contained in:
parent
91348df434
commit
94472817a8
3 changed files with 48 additions and 10 deletions
16
types/DataTable/TableHeader.svelte.d.ts
vendored
16
types/DataTable/TableHeader.svelte.d.ts
vendored
|
@ -4,10 +4,22 @@ import type { SvelteComponentTyped } from "svelte";
|
|||
export interface TableHeaderProps
|
||||
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["th"]> {
|
||||
/**
|
||||
* Set to `true` to disable sorting on this specific cell
|
||||
* Set to `true` for the sortable variant
|
||||
* @default false
|
||||
*/
|
||||
disableSorting?: boolean;
|
||||
sortable?: boolean;
|
||||
|
||||
/**
|
||||
* Specify the sort direction
|
||||
* @default "none"
|
||||
*/
|
||||
sortDirection?: "none" | "ascending" | "descending";
|
||||
|
||||
/**
|
||||
* Set to `true` if the column sorting
|
||||
* @default false
|
||||
*/
|
||||
active?: boolean;
|
||||
|
||||
/**
|
||||
* Specify the `scope` attribute
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue