survey-angular-ui
Version:
survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.
18 lines (17 loc) • 968 B
TypeScript
import { ElementRef } from "@angular/core";
import { BaseAngular } from "../base-angular";
import { MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase, QuestionMatrixDropdownRenderedRow } from "survey-core";
import * as i0 from "@angular/core";
export declare class MatrixRowComponent extends BaseAngular<QuestionMatrixDropdownRenderedRow> {
model: QuestionMatrixDropdownRenderedRow;
question: QuestionMatrixDropdownModelBase;
container: ElementRef<HTMLTableRowElement>;
protected getModel(): QuestionMatrixDropdownRenderedRow;
get row(): MatrixDropdownRowModelBase;
trackCellBy(_: number, cell: any): string;
protected onModelChanged(): void;
ngAfterViewInit(): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<MatrixRowComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<MatrixRowComponent, "sv-ng-matrix-row", never, { "model": "model"; "question": "question"; }, {}, never, never>;
}