igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
70 lines (69 loc) • 2.9 kB
TypeScript
import { IgcHTMLElement } from "igniteui-webcomponents-core";
import { GridExpansionIndicator } from "./GridExpansionIndicator";
export declare class IgcDataGridExpansionIndicatorComponent extends IgcHTMLElement {
protected createImplementation(): GridExpansionIndicator;
protected _implementation: any;
/**
* @hidden
*/
get i(): GridExpansionIndicator; /**
* @hidden
*/
static _createFromInternal(internal: any): IgcDataGridExpansionIndicatorComponent;
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 _observedAttributesIgcDataGridExpansionIndicatorComponent;
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 expansion state of the indicator.
*/
get isExpanded(): boolean;
set isExpanded(v: boolean);
/**
* Gets or sets the color of the indicator.
*/
get iconColor(): string;
set iconColor(v: string);
/**
* Gets or sets whether animations are enabled.
*/
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);
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;
notifySizeChanged(width: number, height: number): void;
}