igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
95 lines (94 loc) • 3.42 kB
TypeScript
import { ColumnChooser } from './ColumnChooser';
import { IgcDataGridComponent } from "./igc-data-grid-component";
import { BaseControlTheme } from "igniteui-webcomponents-core";
import { ControlDisplayDensity } from "igniteui-webcomponents-core";
import { IgcHTMLElement } from "igniteui-webcomponents-core";
export declare class IgcColumnChooserComponent extends IgcHTMLElement {
private _height;
private _width;
set height(value: string);
get height(): string;
set width(value: string);
get width(): string;
private _container;
private _renderer;
constructor();
updateStyle(): void;
destroy(): void;
protected createImplementation(): ColumnChooser;
private _columnChooser;
private _disconnected;
disconnectedCallback(): void;
connectedCallback(): void;
afterContentInit(): void;
protected _implementation: any;
/**
* @hidden
*/
get i(): ColumnChooser; /**
* @hidden
*/
static _createFromInternal(internal: any): IgcColumnChooserComponent;
private _settingAttributes;
protected _attached: boolean;
private _queuedSetAttributes;
protected _enqueueSetAttribute(attrName: string, attrValue: string): void;
protected _flushQueuedAttributes(): void;
protected _a(attrName: string, attrValue: any): void;
private static _observedAttributesIgcColumnChooserComponent;
static get observedAttributes(): string[];
private _updatingFromAttribute;
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
/**
* Gets or Sets the property name that contains the values.
*/
get targetGrid(): IgcDataGridComponent;
set targetGrid(v: IgcDataGridComponent);
/**
* Gets or Sets the property name that contains the values.
*/
get title(): string;
set title(v: string);
/**
* Gets or Sets the property name that contains the values.
*/
get titleStyle(): string;
set titleStyle(v: string);
/**
* Gets or Sets the property name that contains the values.
*/
get titleColor(): string;
set titleColor(v: string);
/**
* Gets or Sets the property name that contains the values.
*/
get filterPlaceholderText(): string;
set filterPlaceholderText(v: string);
/**
* Gets or Sets the property name that contains the values.
*/
get baseTheme(): BaseControlTheme;
set baseTheme(v: BaseControlTheme);
/**
* Gets or Sets the property name that contains the values.
*/
get density(): ControlDisplayDensity;
set density(v: ControlDisplayDensity);
/**
* Gets or Sets the property name that contains the values.
*/
get backgroundColor(): string;
set backgroundColor(v: string);
findByName(name: string): any;
protected __p: string;
protected _hasUserValues: Set<string>;
protected get hasUserValues(): Set<string>;
protected __m(propertyName: string): void;
protected _stylingContainer: any;
protected _stylingParent: any;
protected _inStyling: boolean;
protected _styling(container: any, component: any, parent?: any): void;
}