survey-angular-ui
Version:
A free MIT-licensed Angular UI component that renders dynamic, interactive JSON-based forms and surveys. You can use it to collect responses from users and send them to your own database.
16 lines (15 loc) • 889 B
TypeScript
import { ScrollViewModel } from "survey-core";
import { ElementRef, OnDestroy, AfterViewInit, ViewContainerRef } from "@angular/core";
import { EmbeddedViewContentComponent } from "../../embedded-view-content.component";
import * as i0 from "@angular/core";
export declare class ScrollComponent extends EmbeddedViewContentComponent implements AfterViewInit, OnDestroy {
model: ScrollViewModel;
disabled?: boolean;
onInnerHeightChanged?: (hasScroll: boolean) => void;
container: ElementRef<HTMLElement> | undefined;
constructor(viewContainerRef?: ViewContainerRef);
ngAfterViewInit(): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ScrollComponent, "sv-scroll", never, { "disabled": "disabled"; "onInnerHeightChanged": "onInnerHeightChanged"; }, {}, never, ["*"]>;
}