tw-table
Version:
table designed with tailwind and tanstack-table.
40 lines (39 loc) • 1.45 kB
TypeScript
export declare const CARD_TABLE_HEAD_CLASSNAMES = "border-none h-px m-negative-1 overflow-hidden p-0 absolute w-px";
export declare const CARD_TABLE_ROW_CLASSNAMES = "border block mt-2.5";
export declare const CARD_TABLE_DESCRIPTiON_CLASSNAMES = "border-b flex justify-between items-center text-right before:content-[attr(data-label)] before:float-left before:font-bold pl-8";
export declare const SCROLL_TABLE_HEAD_CLASSNAMES = "border-none";
export declare const SCROLL_TABLE_DESCRIPTION_CLASSNAMES = "border-b";
export declare const CARD_CHECKBOX_CLASSNAMES = "absolute left-2";
export declare const SCROLL_CHECKBOX_CLASSNAMES = "mr-2";
export declare const TABLE_HEAD_CLASSNAMES: {
card: string;
scroll: string;
};
export declare const TABLE_ROW_CLASSNAMES: {
card: string;
scroll: string;
};
export declare const TABLE_DESCRIPTION_CLASSNAMES: {
card: string;
scroll: string;
};
export declare const TABLE_ROW_CHECKBOX_CLASSNAMES: {
card: string;
scroll: string;
};
export declare const RESPONSIVE_TABLE_HEAD_CLASSNAMES: {
card: string;
scroll: string;
};
export declare const RESPONSIVE_TABLE_ROW_CLASSNAMES: {
card: string;
scroll: string;
};
export declare const RESPONSIVE_TABLE_DESCRIPTION_CLASSNAMES: {
card: string;
scroll: string;
};
export declare const RESPONSIVE_TABLE_ROW_CHECKBOX_CLASSNAMES: {
card: string;
scroll: string;
};