@ux-aspects/ux-aspects
Version:
Open source user interface framework for building modern, responsive, mobile big data applications
13 lines (12 loc) • 847 B
TypeScript
import { AfterViewInit, ElementRef } from '@angular/core';
import * as i0 from "@angular/core";
export declare class ScrollIntoViewDirective implements AfterViewInit {
readonly _elementRef: ElementRef<any>;
/** Allow a condition around whether or not this should scroll into view */
uxScrollIntoView: boolean;
/** Allow user to provide the browser supported options */
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
ngAfterViewInit(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollIntoViewDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<ScrollIntoViewDirective, "[uxScrollIntoView]", never, { "uxScrollIntoView": { "alias": "uxScrollIntoView"; "required": false; }; "scrollIntoViewOptions": { "alias": "scrollIntoViewOptions"; "required": false; }; }, {}, never, never, false, never>;
}