import { AfterViewInit, ChangeDetectorRef, ElementRef, IterableDiffers, OnDestroy } from '@angular/core'; import { ElPlatform } from '../cdk/platform/platform-service'; import { ElDirectionality } from '../cdk/bidi/bidi-service'; import { ElTable } from '../cdk/table/table.module'; import { ElTreeGridDataSource, ElTreeGridDataSourceBuilder } from './data-source/tree-grid-data-source'; import { ElTreeGridPresentationNode } from './data-source/tree-grid.model'; import { ElToggleOptions } from './data-source/tree-grid.service'; import { ElTreeGridRowComponent } from './tree-grid-row.component'; import { ElTreeGridCellDirective } from './tree-grid-cell.component'; /** * Tree grid component that can be used to display nested rows of data. * Supports filtering and sorting. * @stacked-example(Showcase, tree-grid/tree-grid-showcase.component) * * ### Installation * * Import `ElTreeGridModule` to your feature module. * ```ts * @NgModule({ * imports: [ * // ... * ElTreeGridModule, * ], * }) * export class PageModule { } * ``` * * ### Usage * * As the most basic usage you need to define [elTreeGridRowDef](docs/components/treegrid/api#eltreegridrowdefdirective) * where you should pass columns to display in rows and * [elTreeGridColumnDef](docs/components/treegrid/api#eltreegridcolumndefdirective) - component containing cell * definitions for each column passed to row definition. * @stacked-example(Basic, tree-grid/tree-grid-basic.component) * * `ElTreeGridComponent`'s source input and `ElTreeGridDataSourceBuilder.create` expecting data to be an array of * objects with `data`, `children` and `expanded` properties. If your data doesn't match this interface, you can pass * getter functions for each property as arguments to `ElTreeGridDataSourceBuilder.create` method. * @stacked-example(Custom node structure, tree-grid/tree-grid-custom-node-structure.component) * * To use sorting you can add `elSort` directive to table and subscribe to `sort` method. When user click on header, * sort event will be emitted. Event object contain clicked column name and desired sort direction. * @stacked-example(Sortable, tree-grid/tree-grid-sortable.component) * * You can use `Data Source Builder` to create `ElTreeGridDataSource` which would have toggle, sort and * filter methods. Then you can call this methods to change sort or toggle rows programmatically. Also `elSort` and * `elFilterInput` directives both support `ElTreeGridDataSource`, so you can pass it directly as an input and * directives will trigger sort, toggle themselves. * @stacked-example(Data Source Builder, tree-grid/tree-grid-showcase.component) * * You can create responsive grid by setting `hideOn` and `showOn` inputs of * [elTreeGridColumnDef](docs/components/tree-grid/api#eltreegridcolumndefdirective) directive. * When viewport reaches specified width grid hides or shows columns. * @stacked-example(Responsive columns, tree-grid/tree-grid-responsive.component) * * To customize sort or row toggle icons you can use `elSortHeaderIcon` and `elTreeGridRowToggle` directives * respectively. `elSortHeaderIcon` is a structural directive and it's implicit context set to current direction. * Also context has three properties: `isAscending`, `isDescending` and `isNone`. * @stacked-example(Custom icons, tree-grid/tree-grid-custom-icons.component) * * By default, row to toggle happens when user clicks anywhere in the row. Also double click expands row deeply. * To disable this you can set `[clickToToggle]="false"` input of `elTreeGridRow`. * @stacked-example(Disable click toggle, tree-grid/tree-grid-disable-click-toggle.component) * * @styles * * tree-grid-cell-border-width: * tree-grid-cell-border-style: * tree-grid-cell-border-color: * tree-grid-row-min-height: * tree-grid-cell-padding: * tree-grid-header-background-color: * tree-grid-header-text-color: * tree-grid-header-text-font-family: * tree-grid-header-text-font-size: * tree-grid-header-text-font-weight: * tree-grid-header-text-line-height: * tree-grid-footer-background-color: * tree-grid-footer-text-color: * tree-grid-footer-text-font-family: * tree-grid-footer-text-font-size: * tree-grid-footer-text-font-weight: * tree-grid-footer-text-line-height: * tree-grid-row-background-color: * tree-grid-row-even-background-color: * tree-grid-row-hover-background-color: * tree-grid-row-text-color: * tree-grid-row-text-font-family: * tree-grid-row-text-font-size: * tree-grid-row-text-font-weight: * tree-grid-row-text-line-height: * tree-grid-sort-header-button-background-color: * tree-grid-sort-header-button-border: * tree-grid-sort-header-button-padding: */ export declare class ElTreeGridComponent extends ElTable> implements AfterViewInit, OnDestroy { private dataSourceBuilder; private window; constructor(dataSourceBuilder: ElTreeGridDataSourceBuilder, differs: IterableDiffers, changeDetectorRef: ChangeDetectorRef, elementRef: ElementRef, role: string, dir: ElDirectionality, document: any, platform: ElPlatform | undefined, window: any); private alive; private _source; private platform; /** * The table's data * @param data * @type {[] | ElTreeGridDataSource} */ source: T[] | ElTreeGridDataSource; levelPadding: string; /** * Make all columns equal width. False by default. */ equalColumnsWidth: boolean; private equalColumnsWidthValue; private rows; readonly treeClass = true; ngAfterViewInit(): void; ngOnDestroy(): void; toggleRow(row: ElTreeGridRowComponent, options?: ElToggleOptions): void; toggleCellRow(cell: ElTreeGridCellDirective): void; getColumnWidth(): string; getCellLevel(cell: ElTreeGridCellDirective, columnName: string): number; private getDataIndex; private getRowLevel; private getColumns; private getColumnsCount; private isFirstColumn; private findCellRow; private checkDefsCount; private updateVisibleColumns; }