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.
19 lines (18 loc) • 930 B
TypeScript
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;
get itemSvgIcon(): string;
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, ["*"]>;
}