UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

34 lines (33 loc) 1.38 kB
import { GridColumnSortOptions } from "./GridColumnSortOptions"; import { IgcGridColumnOptionsSimpleSectionBaseComponent } from "./igc-grid-column-options-simple-section-base-component"; import { ColumnSortDirection } from "./ColumnSortDirection"; export declare class IgcGridColumnSortOptionsComponent extends IgcGridColumnOptionsSimpleSectionBaseComponent { private _height; private _width; set height(value: string); get height(): string; set width(value: string); get width(): string; private _webComponentWrapper; private _webComponentRenderer; constructor(); updateStyle(): void; destroy(): void; protected createImplementation(): GridColumnSortOptions; get i(): GridColumnSortOptions; private _disconnected; disconnectedCallback(): void; connectedCallback(): void; afterContentInit(): void; private static _observedAttributesIgcGridColumnSortOptionsComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; get ascendingCaption(): string; set ascendingCaption(v: string); get descendingCaption(): string; set descendingCaption(v: string); get sortDirection(): ColumnSortDirection; set sortDirection(v: ColumnSortDirection); }