UNPKG

@progress/kendo-angular-grid

Version:

Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.

35 lines (34 loc) 1.61 kB
/**----------------------------------------------------------------------------------------- * 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, Renderer2 } from '@angular/core'; import { ColumnResizingService } from './column-resizing.service'; import { ContextService } from '../common/provider.service'; import * as i0 from "@angular/core"; /** * @hidden */ export declare class TableDirective implements OnInit, OnDestroy { private element; private renderer; private service; private zone; private cdr; private ctx; locked: boolean; virtualColumns: boolean; get minWidth(): number | null; private firstResize; private subscription; private autoFitSubscription; constructor(element: ElementRef, renderer: Renderer2, service: ColumnResizingService, zone: NgZone, cdr: ChangeDetectorRef, ctx: ContextService); ngOnInit(): void; ngOnDestroy(): void; private initState; private resize; private autoFitObservable; private measureColumn; static ɵfac: i0.ɵɵFactoryDeclaration<TableDirective, never>; static ɵdir: i0.ɵɵDirectiveDeclaration<TableDirective, "[kendoGridResizableTable]", never, { "locked": { "alias": "locked"; "required": false; }; "virtualColumns": { "alias": "virtualColumns"; "required": false; }; }, {}, never, never, true, never>; }