survey-angular-ui 1.9.60 → 1.9.62
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 +4 -3
- package/components/paneldynamic-actions/paneldynamic-remove-btn.component.d.ts +7 -0
- package/element.component.d.ts +3 -1
- package/esm2020/angular-ui.mjs +2 -1
- package/esm2020/angular-ui.module.mjs +8 -7
- package/esm2020/components/dropdown/dropdown.component.mjs +3 -3
- package/esm2020/components/paneldynamic-actions/paneldynamic-remove-btn.component.mjs +17 -0
- package/esm2020/components/tagbox/tagbox-filter.component.mjs +3 -3
- package/esm2020/components/timer-panel/timer-panel.component.mjs +3 -3
- package/esm2020/questions/file.component.mjs +3 -3
- package/esm2020/questions/paneldynamic.component.mjs +10 -10
- package/esm2020/questions/text.component.mjs +3 -13
- package/fesm2015/survey-angular-ui.mjs +99 -96
- package/fesm2015/survey-angular-ui.mjs.map +1 -1
- package/fesm2020/survey-angular-ui.mjs +99 -96
- package/fesm2020/survey-angular-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/questions/matrixcell.component.d.ts +2 -1
- package/questions/text.component.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference path="../../survey-core/survey.core.d.ts" />
|
|
1
2
|
import { ElementRef } from "@angular/core";
|
|
2
3
|
import { BaseAngular } from "../base-angular";
|
|
3
4
|
import { Question, QuestionMatrixDropdownModelBase, QuestionMatrixDropdownRenderedCell } from "survey-core";
|
|
@@ -8,7 +9,7 @@ export declare class MatrixCellComponent extends BaseAngular<Question> {
|
|
|
8
9
|
cellContainer: ElementRef<HTMLElement>;
|
|
9
10
|
isVisible: boolean;
|
|
10
11
|
getModel(): Question;
|
|
11
|
-
get row(): import("
|
|
12
|
+
get row(): import("question_matrixdropdownbase").MatrixDropdownRowModelBase;
|
|
12
13
|
get panelComponentName(): string;
|
|
13
14
|
get panelComponentData(): any;
|
|
14
15
|
getComponentName(element: Question): string;
|
|
@@ -2,8 +2,6 @@ import { QuestionAngular } from "../question";
|
|
|
2
2
|
import { QuestionTextModel } from "survey-core";
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class TextQuestionComponent extends QuestionAngular<QuestionTextModel> {
|
|
5
|
-
keyup(event: any): void;
|
|
6
|
-
onChange(event: any): void;
|
|
7
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextQuestionComponent, never>;
|
|
8
6
|
static ɵcmp: i0.ɵɵComponentDeclaration<TextQuestionComponent, "sv-ng-text-question", never, {}, {}, never, never>;
|
|
9
7
|
}
|