survey-angular-ui 1.9.64 → 1.9.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/angular-ui.d.ts +1 -0
- package/angular-ui.module.d.ts +58 -57
- package/comment-other.component.d.ts +13 -0
- package/esm2020/angular-ui.mjs +2 -1
- package/esm2020/angular-ui.module.mjs +6 -5
- package/esm2020/comment-other.component.mjs +32 -0
- package/esm2020/comment.component.mjs +3 -3
- package/esm2020/components/element-header/element-header.component.mjs +4 -2
- package/esm2020/components/renderAs/boolean-radio/boolean-radio.component.mjs +3 -3
- package/esm2020/components/renderAs/dropdown-select/dropdown-select.component.mjs +4 -4
- package/esm2020/components/tagbox/tagbox-item.component.mjs +3 -3
- package/esm2020/questions/checkbox.component.mjs +4 -4
- package/esm2020/questions/dropdown.component.mjs +4 -4
- package/esm2020/questions/imagepicker-item.component.mjs +6 -5
- package/esm2020/questions/matrix.component.mjs +3 -3
- package/esm2020/questions/matrixcell.component.mjs +4 -4
- package/esm2020/questions/matrixdropdown.component.mjs +3 -3
- package/esm2020/questions/matrixdynamic.component.mjs +3 -3
- package/esm2020/questions/matrixtable.component.mjs +3 -3
- package/esm2020/questions/radiogroup.component.mjs +4 -4
- package/esm2020/questions/selectbase.component.mjs +4 -4
- package/esm2020/questions/tagbox.component.mjs +4 -4
- package/fesm2015/survey-angular-ui.mjs +67 -36
- package/fesm2015/survey-angular-ui.mjs.map +1 -1
- package/fesm2020/survey-angular-ui.mjs +67 -36
- package/fesm2020/survey-angular-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/questions/matrixcell.component.d.ts +2 -3
package/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
/// <reference path="../../survey-core/survey.core.d.ts" />
|
|
2
1
|
import { ElementRef } from "@angular/core";
|
|
3
2
|
import { BaseAngular } from "../base-angular";
|
|
4
|
-
import { Question, QuestionMatrixDropdownModelBase, QuestionMatrixDropdownRenderedCell } from "survey-core";
|
|
3
|
+
import { Question, QuestionMatrixDropdownModelBase, QuestionMatrixDropdownRenderedCell, MatrixDropdownRowModelBase } from "survey-core";
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
6
5
|
export declare class MatrixCellComponent extends BaseAngular<Question> {
|
|
7
6
|
question: QuestionMatrixDropdownModelBase;
|
|
@@ -9,7 +8,7 @@ export declare class MatrixCellComponent extends BaseAngular<Question> {
|
|
|
9
8
|
cellContainer: ElementRef<HTMLElement>;
|
|
10
9
|
isVisible: boolean;
|
|
11
10
|
getModel(): Question;
|
|
12
|
-
get row():
|
|
11
|
+
get row(): MatrixDropdownRowModelBase;
|
|
13
12
|
get panelComponentName(): string;
|
|
14
13
|
get panelComponentData(): any;
|
|
15
14
|
getComponentName(element: Question): string;
|