@asadi/angular-date-components
Version:
`Angular Date Components` is a comprehensive angular library of date-related components designed to meet the needs of applications that require localization based on various calendar systems. While the package currently includes two powerful components (S
19 lines (18 loc) • 567 B
TypeScript
import { ADCITableCell } from "../interface";
export declare class ADCTableCell {
readonly element: HTMLElement;
constructor(element: HTMLElement);
get rowValue(): string;
get columnValue(): string;
get rowIndex(): number;
get columnIndex(): number;
removeState(state: 'selected' | 'invalid' | 'pointed'): void;
resetState(): void;
markAsSelected(): void;
markAsInvalid(): void;
markAsPointed(): void;
get invalid(): boolean;
get selected(): boolean;
get pointed(): boolean;
asTableCell(): ADCITableCell;
}