@ng-matero/extensions
Version:
Angular Material Extensions
26 lines (25 loc) • 1.35 kB
TypeScript
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { ElementRef, NgZone } from '@angular/core';
import { ColumnResizeNotifier, ColumnResizeNotifierSource, HeaderRowEventDispatcher } from '@ng-matero/extensions/column-resize';
import { AbstractMatColumnResize } from './common';
import * as i0 from "@angular/core";
/**
* Explicitly enables column resizing for a table-based mat-table.
* Individual columns must be annotated specifically.
*/
export declare class MatColumnResize extends AbstractMatColumnResize {
readonly columnResizeNotifier: ColumnResizeNotifier;
readonly elementRef: ElementRef<HTMLElement>;
protected readonly eventDispatcher: HeaderRowEventDispatcher;
protected readonly ngZone: NgZone;
protected readonly notifier: ColumnResizeNotifierSource;
constructor(columnResizeNotifier: ColumnResizeNotifier, elementRef: ElementRef<HTMLElement>, eventDispatcher: HeaderRowEventDispatcher, ngZone: NgZone, notifier: ColumnResizeNotifierSource);
static ɵfac: i0.ɵɵFactoryDeclaration<MatColumnResize, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<MatColumnResize, "table[mat-table][columnResize]", never, {}, {}, never, never, true, never>;
}