import { CustomElement } from '../../Abstracts/CustomElement'; import type { IConnectedCallback } from '../../Abstracts/Interfaces/IConnectedCallback'; import type { IDisconnectedCallback } from '../../Abstracts/Interfaces/IDisconnectedCallback'; import { ITableRowElementProps } from './ITableRowElementProps'; declare const TableRowElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Selectable").ISelectableProps & import("../../../Behaviors/Selectable").ISelectableEvents & import("../../../Behaviors/Selectable").ISelectable) & (abstract new (...args: Array) => import("../../../Behaviors/Disableable").IDisableableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Table Row - A horizontal grouping of table cells, representing a single data entry. * * @element mosaik-table-row * * @slot - The default slot. * * @cssprop {String} --table-row-background-color - The row background color CSS custom property. * @cssprop {String} --table-row-border-color - The row border color CSS custom property. * @cssprop {String} --table-row-border-radius - The row border radius CSS custom property. * @cssprop {String} --table-row-border-style - The row border style CSS custom property. * @cssprop {String} --table-row-border-width - The row border width CSS custom property. * @cssprop {String} --table-row-font-family - The row font family CSS custom property. * @cssprop {String} --table-row-font-letter-spacing - The row font letter spacing CSS custom property. * @cssprop {String} --table-row-font-line-height - The row font line height CSS custom property. * @cssprop {String} --table-row-font-size - The row font size CSS custom property. * @cssprop {String} --table-row-font-text-decoration - The row font text decoration CSS custom property. * @cssprop {String} --table-row-font-text-transform - The row font text transform CSS custom property. * @cssprop {String} --table-row-font-weight - The row font weight CSS custom property. * @cssprop {String} --table-row-foreground-color - The row foreground color CSS custom property. * @cssprop {String} --table-row-gap - The row gap CSS custom property. * @cssprop {String} --table-row-padding-bottom - The row padding bottom CSS custom property. * @cssprop {String} --table-row-padding-left - The row padding left CSS custom property. * @cssprop {String} --table-row-padding-right - The row padding right CSS custom property. * @cssprop {String} --table-row-padding-top - The row padding top CSS custom property. * @cssprop {String} --table-row-shadow - The row shadow CSS custom property. * @cssprop {String} --table-row-shadow-blur - The row shadow blur CSS custom property. * @cssprop {String} --table-row-shadow-color - The row shadow color CSS custom property. * @cssprop {String} --table-row-shadow-offset-x - The row shadow offset x CSS custom property. * @cssprop {String} --table-row-shadow-offset-y - The row shadow offset y CSS custom property. * @cssprop {String} --table-row-shadow-spread - The row shadow spread CSS custom property. * @cssprop {String} --table-row-transition-duration - The row transition duration CSS custom property. * @cssprop {String} --table-row-transition-mode - The row transition mode CSS custom property. * @cssprop {String} --table-row-transition-property - The row transition property CSS custom property. * @cssprop {String} --table-row-translate - The row translate CSS custom property. * * @fires selected {SelectedEvent} - Fired when the row is selected. * @fires deselected {DeselectedEvent} - Fired when the row is deselected. * * @example * Table row with cells: * ```html * * * * * * * * * ``` * * @public */ export declare class TableRowElement extends TableRowElement_base implements IConnectedCallback, IDisconnectedCallback, ITableRowElementProps { private readonly _inheritance; private _columnsChangedSubscription; private _clickSubscription; private _hasTableColumns; private _table; /** * @public */ constructor(); /** * Returns the `is` property. * * @public * @static * @readonly */ static get is(): string; onSlotChange(event: Event): void; /** * @public * @override */ disconnectedCallback(): void; /** * @protected * @override */ protected onApplyTemplate(): void; /** * Re-evaluates the click handler when inherited selection properties change. * * @protected * @override */ protected updated(changedProperties: Map): void; /** * Sets up or tears down the click handler based on the inherited selection config. * * @private */ private updateSelectionClickHandler; /** * Handles click events for row selection. * * @private */ private handleRowClick; } /** * @public */ export declare namespace TableRowElement { type Props = ITableRowElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-table-row': TableRowElement; } } export {}; //# sourceMappingURL=TableRowElement.d.ts.map