@progress/kendo-angular-treelist
Version:
Kendo UI TreeList for Angular - Display hierarchical data in an Angular tree grid view that supports sorting, filtering, paging, and much more.
42 lines (41 loc) • 1.96 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ChangeDetectorRef, ElementRef, NgZone, OnDestroy, OnInit } from '@angular/core';
import { LocalizationService } from '@progress/kendo-angular-l10n';
import { ColumnBase } from '../columns/column-base';
import { DraggableDirective } from '@progress/kendo-angular-common';
import { ColumnResizingService } from './column-resizing.service';
import * as i0 from "@angular/core";
/**
* @hidden
*/
export declare class ColumnHandleDirective implements OnInit, OnDestroy {
draggable: DraggableDirective;
private element;
private service;
private zone;
private cdr;
private localization;
columns: Array<ColumnBase>;
column: ColumnBase;
get visible(): string;
get leftStyle(): number | null;
get rightStyle(): number | null;
private subscriptions;
private rtl;
autoFit(): void;
constructor(draggable: DraggableDirective, element: ElementRef, service: ColumnResizingService, zone: NgZone, cdr: ChangeDetectorRef, localization: LocalizationService);
ngOnInit(): void;
ngOnDestroy(): void;
private shouldUpdate;
private initColumnWidth;
private initState;
private resize;
private sizeToFit;
private updateWidth;
private columnsForLevel;
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnHandleDirective, [{ host: true; }, null, null, null, null, null]>;
static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnHandleDirective, "[kendoTreeListColumnHandle]", never, { "columns": { "alias": "columns"; "required": false; }; "column": { "alias": "column"; "required": false; }; }, {}, never, never, true, never>;
}