survey-angular-ui 1.9.65 → 1.9.67
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/base-angular.d.ts +1 -0
- package/comment-other.component.d.ts +13 -0
- package/components/popup/popup-container.component.d.ts +0 -2
- package/esm2020/angular-ui.mjs +2 -1
- package/esm2020/angular-ui.module.mjs +6 -5
- package/esm2020/base-angular.mjs +9 -9
- 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/popup/popup-container.component.mjs +5 -16
- package/esm2020/components/progress/default/progress.component.mjs +3 -3
- 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/questions/checkbox.component.mjs +4 -4
- package/esm2020/questions/dropdown.component.mjs +4 -4
- 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/esm2020/survey-content.component.mjs +14 -2
- package/fesm2015/survey-angular-ui.mjs +89 -56
- package/fesm2015/survey-angular-ui.mjs.map +1 -1
- package/fesm2020/survey-angular-ui.mjs +88 -56
- package/fesm2020/survey-angular-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/questions/matrixcell.component.d.ts +2 -3
- package/survey-content.component.d.ts +2 -0
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;
|
|
@@ -5,11 +5,13 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class SurveyContentComponent extends BaseAngular<SurveyModel> implements OnInit, AfterViewInit {
|
|
6
6
|
model: SurveyModel;
|
|
7
7
|
rootEl: ElementRef<HTMLDivElement>;
|
|
8
|
+
private isSurveyUpdated;
|
|
8
9
|
protected getModel(): SurveyModel;
|
|
9
10
|
protected onModelChanged(): void;
|
|
10
11
|
ngOnInit(): void;
|
|
11
12
|
ngOnDestroy(): void;
|
|
12
13
|
ngAfterViewInit(): void;
|
|
14
|
+
ngAfterViewChecked(): void;
|
|
13
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SurveyContentComponent, never>;
|
|
14
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<SurveyContentComponent, "survey-content", never, { "model": "model"; }, {}, never, never>;
|
|
15
17
|
}
|