ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components
25 lines (24 loc) • 958 B
TypeScript
import { Component } from "./component";
export declare type LabelAlignment = 'left' | 'right' | 'top';
export interface IAgLabel {
label?: HTMLElement | string;
labelWidth?: number | 'flex';
labelSeparator?: string;
labelAlignment?: LabelAlignment;
}
export declare abstract class AgAbstractLabel<TConfig extends IAgLabel = IAgLabel> extends Component {
protected abstract eLabel: HTMLElement;
protected readonly config: TConfig;
protected labelSeparator: string;
protected labelAlignment: LabelAlignment;
private label;
constructor(config?: TConfig, template?: string);
protected postConstruct(): void;
protected refreshLabel(): void;
setLabelSeparator(labelSeparator: string): this;
getLabelId(): string;
getLabel(): HTMLElement | string;
setLabel(label: HTMLElement | string): this;
setLabelAlignment(alignment: LabelAlignment): this;
setLabelWidth(width: number | 'flex'): this;
}