dap-design-system
Version:
Official design system for the DÁP (dap.gov.hu)
24 lines (23 loc) • 1.04 kB
TypeScript
import { DdsElement } from '../../internal/dds-hu-element';
/**
* Table row component.
* @element dap-ds-table-row
* @title - Table row
* @group table
*
* @slot - The default slot. Accepts `dap-ds-table-cell` and `dap-ds-table-header` elements.
*
* @cssprop --dds-table-row-padding-right - Padding right for the last table header, (default: var(--dds-spacing-500))
* @cssprop --dds-table-row-padding-top - Padding top for table headers in mobile view, (default: var(--dds-spacing-400))
* @cssprop --dds-table-row-padding-bottom - Padding bottom for the last table cell in mobile view, (default: var(--dds-spacing-400))
* @cssprop --dds-table-row-border-color - Border color for table cells and headers, (default: transparent)
*/
export default class DapDSTableRow extends DdsElement {
static tagName: string;
static readonly styles: import('lit').CSSResult;
/** The html role of the row */
role: string;
/**If the row is mobile design */
mobile: boolean;
render(): import('lit-html').TemplateResult;
}