UNPKG

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) 899 B
import { MatrixRowModel, ItemValue, QuestionMatrixModel } from "survey-core"; import { BaseAngular } from "../base-angular"; import * as i0 from "@angular/core"; export interface INgMatrixCellChanged { onCellChanged(row: MatrixRowModel, column: ItemValue): void; } export declare class MatrixCellComponent extends BaseAngular<ItemValue> { question: QuestionMatrixModel; column: ItemValue; row: MatrixRowModel; columnIndex: number; cellChangedOwner: INgMatrixCellChanged; protected getModel(): ItemValue; onChange(): void; static ɵfac: i0.ɵɵFactoryDeclaration<MatrixCellComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<MatrixCellComponent, "sv-ng-matrix-cell, '[sv-ng-matrix-cell]'", never, { "question": "question"; "column": "column"; "row": "row"; "columnIndex": "columnIndex"; "cellChangedOwner": "cellChangedOwner"; }, {}, never, ["*"]>; }