survey-angular-ui 1.9.43 → 1.9.44
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/README.md +214 -214
- package/angular-ui.d.ts +27 -0
- package/angular-ui.module.d.ts +92 -0
- package/base-angular.d.ts +25 -0
- package/comment.component.d.ts +8 -0
- package/component-factory.d.ts +9 -0
- package/components/action-bar/action-bar-item-dropdown.component.d.ts +12 -0
- package/components/action-bar/action-bar-item.component.d.ts +8 -0
- package/components/action-bar/action-bar.component.d.ts +16 -0
- package/components/action-bar/action.component.d.ts +11 -0
- package/components/brand-info/brand-info.component.d.ts +5 -0
- package/components/dropdown/dropdown.component.d.ts +16 -0
- package/components/element-header/element-header.component.d.ts +9 -0
- package/components/element-title/dynamic-head.component.d.ts +10 -0
- package/components/element-title/element-title.component.d.ts +7 -0
- package/components/list/list-item.component.d.ts +16 -0
- package/components/list/list.component.d.ts +11 -0
- package/components/matrix-actions/detail-button/detail-button.component.d.ts +11 -0
- package/components/matrix-actions/drag-drop-icon/drag-drop-icon.d.ts +10 -0
- package/components/matrix-actions/remove-button/remove-button.component.d.ts +10 -0
- package/components/paneldynamic-actions/paneldynamic-add-btn.component.d.ts +14 -0
- package/components/paneldynamic-actions/paneldynamic-next-btn.component.d.ts +7 -0
- package/components/paneldynamic-actions/paneldynamic-prev-btn.component.d.ts +7 -0
- package/components/paneldynamic-actions/paneldynamic-progress-text.component.d.ts +6 -0
- package/components/popup/popup-container.component.d.ts +16 -0
- package/components/popup/popup.component.d.ts +17 -0
- package/components/popup/popup.service.d.ts +13 -0
- package/components/progress/buttons/progress.component.d.ts +24 -0
- package/components/progress/default/progress.component.d.ts +9 -0
- package/components/renderAs/boolean-checkbox/boolean-checkbox.component.d.ts +6 -0
- package/components/renderAs/boolean-radio/boolean-radio-item.component.d.ts +10 -0
- package/components/renderAs/boolean-radio/boolean-radio.component.d.ts +7 -0
- package/components/renderAs/dropdown-select/dropdown-option-item.component.d.ts +8 -0
- package/components/renderAs/dropdown-select/dropdown-select.component.d.ts +10 -0
- package/components/renderAs/rating-dropdown/rating-dropdown.component.d.ts +6 -0
- package/components/skeleton.component.d.ts +6 -0
- package/components/survey-actions/survey-nav-btn.component.d.ts +10 -0
- package/components/survey-header/survey-header.component.d.ts +11 -0
- package/components/svg-icon/svg-icon.component.d.ts +20 -0
- package/components/tagbox/tagbox-item.component.d.ts +11 -0
- package/components/tagbox/tagbox.component.d.ts +16 -0
- package/element.component.d.ts +9 -0
- package/embedded-view-content.component.d.ts +11 -0
- package/errors.component.d.ts +19 -0
- package/esm2020/angular-ui.mjs +28 -0
- package/esm2020/angular-ui.module.mjs +138 -0
- package/esm2020/base-angular.mjs +101 -0
- package/esm2020/comment.component.mjs +16 -0
- package/esm2020/component-factory.mjs +26 -0
- package/esm2020/components/action-bar/action-bar-item-dropdown.component.mjs +32 -0
- package/esm2020/components/action-bar/action-bar-item.component.mjs +22 -0
- package/esm2020/components/action-bar/action-bar.component.mjs +43 -0
- package/esm2020/components/action-bar/action.component.mjs +27 -0
- package/esm2020/components/brand-info/brand-info.component.mjs +13 -0
- package/esm2020/components/dropdown/dropdown.component.mjs +39 -0
- package/esm2020/components/element-header/element-header.component.mjs +30 -0
- package/esm2020/components/element-title/dynamic-head.component.mjs +20 -0
- package/esm2020/components/element-title/element-title.component.mjs +18 -0
- package/esm2020/components/list/list-item.component.mjs +44 -0
- package/esm2020/components/list/list.component.mjs +32 -0
- package/esm2020/components/matrix-actions/detail-button/detail-button.component.mjs +25 -0
- package/esm2020/components/matrix-actions/drag-drop-icon/drag-drop-icon.mjs +24 -0
- package/esm2020/components/matrix-actions/remove-button/remove-button.component.mjs +25 -0
- package/esm2020/components/paneldynamic-actions/paneldynamic-add-btn.component.mjs +35 -0
- package/esm2020/components/paneldynamic-actions/paneldynamic-next-btn.component.mjs +18 -0
- package/esm2020/components/paneldynamic-actions/paneldynamic-prev-btn.component.mjs +18 -0
- package/esm2020/components/paneldynamic-actions/paneldynamic-progress-text.component.mjs +14 -0
- package/esm2020/components/popup/popup-container.component.mjs +48 -0
- package/esm2020/components/popup/popup.component.mjs +37 -0
- package/esm2020/components/popup/popup.service.mjs +26 -0
- package/esm2020/components/progress/buttons/progress.component.mjs +67 -0
- package/esm2020/components/progress/default/progress.component.mjs +27 -0
- package/esm2020/components/renderAs/boolean-checkbox/boolean-checkbox.component.mjs +20 -0
- package/esm2020/components/renderAs/boolean-radio/boolean-radio-item.component.mjs +22 -0
- package/esm2020/components/renderAs/boolean-radio/boolean-radio.component.mjs +18 -0
- package/esm2020/components/renderAs/dropdown-select/dropdown-option-item.component.mjs +23 -0
- package/esm2020/components/renderAs/dropdown-select/dropdown-select.component.mjs +38 -0
- package/esm2020/components/renderAs/rating-dropdown/rating-dropdown.component.mjs +18 -0
- package/esm2020/components/skeleton.component.mjs +15 -0
- package/esm2020/components/survey-actions/survey-nav-btn.component.mjs +22 -0
- package/esm2020/components/survey-header/survey-header.component.mjs +23 -0
- package/esm2020/components/svg-icon/svg-icon.component.mjs +68 -0
- package/esm2020/components/tagbox/tagbox-item.component.mjs +27 -0
- package/esm2020/components/tagbox/tagbox.component.mjs +40 -0
- package/esm2020/element.component.mjs +18 -0
- package/esm2020/embedded-view-content.component.mjs +24 -0
- package/esm2020/errors.component.mjs +58 -0
- package/esm2020/page.component.mjs +34 -0
- package/esm2020/panel.component.mjs +37 -0
- package/esm2020/question.component.mjs +41 -0
- package/esm2020/question.mjs +33 -0
- package/esm2020/questions/boolean.component.mjs +20 -0
- package/esm2020/questions/checkbox-item.component.mjs +36 -0
- package/esm2020/questions/checkbox.component.mjs +17 -0
- package/esm2020/questions/comment.component.mjs +18 -0
- package/esm2020/questions/composite.component.mjs +21 -0
- package/esm2020/questions/custom.component.mjs +27 -0
- package/esm2020/questions/customwidget.component.mjs +51 -0
- package/esm2020/questions/dropdown.component.mjs +17 -0
- package/esm2020/questions/expression.component.mjs +17 -0
- package/esm2020/questions/file.component.mjs +25 -0
- package/esm2020/questions/html.component.mjs +25 -0
- package/esm2020/questions/image.component.mjs +16 -0
- package/esm2020/questions/imagepicker-item.component.mjs +45 -0
- package/esm2020/questions/imagepicker.component.mjs +16 -0
- package/esm2020/questions/matrix.component.mjs +35 -0
- package/esm2020/questions/matrixcell.component.mjs +60 -0
- package/esm2020/questions/matrixdropdown.component.mjs +16 -0
- package/esm2020/questions/matrixdynamic.component.mjs +17 -0
- package/esm2020/questions/matrixrequiredheader.component.mjs +24 -0
- package/esm2020/questions/matrixtable.component.mjs +29 -0
- package/esm2020/questions/multipletext.component.mjs +25 -0
- package/esm2020/questions/multipletextitem.component.mjs +23 -0
- package/esm2020/questions/paneldynamic.component.mjs +55 -0
- package/esm2020/questions/radiogroup-item.component.mjs +18 -0
- package/esm2020/questions/radiogroup.component.mjs +22 -0
- package/esm2020/questions/ranking-item.component.mjs +22 -0
- package/esm2020/questions/ranking.component.mjs +22 -0
- package/esm2020/questions/rating.component.mjs +23 -0
- package/esm2020/questions/selectbase-item.mjs +32 -0
- package/esm2020/questions/selectbase.component.mjs +24 -0
- package/esm2020/questions/signature.component.mjs +17 -0
- package/esm2020/questions/tagbox.component.mjs +17 -0
- package/esm2020/questions/text.component.mjs +26 -0
- package/esm2020/row.component.mjs +22 -0
- package/esm2020/string-editor.component.mjs +26 -0
- package/esm2020/string-viewer.component.mjs +32 -0
- package/esm2020/survey-angular-ui.mjs +5 -0
- package/esm2020/survey-string.component.mjs +17 -0
- package/esm2020/survey.component.mjs +50 -0
- package/esm2020/utils/dynamic.directive.mjs +44 -0
- package/esm2020/utils/ng-key2click.directive.mjs +69 -0
- package/esm2020/utils/ng-show.directive.mjs +27 -0
- package/esm2020/utils/safe-html.pipe.mjs +18 -0
- package/esm2020/utils/safe-url.pipe.mjs +33 -0
- package/fesm2015/survey-angular-ui.mjs +2201 -0
- package/fesm2015/survey-angular-ui.mjs.map +1 -0
- package/fesm2020/survey-angular-ui.mjs +2181 -0
- package/fesm2020/survey-angular-ui.mjs.map +1 -0
- package/package.json +1 -11
- package/page.component.d.ts +14 -0
- package/panel.component.d.ts +13 -0
- package/question.component.d.ts +13 -0
- package/question.d.ts +13 -0
- package/questions/boolean.component.d.ts +8 -0
- package/questions/checkbox-item.component.d.ts +11 -0
- package/questions/checkbox.component.d.ts +7 -0
- package/questions/comment.component.d.ts +8 -0
- package/questions/composite.component.d.ts +8 -0
- package/questions/custom.component.d.ts +10 -0
- package/questions/customwidget.component.d.ts +18 -0
- package/questions/dropdown.component.d.ts +7 -0
- package/questions/expression.component.d.ts +7 -0
- package/questions/file.component.d.ts +8 -0
- package/questions/html.component.d.ts +9 -0
- package/questions/image.component.d.ts +7 -0
- package/questions/imagepicker-item.component.d.ts +14 -0
- package/questions/imagepicker.component.d.ts +7 -0
- package/questions/matrix.component.d.ts +11 -0
- package/questions/matrixcell.component.d.ts +20 -0
- package/questions/matrixdropdown.component.d.ts +7 -0
- package/questions/matrixdynamic.component.d.ts +7 -0
- package/questions/matrixrequiredheader.component.d.ts +10 -0
- package/questions/matrixtable.component.d.ts +12 -0
- package/questions/multipletext.component.d.ts +9 -0
- package/questions/multipletextitem.component.d.ts +10 -0
- package/questions/paneldynamic.component.d.ts +12 -0
- package/questions/radiogroup-item.component.d.ts +8 -0
- package/questions/radiogroup.component.d.ts +8 -0
- package/questions/ranking-item.component.d.ts +11 -0
- package/questions/ranking.component.d.ts +8 -0
- package/questions/rating.component.d.ts +9 -0
- package/questions/selectbase-item.d.ts +12 -0
- package/questions/selectbase.component.d.ts +10 -0
- package/questions/signature.component.d.ts +7 -0
- package/questions/tagbox.component.d.ts +7 -0
- package/questions/text.component.d.ts +9 -0
- package/row.component.d.ts +10 -0
- package/string-editor.component.d.ts +9 -0
- package/string-viewer.component.d.ts +13 -0
- package/survey-angular-ui.d.ts +5 -5
- package/survey-string.component.d.ts +7 -0
- package/survey.component.d.ts +16 -0
- package/utils/dynamic.directive.d.ts +19 -0
- package/utils/ng-key2click.directive.d.ts +21 -0
- package/utils/ng-show.directive.d.ts +12 -0
- package/utils/safe-html.pipe.d.ts +10 -0
- package/utils/safe-url.pipe.d.ts +17 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-angular-ui",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.44",
|
|
4
4
|
"description": "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.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Survey",
|
|
@@ -12,16 +12,6 @@
|
|
|
12
12
|
],
|
|
13
13
|
"homepage": "https://surveyjs.io/",
|
|
14
14
|
"license": "MIT",
|
|
15
|
-
"files": [
|
|
16
|
-
"survey.css",
|
|
17
|
-
"survey.min.css",
|
|
18
|
-
"modern.css",
|
|
19
|
-
"modern.min.css",
|
|
20
|
-
"survey-angular-ui.d.ts",
|
|
21
|
-
"survey-angular-ui.js",
|
|
22
|
-
"survey-angular-ui.min.js"
|
|
23
|
-
],
|
|
24
|
-
"main": "survey-angular-ui.js",
|
|
25
15
|
"repository": {
|
|
26
16
|
"type": "git",
|
|
27
17
|
"url": "https://github.com/surveyjs/surveyjs.git"
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, OnChanges, SimpleChanges } from "@angular/core";
|
|
2
|
+
import { PageModel, SurveyModel } from "survey-core";
|
|
3
|
+
import { BaseAngular } from "./base-angular";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class PageComponent extends BaseAngular<PageModel> implements AfterViewInit, OnChanges {
|
|
6
|
+
model: PageModel;
|
|
7
|
+
survey?: SurveyModel;
|
|
8
|
+
pageContainerRef: ElementRef<HTMLDivElement>;
|
|
9
|
+
protected getModel(): PageModel;
|
|
10
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
11
|
+
ngAfterViewInit(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PageComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageComponent, "page", never, { "model": "model"; "survey": "survey"; }, {}, never, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef } from "@angular/core";
|
|
2
|
+
import { PanelModel } from "survey-core";
|
|
3
|
+
import { BaseAngular } from "./base-angular";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class PanelComponent extends BaseAngular<PanelModel> implements AfterViewInit {
|
|
6
|
+
model: PanelModel;
|
|
7
|
+
panelContainerRef: ElementRef<HTMLDivElement>;
|
|
8
|
+
protected getModel(): PanelModel;
|
|
9
|
+
ngAfterViewInit(): void;
|
|
10
|
+
trackRowBy: (_: any, row: any) => any;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PanelComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PanelComponent, "sv-ng-panel, '[sv-ng-panel]'", never, { "model": "model"; }, {}, never, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ElementRef } from "@angular/core";
|
|
2
|
+
import { Question } from "survey-core";
|
|
3
|
+
import { EmbeddedViewContentComponent } from "./embedded-view-content.component";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class QuestionComponent extends EmbeddedViewContentComponent {
|
|
6
|
+
model: Question;
|
|
7
|
+
rootEl?: ElementRef<HTMLDivElement>;
|
|
8
|
+
protected getModel(): Question;
|
|
9
|
+
ngAfterViewInit(): void;
|
|
10
|
+
getComponentName(): string;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QuestionComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QuestionComponent, "sv-ng-question", never, { "model": "model"; }, {}, never, never>;
|
|
13
|
+
}
|
package/question.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, OnDestroy } from "@angular/core";
|
|
2
|
+
import { Question } from "survey-core";
|
|
3
|
+
import { BaseAngular } from "./base-angular";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class QuestionAngular<T extends Question = Question> extends BaseAngular<Question> implements AfterViewInit, OnDestroy {
|
|
6
|
+
model: T;
|
|
7
|
+
elementContentRef: ElementRef<HTMLElement>;
|
|
8
|
+
protected getModel(): T;
|
|
9
|
+
ngAfterViewInit(): void;
|
|
10
|
+
ngOnDestroy(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QuestionAngular<any>, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QuestionAngular<any>, "ng-component", never, { "model": "model"; }, {}, never, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { QuestionAngular } from "../question";
|
|
2
|
+
import { QuestionBooleanModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class BooleanQuestionComponent extends QuestionAngular<QuestionBooleanModel> {
|
|
5
|
+
onChange(event: any): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BooleanQuestionComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BooleanQuestionComponent, "sv-ng-boolean-question", never, {}, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ItemValue, QuestionCheckboxModel } from "survey-core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CheckboxItemComponent {
|
|
4
|
+
question: QuestionCheckboxModel;
|
|
5
|
+
model: ItemValue;
|
|
6
|
+
constructor();
|
|
7
|
+
onChange(event: any): void;
|
|
8
|
+
onSelectAllChange(event: any): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxItemComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxItemComponent, "sv-ng-checkbox-item, '[sv-ng-checkbox-item]'", never, { "question": "question"; "model": "model"; }, {}, never, ["*"]>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { QuestionCheckboxModel } from "survey-core";
|
|
2
|
+
import { SelectBaseComponent } from "./selectbase.component";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CheckboxComponent extends SelectBaseComponent<QuestionCheckboxModel> {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "sv-ng-checkbox-question", never, {}, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { QuestionAngular } from "../question";
|
|
2
|
+
import { QuestionCommentModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CommentQuestionComponent extends QuestionAngular<QuestionCommentModel> {
|
|
5
|
+
onChange(event: any): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CommentQuestionComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentQuestionComponent, "sv-ng-question-comment", never, {}, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { QuestionAngular } from "../question";
|
|
2
|
+
import { PanelModel, QuestionCompositeModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CompositeQuestionComponent extends QuestionAngular<QuestionCompositeModel> {
|
|
5
|
+
get contentPanel(): PanelModel;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CompositeQuestionComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CompositeQuestionComponent, "sv-ng-composite-question", never, {}, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Question } from "survey-core";
|
|
2
|
+
import { QuestionCustomModel } from "survey-core";
|
|
3
|
+
import { QuestionAngular } from "../question";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CustomQuestionComponent extends QuestionAngular<QuestionCustomModel> {
|
|
6
|
+
get contentQuestion(): Question;
|
|
7
|
+
getComponentName(element: Question): string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CustomQuestionComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomQuestionComponent, "sv-ng-custom-question", never, {}, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, OnChanges, OnDestroy, SimpleChanges } from "@angular/core";
|
|
2
|
+
import { Question } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CustomWidgetComponent implements AfterViewInit, OnDestroy, OnChanges {
|
|
5
|
+
css: any;
|
|
6
|
+
model: Question;
|
|
7
|
+
container: ElementRef<HTMLDivElement>;
|
|
8
|
+
get hasDefaultRender(): boolean;
|
|
9
|
+
get hasHtml(): boolean;
|
|
10
|
+
get customHtml(): string;
|
|
11
|
+
get hasAngularComponent(): boolean;
|
|
12
|
+
get componentName(): string;
|
|
13
|
+
ngAfterViewInit(): void;
|
|
14
|
+
ngOnChanges(simpleChanges: SimpleChanges): void;
|
|
15
|
+
ngOnDestroy(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CustomWidgetComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomWidgetComponent, "sv-ng-custom-widget", never, { "css": "css"; "model": "model"; }, {}, never, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { QuestionAngular } from "../question";
|
|
2
|
+
import { QuestionDropdownModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DropdownQuestionComponent extends QuestionAngular<QuestionDropdownModel> {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownQuestionComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownQuestionComponent, "sv-ng-dropdown-question", never, {}, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { QuestionAngular } from "../question";
|
|
2
|
+
import { QuestionExpressionModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ExpressionComponent extends QuestionAngular<QuestionExpressionModel> {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExpressionComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExpressionComponent, "sv-ng-expression", never, {}, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { QuestionAngular } from "../question";
|
|
2
|
+
import { QuestionFileModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FileQuestionComponent extends QuestionAngular<QuestionFileModel> {
|
|
5
|
+
trackFilesFn: (index: number) => string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FileQuestionComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileQuestionComponent, "sv-ng-file-question", never, {}, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { QuestionAngular } from "../question";
|
|
2
|
+
import { QuestionHtmlModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class HtmlQuestionComponent extends QuestionAngular<QuestionHtmlModel> {
|
|
5
|
+
onModelChanged(): void;
|
|
6
|
+
ngOnDestroy(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HtmlQuestionComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HtmlQuestionComponent, "sv-ng-html-question", never, {}, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { QuestionAngular } from "../question";
|
|
2
|
+
import { QuestionImageModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ImageQuestionComponent extends QuestionAngular<QuestionImageModel> {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImageQuestionComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImageQuestionComponent, "sv-ng-image-question", never, {}, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AfterViewInit } from "@angular/core";
|
|
2
|
+
import { BaseAngular } from "../base-angular";
|
|
3
|
+
import { ImageItemValue, QuestionImagePickerModel } from "survey-core";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ImagePickerItemComponent extends BaseAngular<ImageItemValue> implements AfterViewInit {
|
|
6
|
+
question: QuestionImagePickerModel;
|
|
7
|
+
model: ImageItemValue;
|
|
8
|
+
protected getModel(): ImageItemValue;
|
|
9
|
+
onChange(event: any): void;
|
|
10
|
+
ngAfterViewInit(): void;
|
|
11
|
+
ngOnDestroy(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImagePickerItemComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImagePickerItemComponent, "sv-ng-imagepicker-item", never, { "question": "question"; "model": "model"; }, {}, never, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { QuestionAngular } from "../question";
|
|
2
|
+
import { QuestionImagePickerModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ImagePickerQuestionComponent extends QuestionAngular<QuestionImagePickerModel> {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImagePickerQuestionComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImagePickerQuestionComponent, "sv-ng-imagepicker-question", never, {}, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { QuestionAngular } from "../question";
|
|
2
|
+
import { QuestionMatrixModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MatrixQuestionComponent extends QuestionAngular<QuestionMatrixModel> {
|
|
5
|
+
ngOnInit(): void;
|
|
6
|
+
onChange(row: any, column: any): void;
|
|
7
|
+
trackRowByFn(i: number, row: any): string;
|
|
8
|
+
trackColumnByFn(i: number, column: any): string;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatrixQuestionComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatrixQuestionComponent, "sv-ng-matrix-question", never, {}, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ElementRef } from "@angular/core";
|
|
2
|
+
import { BaseAngular } from "../base-angular";
|
|
3
|
+
import { Question, QuestionMatrixDropdownRenderedCell } from "survey-core";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MatrixCellComponent extends BaseAngular<Question> {
|
|
6
|
+
question: Question;
|
|
7
|
+
cell: QuestionMatrixDropdownRenderedCell;
|
|
8
|
+
cellContainer: ElementRef<HTMLElement>;
|
|
9
|
+
isVisible: boolean;
|
|
10
|
+
getModel(): Question;
|
|
11
|
+
getComponentName(element: Question): string;
|
|
12
|
+
getHeaders(): string;
|
|
13
|
+
getCellStyle(): {
|
|
14
|
+
width: string;
|
|
15
|
+
minWidth: string;
|
|
16
|
+
} | null;
|
|
17
|
+
ngAfterViewInit(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatrixCellComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatrixCellComponent, "sv-ng-matrix-cell", never, { "question": "question"; "cell": "cell"; }, {}, never, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { QuestionAngular } from "../question";
|
|
2
|
+
import { QuestionMatrixDropdownModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MatrixDropdownComponent extends QuestionAngular<QuestionMatrixDropdownModel> {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatrixDropdownComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatrixDropdownComponent, "sv-ng-matrixdropdown-question", never, {}, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { QuestionAngular } from "../question";
|
|
2
|
+
import { QuestionMatrixDynamicModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MatrixDynamicComponent extends QuestionAngular<QuestionMatrixDynamicModel> {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatrixDynamicComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatrixDynamicComponent, "sv-ng-matrixdynamic-question", never, {}, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseAngular } from "../base-angular";
|
|
2
|
+
import { MatrixDropdownColumn, QuestionMatrixDropdownModelBase } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MatrixRequiredHeader extends BaseAngular<MatrixDropdownColumn> {
|
|
5
|
+
column: MatrixDropdownColumn;
|
|
6
|
+
question: QuestionMatrixDropdownModelBase;
|
|
7
|
+
getModel(): MatrixDropdownColumn;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatrixRequiredHeader, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatrixRequiredHeader, "sv-ng-matrixheaderrequired", never, { "column": "column"; "question": "question"; }, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BaseAngular } from "../base-angular";
|
|
2
|
+
import { QuestionMatrixDropdownModelBase, QuestionMatrixDropdownRenderedTable } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MatrixTableComponent extends BaseAngular<QuestionMatrixDropdownRenderedTable> {
|
|
5
|
+
question: QuestionMatrixDropdownModelBase;
|
|
6
|
+
table: QuestionMatrixDropdownRenderedTable;
|
|
7
|
+
protected getModel(): QuestionMatrixDropdownRenderedTable;
|
|
8
|
+
trackCellBy(_: number, cell: any): string;
|
|
9
|
+
trackRowBy(index: number, row: any): string;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatrixTableComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatrixTableComponent, "sv-ng-matrix-table", never, { "question": "question"; "table": "table"; }, {}, never, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { QuestionAngular } from "../question";
|
|
2
|
+
import { MultipleTextItemModel, QuestionMultipleTextModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MultipleTextComponent extends QuestionAngular<QuestionMultipleTextModel> {
|
|
5
|
+
trackRowBy: (index: number) => string;
|
|
6
|
+
trackItemBy(_: number, item: MultipleTextItemModel): string;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MultipleTextComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultipleTextComponent, "sv-ng-multipletext-question", never, {}, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { MultipleTextItemModel, QuestionMultipleTextModel, QuestionTextModel } from "survey-core";
|
|
2
|
+
import { BaseAngular } from "../base-angular";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MultipleTextItemComponent extends BaseAngular<QuestionTextModel> {
|
|
5
|
+
question: QuestionMultipleTextModel;
|
|
6
|
+
model: MultipleTextItemModel;
|
|
7
|
+
protected getModel(): QuestionTextModel;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MultipleTextItemComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultipleTextItemComponent, "'[sv-ng-multipletext-item]'", never, { "question": "question"; "model": "model"; }, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { QuestionAngular } from "../question";
|
|
3
|
+
import { PanelModel, QuestionPanelDynamicModel } from "survey-core";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class PanelDynamicQuestionComponent extends QuestionAngular<QuestionPanelDynamicModel | any> implements OnInit {
|
|
6
|
+
get renderedPanels(): PanelModel[];
|
|
7
|
+
protected onModelChanged(): void;
|
|
8
|
+
get progressCssClass(): any;
|
|
9
|
+
ngOnDestroy(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PanelDynamicQuestionComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PanelDynamicQuestionComponent, "sv-ng-paneldynamic-question", never, {}, {}, never, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class RadiogroupItemComponent {
|
|
3
|
+
question: any;
|
|
4
|
+
model: any;
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadiogroupItemComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadiogroupItemComponent, "sv-ng-radiogroup-item, '[sv-ng-radiogroup-item]'", never, { "question": "question"; "model": "model"; }, {}, never, ["*"]>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { QuestionRadiogroupModel } from "survey-core";
|
|
2
|
+
import { SelectBaseComponent } from "./selectbase.component";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RadiogroupComponent extends SelectBaseComponent<QuestionRadiogroupModel> {
|
|
5
|
+
ngOnInit(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadiogroupComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadiogroupComponent, "sv-ng-radiogroup-question", never, {}, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BaseAngular } from "../base-angular";
|
|
2
|
+
import { ItemValue, QuestionRankingModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RankingItemComponent extends BaseAngular<ItemValue> {
|
|
5
|
+
question: QuestionRankingModel;
|
|
6
|
+
model: ItemValue;
|
|
7
|
+
index: number;
|
|
8
|
+
protected getModel(): ItemValue;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RankingItemComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RankingItemComponent, "sv-ng-ranking-item", never, { "question": "question"; "model": "model"; "index": "index"; }, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { QuestionAngular } from "../question";
|
|
2
|
+
import { ItemValue, QuestionRankingModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RankingQuestionComponent extends QuestionAngular<QuestionRankingModel> {
|
|
5
|
+
trackItemBy: (index: number, item: ItemValue) => string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RankingQuestionComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RankingQuestionComponent, "sv-ng-ranking-question", never, {}, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { QuestionAngular } from "../question";
|
|
2
|
+
import { QuestionRatingModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RatingQuestionComponent extends QuestionAngular<QuestionRatingModel> {
|
|
5
|
+
trackByFn(index: number): number;
|
|
6
|
+
onClick(event: any): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RatingQuestionComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RatingQuestionComponent, "sv-ng-rating-question", never, {}, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BaseAngular } from "../base-angular";
|
|
2
|
+
import { ItemValue } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SelectBaseItemComponent extends BaseAngular<ItemValue> {
|
|
5
|
+
question: any;
|
|
6
|
+
model: ItemValue | any;
|
|
7
|
+
inputType: string;
|
|
8
|
+
showLabel: boolean;
|
|
9
|
+
protected getModel(): ItemValue;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectBaseItemComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectBaseItemComponent, "['sv-ng-selectbase-item'], sv-ng-selebase-item", never, { "question": "question"; "model": "model"; "inputType": "inputType"; "showLabel": "showLabel"; }, {}, never, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { QuestionAngular } from "../question";
|
|
2
|
+
import { QuestionSelectBase } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SelectBaseComponent<T extends QuestionSelectBase> extends QuestionAngular<T> {
|
|
5
|
+
inputType: string;
|
|
6
|
+
showLegend: boolean;
|
|
7
|
+
model: any;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectBaseComponent<any>, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectBaseComponent<any>, "['sv-ng-selectbase']", never, { "model": "model"; }, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { QuestionAngular } from "../question";
|
|
2
|
+
import { QuestionSignaturePadModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SignaturePadQuestionComponent extends QuestionAngular<QuestionSignaturePadModel> {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SignaturePadQuestionComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SignaturePadQuestionComponent, "sv-ng-signature-component", never, {}, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { QuestionAngular } from "../question";
|
|
2
|
+
import { QuestionTagboxModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TagboxQuestionComponent extends QuestionAngular<QuestionTagboxModel> {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TagboxQuestionComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagboxQuestionComponent, "sv-ng-tagbox-question", never, {}, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { QuestionAngular } from "../question";
|
|
2
|
+
import { QuestionTextModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TextQuestionComponent extends QuestionAngular<QuestionTextModel> {
|
|
5
|
+
keyup(event: any): void;
|
|
6
|
+
onChange(event: any): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextQuestionComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextQuestionComponent, "sv-ng-text-question", never, {}, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IElement, QuestionRowModel } from "survey-core";
|
|
2
|
+
import { BaseAngular } from "./base-angular";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RowComponent extends BaseAngular<QuestionRowModel> {
|
|
5
|
+
row: QuestionRowModel;
|
|
6
|
+
protected getModel(): QuestionRowModel;
|
|
7
|
+
trackElementBy(index: number, element: IElement): string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RowComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RowComponent, "sv-ng-row", never, { "row": "row"; }, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { LocalizableString } from "survey-core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class StringEditorComponent {
|
|
4
|
+
model: LocalizableString;
|
|
5
|
+
onInput: (event: any) => void;
|
|
6
|
+
onClick: (event: any) => void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StringEditorComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StringEditorComponent, "sv-ng-string-editor", never, { "model": "model"; }, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnChanges, OnDestroy, SimpleChanges } from "@angular/core";
|
|
2
|
+
import { LocalizableString } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class StringViewerComponent implements OnChanges, OnDestroy {
|
|
5
|
+
private changeDetectorRef;
|
|
6
|
+
model: any;
|
|
7
|
+
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
8
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
9
|
+
clearOnChanged(model: LocalizableString): void;
|
|
10
|
+
ngOnDestroy(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StringViewerComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StringViewerComponent, "sv-ng-string-viewer, string-viewer, '[sv-ng-string-viewer]'", never, { "model": "model"; }, {}, never, never>;
|
|
13
|
+
}
|
package/survey-angular-ui.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
/// <amd-module name="survey-angular-ui" />
|
|
5
|
-
export * from './angular-ui';
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
/// <amd-module name="survey-angular-ui" />
|
|
5
|
+
export * from './angular-ui';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { LocalizableString } from "survey-core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SurveyStringComponent {
|
|
4
|
+
model: LocalizableString;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SurveyStringComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SurveyStringComponent, "sv-ng-string, '[sv-ng-string]'", never, { "model": "model"; }, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, OnInit } from "@angular/core";
|
|
2
|
+
import { SurveyModel } from "survey-core";
|
|
3
|
+
import { BaseAngular } from "./base-angular";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SurveyComponent extends BaseAngular<SurveyModel> implements OnInit, AfterViewInit {
|
|
6
|
+
model: SurveyModel;
|
|
7
|
+
rootEl: ElementRef<HTMLDivElement>;
|
|
8
|
+
protected getModel(): SurveyModel;
|
|
9
|
+
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
10
|
+
protected onModelChanged(): void;
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
ngOnDestroy(): void;
|
|
13
|
+
ngAfterViewInit(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SurveyComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SurveyComponent, "survey", never, { "model": "model"; }, {}, never, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { OnChanges, SimpleChanges, ViewContainerRef } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
interface IDynamicComponent {
|
|
4
|
+
name: string;
|
|
5
|
+
data?: any;
|
|
6
|
+
default?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare class DynamicComponentDirective implements OnChanges {
|
|
9
|
+
private containerRef;
|
|
10
|
+
constructor(containerRef: ViewContainerRef);
|
|
11
|
+
component: IDynamicComponent;
|
|
12
|
+
private componentInstance;
|
|
13
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
14
|
+
createComponent(): void;
|
|
15
|
+
updateComponentData(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicComponentDirective, never>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicComponentDirective, "[component]", never, { "component": "component"; }, {}, never>;
|
|
18
|
+
}
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ElementRef, SimpleChanges, OnChanges, OnDestroy } from "@angular/core";
|
|
2
|
+
import { IAttachKey2clickOptions } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class Key2ClickDirective implements OnChanges, OnDestroy {
|
|
5
|
+
private el;
|
|
6
|
+
static defaultOptions: IAttachKey2clickOptions;
|
|
7
|
+
private isSubscribed;
|
|
8
|
+
options?: IAttachKey2clickOptions;
|
|
9
|
+
key2click?: IAttachKey2clickOptions;
|
|
10
|
+
private onkeydown;
|
|
11
|
+
private onkeyup;
|
|
12
|
+
private blur;
|
|
13
|
+
constructor(el: ElementRef);
|
|
14
|
+
get element(): any;
|
|
15
|
+
subscribeEventListeners(): void;
|
|
16
|
+
unsubscribeEventListeners(): void;
|
|
17
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
18
|
+
ngOnDestroy(): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Key2ClickDirective, never>;
|
|
20
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Key2ClickDirective, "[key2click]", never, { "key2click": "key2click"; }, {}, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ElementRef, OnChanges, SimpleChanges } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class VisibleDirective implements OnChanges {
|
|
4
|
+
private el;
|
|
5
|
+
constructor(el: ElementRef);
|
|
6
|
+
visible?: boolean;
|
|
7
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
8
|
+
private hide;
|
|
9
|
+
private show;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VisibleDirective, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<VisibleDirective, "[visible]", never, { "visible": "visible"; }, {}, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import { DomSanitizer, SafeUrl } from "@angular/platform-browser";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SafeHtmlPipe implements PipeTransform {
|
|
5
|
+
private domSanitizer;
|
|
6
|
+
constructor(domSanitizer: DomSanitizer);
|
|
7
|
+
transform(url: string): SafeUrl;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SafeHtmlPipe, never>;
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SafeHtmlPipe, "safeHtml">;
|
|
10
|
+
}
|