UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

60 lines (59 loc) 2.14 kB
import { EditorType } from "./EditorType"; import { IgrGridCustomFilterRequestedEventArgs } from "./igr-grid-custom-filter-requested-event-args"; import { FilterOperand as FilterOperand_internal } from "./FilterOperand"; import { ContentChildrenManager } from "igniteui-react-core"; import { FilterFactory } from "igniteui-react-core"; /** * A filter operand. */ export declare class IgrFilterOperand { protected createImplementation(): FilterOperand_internal; protected _implementation: any; protected mounted: boolean; get nativeElement(): HTMLElement; /** * @hidden */ get i(): FilterOperand_internal; protected onImplementationCreated(): void; protected _contentChildrenManager: ContentChildrenManager; constructor(); protected _provideImplementation(i: any): void; /** * Gets the FilterFactory to assists in building filters. */ get filterFactory(): FilterFactory; /** * Gets or sets the ID of the filter. Must be unique from other filters in the column. */ get iD(): string; set iD(v: string); /** * Gets or sets the name for display of this custom filter. */ get displayName(): string; set displayName(v: string); /** * Gets or sets the SVG path to use for the operand icon in the filter cell. */ get icon(): string; set icon(v: string); /** * Gets or sets whether this filter requires input. */ get isInputRequired(): boolean; set isInputRequired(v: boolean); /** * The type of editor to use in the filter cell. Combo is not currently supported. */ get editorType(): EditorType; set editorType(v: EditorType); findByName(name: string): any; private _filterRequested; private _filterRequested_wrapped; /** * Gets or sets a function that returns a filter expression to use. */ get filterRequested(): (s: IgrFilterOperand, e: IgrGridCustomFilterRequestedEventArgs) => void; set filterRequested(ev: (s: IgrFilterOperand, e: IgrGridCustomFilterRequestedEventArgs) => void); }