UNPKG

703 BTypeScriptView Raw
1import type { BeanCollection, RichSelectParams } from 'ag-grid-community';
2import { Component } from 'ag-grid-community';
3export declare class RichSelectRow<TValue> extends Component {
4 private readonly params;
5 private userComponentFactory;
6 wireBeans(beans: BeanCollection): void;
7 private value;
8 private parsedValue;
9 constructor(params: RichSelectParams<TValue>);
10 setState(value: TValue): void;
11 highlightString(matchString: string): void;
12 updateSelected(selected: boolean): void;
13 getValue(): TValue;
14 toggleHighlighted(highlighted: boolean): void;
15 private populateWithoutRenderer;
16 private renderValueWithoutRenderer;
17 private populateWithRenderer;
18}