import { IgcHTMLElement } from "igniteui-webcomponents-core"; import { IgcGridFilterDialogOpeningEventArgs } from "./igc-grid-filter-dialog-opening-event-args"; import { IgcGridFilterDialogFilterChangeEventArgs } from "./igc-grid-filter-dialog-filter-change-event-args"; import { IgcFilterDialogRenderCompletedEventArgs } from "./igc-filter-dialog-render-completed-event-args"; import { GridFilterDialog } from "./GridFilterDialog"; import { ToolCommand } from "igniteui-webcomponents-core"; import { ToolActionInfo } from "igniteui-webcomponents-core"; import { ICommandAvailabilityListener } from "igniteui-webcomponents-core"; import { ICommandStateChangedListener } from "igniteui-webcomponents-core"; import { IToolbarContextAccessor } from "igniteui-webcomponents-core"; /** * An advanced grid for displaying data. */ export declare class IgcDataGridFilterDialogComponent extends IgcHTMLElement { protected createImplementation(): GridFilterDialog; protected _implementation: any; /** * @hidden */ get i(): GridFilterDialog; /** * @hidden */ static _createFromInternal(internal: any): IgcDataGridFilterDialogComponent; private onImplementationCreated; constructor(); private _settingAttributes; protected _attached: boolean; private _queuedSetAttributes; protected _enqueueSetAttribute(attrName: string, attrValue: string): void; protected _flushQueuedAttributes(): void; protected _a(attrName: string, attrValue: any): void; connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcDataGridFilterDialogComponent; static get observedAttributes(): string[]; private _updatingFromAttribute; attributeChangedCallback(name: string, oldValue: string, newValue: string): void; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; get isAnimationEnabled(): boolean; set isAnimationEnabled(v: boolean); /** * Gets or sets the scaling value used to affect the pixel density of the control. * A higher scaling ratio will produce crisper visuals at the expense of memory. Lower values will cause the control * to appear blurry. */ get pixelScalingRatio(): number; set pixelScalingRatio(v: number); /** * Gets the actual pixel scaling ratio used to affect the pixel density of the control. * A higher scaling ratio will produce crisper visuals at the expense of memory. Lower values will cause the control * to appear blurry. */ get actualPixelScalingRatio(): number; set actualPixelScalingRatio(v: number); get iconColor(): string; set iconColor(v: string); get viewSize(): number; set viewSize(v: number); /** * Gets or sets the column options dropdown background color. */ get columnOptionsBackground(): string; set columnOptionsBackground(v: string); /** * Gets or sets the scrollbar background color for checkbox lists in the column options dialog. */ get columnOptionsScrollbarBackground(): string; set columnOptionsScrollbarBackground(v: string); /** * Gets or sets the scrollbar thumb hover background color for checkbox lists in the column options dialog. */ get columnOptionsScrollbarHoverBackground(): string; set columnOptionsScrollbarHoverBackground(v: string); /** * Gets or sets the scrollbar thumb active (dragging) background color for checkbox lists in the column options dialog. */ get columnOptionsScrollbarActiveBackground(): string; set columnOptionsScrollbarActiveBackground(v: string); /** * Gets or sets the text color for text inside the column options menu. */ get columnOptionsTextColor(): string; set columnOptionsTextColor(v: string); /** * Gets or sets the font settings for text inside the column options menu. */ get columnOptionsTextStyle(): string; set columnOptionsTextStyle(v: string); /** * Gets or sets the hover background color inside the column options menu. */ get columnOptionsHoverBackgroundColor(): string; set columnOptionsHoverBackgroundColor(v: string); /** * Gets or sets the tooltip background color inside the column options menu. */ get columnOptionsToolTipBackgroundColor(): string; set columnOptionsToolTipBackgroundColor(v: string); /** * Gets or sets the tooltip text color inside the column options menu. */ get columnOptionsToolTipTextColor(): string; set columnOptionsToolTipTextColor(v: string); /** * Gets or sets the highlight color inside the column options menu. */ get columnOptionsHighlightColor(): string; set columnOptionsHighlightColor(v: string); /** * Gets or sets the color of separators inside the column options menu. */ get columnOptionsSeparatorColor(): string; set columnOptionsSeparatorColor(v: string); /** * Gets or sets the background color for group headers inside the column options menu. */ get columnOptionsGroupHeaderBackground(): string; set columnOptionsGroupHeaderBackground(v: string); /** * Gets or sets the text color for group headers inside the column options menu. */ get columnOptionsGroupHeaderTextColor(): string; set columnOptionsGroupHeaderTextColor(v: string); /** * Gets or sets the font settings for group header text inside the column options menu. */ get columnOptionsGroupHeaderTextStyle(): string; set columnOptionsGroupHeaderTextStyle(v: string); get columnOptionsAccentColor(): string; set columnOptionsAccentColor(v: string); /** * Gets or sets the row height for submenus inside the column options menu. */ get columnOptionsRowHeight(): number; set columnOptionsRowHeight(v: number); get isOpen(): boolean; get commandCompleted(): (arg1: ToolCommand) => void; set commandCompleted(v: (arg1: ToolCommand) => void); get invalidateActions(): () => void; set invalidateActions(v: () => void); findByName(name: string): any; protected __p: string; protected _hasUserValues: Set; protected get hasUserValues(): Set; protected __m(propertyName: string): void; protected _stylingContainer: any; protected _stylingParent: any; protected _inStyling: boolean; protected _styling(container: any, component: any, parent?: any): void; notifySizeChanged(width: number, height: number): void; notifyCellSizeChanged(): void; showIcon(): void; hideIcon(): void; getDesiredToolbarActions(): ToolActionInfo[]; addCommandAvailabilityListener(listener: ICommandAvailabilityListener): void; removeCommandAvailabilityListener(listener: ICommandAvailabilityListener): void; addCommandStateChangedListener(listener: ICommandStateChangedListener): void; removeCommandStateChangedListener(listener: ICommandStateChangedListener): void; provideContextAccessor(accessor: IToolbarContextAccessor): void; dismissContextAccessor(accessor: IToolbarContextAccessor): void; private _dialogOpening; private _dialogOpening_wrapped; get dialogOpening(): (s: IgcDataGridFilterDialogComponent, e: IgcGridFilterDialogOpeningEventArgs) => void; set dialogOpening(ev: (s: IgcDataGridFilterDialogComponent, e: IgcGridFilterDialogOpeningEventArgs) => void); private _filterChanging; private _filterChanging_wrapped; get filterChanging(): (s: IgcDataGridFilterDialogComponent, e: IgcGridFilterDialogFilterChangeEventArgs) => void; set filterChanging(ev: (s: IgcDataGridFilterDialogComponent, e: IgcGridFilterDialogFilterChangeEventArgs) => void); private _filterChanged; private _filterChanged_wrapped; get filterChanged(): (s: IgcDataGridFilterDialogComponent, e: IgcGridFilterDialogFilterChangeEventArgs) => void; set filterChanged(ev: (s: IgcDataGridFilterDialogComponent, e: IgcGridFilterDialogFilterChangeEventArgs) => void); private _renderCompleted; private _renderCompleted_wrapped; get renderCompleted(): (s: IgcDataGridFilterDialogComponent, e: IgcFilterDialogRenderCompletedEventArgs) => void; set renderCompleted(ev: (s: IgcDataGridFilterDialogComponent, e: IgcFilterDialogRenderCompletedEventArgs) => void); }