@true-directive/grid
Version:
Angular Data Grid from Yopsilon.
34 lines (33 loc) • 897 B
TypeScript
/**
* Copyright (c) 2018-2019 Aleksey Melnikov, True Directive Company.
* @link https://truedirective.com/
* @license MIT
*/
import { EventEmitter } from '@angular/core';
import { Column } from '@true-directive/base';
import { GridStateService } from '../grid-state.service';
import { ICell } from './cell.interface';
/**
* Component for displaying links.
*/
export declare class CellRefComponent implements ICell {
content: any;
readonly ref: string;
value: string;
event: EventEmitter<any>;
column: Column;
row: any;
state: GridStateService;
disabled: boolean;
/**
* Found substring's Highlighting
* @param v Cell's value
* @return Highlighted html
*/
protected highlight(v: string): string;
/**
* Initialization
* @param value Cell's value
*/
init(value: any): void;
}