mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
57 lines
1.2 KiB
TypeScript
57 lines
1.2 KiB
TypeScript
import type { SvelteComponentTyped } from "svelte";
|
|
import type { SvelteHTMLElements } from "svelte/elements";
|
|
|
|
type $RestProps = SvelteHTMLElements["th"];
|
|
|
|
type $Props = {
|
|
/**
|
|
* Set to `true` for the sortable variant
|
|
* @default false
|
|
*/
|
|
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
|
|
* @default "col"
|
|
*/
|
|
scope?: string;
|
|
|
|
/**
|
|
* Override the default id translations
|
|
* @default () => ""
|
|
*/
|
|
translateWithId?: () => string;
|
|
|
|
/**
|
|
* Set an id for the top-level element
|
|
* @default "ccs-" + Math.random().toString(36)
|
|
*/
|
|
id?: string;
|
|
|
|
[key: `data-${string}`]: any;
|
|
};
|
|
|
|
export type TableHeaderProps = Omit<$RestProps, keyof $Props> & $Props;
|
|
|
|
export default class TableHeader extends SvelteComponentTyped<
|
|
TableHeaderProps,
|
|
{
|
|
mouseover: WindowEventMap["mouseover"];
|
|
mouseenter: WindowEventMap["mouseenter"];
|
|
mouseleave: WindowEventMap["mouseleave"];
|
|
click: WindowEventMap["click"];
|
|
},
|
|
{ default: {} }
|
|
> {}
|