survey-creator-angular 1.9.46
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 -0
- package/adorners/cell-question-dropdown.component.d.ts +9 -0
- package/adorners/cell-question.component.d.ts +11 -0
- package/adorners/image-item-value.component.d.ts +24 -0
- package/adorners/item-value.component.d.ts +17 -0
- package/adorners/matrix-cell.component.d.ts +20 -0
- package/adorners/question-dropdown.component.d.ts +18 -0
- package/adorners/question-image.component.d.ts +19 -0
- package/adorners/question-rating.component.d.ts +19 -0
- package/angular-ui.d.ts +2 -0
- package/angular-ui.module.d.ts +60 -0
- package/components/action-button.component.d.ts +14 -0
- package/creator-model.component.d.ts +14 -0
- package/creator.component.d.ts +16 -0
- package/esm2020/adorners/cell-question-dropdown.component.mjs +30 -0
- package/esm2020/adorners/cell-question.component.mjs +24 -0
- package/esm2020/adorners/image-item-value.component.mjs +60 -0
- package/esm2020/adorners/item-value.component.mjs +41 -0
- package/esm2020/adorners/matrix-cell.component.mjs +46 -0
- package/esm2020/adorners/question-dropdown.component.mjs +54 -0
- package/esm2020/adorners/question-image.component.mjs +45 -0
- package/esm2020/adorners/question-rating.component.mjs +46 -0
- package/esm2020/angular-ui.mjs +3 -0
- package/esm2020/angular-ui.module.mjs +85 -0
- package/esm2020/components/action-button.component.mjs +44 -0
- package/esm2020/creator-model.component.mjs +40 -0
- package/esm2020/creator.component.mjs +47 -0
- package/esm2020/header/logo-image.component.mjs +40 -0
- package/esm2020/notifier.component.mjs +18 -0
- package/esm2020/page-navigator/page-navigator-item.component.mjs +22 -0
- package/esm2020/page-navigator/page-navigator.component.mjs +51 -0
- package/esm2020/page.component.mjs +49 -0
- package/esm2020/panel.component.mjs +16 -0
- package/esm2020/property-panel/object-selector.component.mjs +20 -0
- package/esm2020/property-panel/property-grid.component.mjs +20 -0
- package/esm2020/question-editor.component.mjs +46 -0
- package/esm2020/question-widget.component.mjs +22 -0
- package/esm2020/question.component.mjs +50 -0
- package/esm2020/questions/logic-operator.component.mjs +33 -0
- package/esm2020/questions/question-embedded-survey.component.mjs +26 -0
- package/esm2020/questions/question-link-value.component.mjs +19 -0
- package/esm2020/row.component.mjs +33 -0
- package/esm2020/side-bar/side-bar-tab.component.mjs +19 -0
- package/esm2020/side-bar/side-bar.component.mjs +30 -0
- package/esm2020/string-editor.component.mjs +101 -0
- package/esm2020/survey-creator-angular.mjs +5 -0
- package/esm2020/svg-bundle.component.mjs +22 -0
- package/esm2020/tabbed-menu/tabbed-menu/tabbed-menu-item-wrapper.component.mjs +18 -0
- package/esm2020/tabbed-menu/tabbed-menu/tabbed-menu-item.component.mjs +19 -0
- package/esm2020/tabbed-menu/tabbed-menu/tabbed-menu.component.mjs +31 -0
- package/esm2020/tabs/designer/designer-pages.component.mjs +24 -0
- package/esm2020/tabs/designer/designer-survey.component.mjs +28 -0
- package/esm2020/tabs/designer/designer.component.mjs +29 -0
- package/esm2020/tabs/json/json-editor-ace.component.mjs +25 -0
- package/esm2020/tabs/json/json-editor-textarea.component.mjs +24 -0
- package/esm2020/tabs/logic/logic-add-btn.component.mjs +22 -0
- package/esm2020/tabs/logic/logic.component.mjs +21 -0
- package/esm2020/tabs/preview/simulator.component.mjs +32 -0
- package/esm2020/tabs/preview/survey-results-row.component.mjs +19 -0
- package/esm2020/tabs/preview/survey-results.component.mjs +30 -0
- package/esm2020/tabs/preview/test-again.component.mjs +18 -0
- package/esm2020/tabs/preview/test.component.mjs +23 -0
- package/esm2020/tabs/translation/translation-line-skeleton.component.mjs +13 -0
- package/esm2020/tabs/translation/translation.component.mjs +20 -0
- package/esm2020/toolbox/adaptive-toolbox.component.mjs +35 -0
- package/esm2020/toolbox/toolbox-category.component.mjs +22 -0
- package/esm2020/toolbox/toolbox-item.component.mjs +37 -0
- package/esm2020/toolbox/toolbox-tool.component.mjs +34 -0
- package/esm2020/toolbox/toolbox.component.mjs +24 -0
- package/fesm2015/survey-creator-angular.mjs +1420 -0
- package/fesm2015/survey-creator-angular.mjs.map +1 -0
- package/fesm2020/survey-creator-angular.mjs +1410 -0
- package/fesm2020/survey-creator-angular.mjs.map +1 -0
- package/header/logo-image.component.d.ts +18 -0
- package/notifier.component.d.ts +9 -0
- package/package.json +52 -0
- package/page-navigator/page-navigator-item.component.d.ts +10 -0
- package/page-navigator/page-navigator.component.d.ts +17 -0
- package/page.component.d.ts +19 -0
- package/panel.component.d.ts +6 -0
- package/property-panel/object-selector.component.d.ts +9 -0
- package/property-panel/property-grid.component.d.ts +9 -0
- package/question-editor.component.d.ts +12 -0
- package/question-widget.component.d.ts +7 -0
- package/question.component.d.ts +19 -0
- package/questions/logic-operator.component.d.ts +13 -0
- package/questions/question-embedded-survey.component.d.ts +9 -0
- package/questions/question-link-value.component.d.ts +8 -0
- package/row.component.d.ts +18 -0
- package/side-bar/side-bar-tab.component.d.ts +9 -0
- package/side-bar/side-bar.component.d.ts +13 -0
- package/string-editor.component.d.ts +33 -0
- package/survey-creator-angular.d.ts +5 -0
- package/svg-bundle.component.d.ts +8 -0
- package/tabbed-menu/tabbed-menu/tabbed-menu-item-wrapper.component.d.ts +9 -0
- package/tabbed-menu/tabbed-menu/tabbed-menu-item.component.d.ts +9 -0
- package/tabbed-menu/tabbed-menu/tabbed-menu.component.d.ts +14 -0
- package/tabs/designer/designer-pages.component.d.ts +11 -0
- package/tabs/designer/designer-survey.component.d.ts +12 -0
- package/tabs/designer/designer.component.d.ts +11 -0
- package/tabs/json/json-editor-ace.component.d.ts +12 -0
- package/tabs/json/json-editor-textarea.component.d.ts +11 -0
- package/tabs/logic/logic-add-btn.component.d.ts +10 -0
- package/tabs/logic/logic.component.d.ts +9 -0
- package/tabs/preview/simulator.component.d.ts +12 -0
- package/tabs/preview/survey-results-row.component.d.ts +9 -0
- package/tabs/preview/survey-results.component.d.ts +13 -0
- package/tabs/preview/test-again.component.d.ts +9 -0
- package/tabs/preview/test.component.d.ts +9 -0
- package/tabs/translation/translation-line-skeleton.component.d.ts +5 -0
- package/tabs/translation/translation.component.d.ts +9 -0
- package/toolbox/adaptive-toolbox.component.d.ts +15 -0
- package/toolbox/toolbox-category.component.d.ts +10 -0
- package/toolbox/toolbox-item.component.d.ts +15 -0
- package/toolbox/toolbox-tool.component.d.ts +15 -0
- package/toolbox/toolbox.component.d.ts +10 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { PageModel, SurveyModel } from "survey-core";
|
|
2
|
+
import { CreatorBase, PageAdorner } from "survey-creator-core";
|
|
3
|
+
import { CreatorModelComponent } from "./creator-model.component";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class PageDesignerComponent extends CreatorModelComponent<PageAdorner> {
|
|
6
|
+
model: PageModel;
|
|
7
|
+
survey: SurveyModel;
|
|
8
|
+
creator: CreatorBase;
|
|
9
|
+
isGhost?: boolean;
|
|
10
|
+
adorner: PageAdorner;
|
|
11
|
+
protected createModel(): void;
|
|
12
|
+
protected getModel(): PageAdorner;
|
|
13
|
+
protected getPropertiesToTrack(): string[];
|
|
14
|
+
addNewQuestion(event: any): void;
|
|
15
|
+
selectQuestionType(event: any): void;
|
|
16
|
+
ngOnDestroy(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PageDesignerComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageDesignerComponent, "svc-page", never, { "model": "model"; "survey": "survey"; "creator": "creator"; "isGhost": "isGhost"; }, {}, never, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { QuestionDesignerComponent } from "./question.component";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PanelDesignerComponent extends QuestionDesignerComponent {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PanelDesignerComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PanelDesignerComponent, "svc-panel", never, {}, {}, never, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
2
|
+
import { ObjectSelectorModel } from "survey-creator-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ObjectSelectorComponent extends BaseAngular<ObjectSelectorModel> {
|
|
5
|
+
model: ObjectSelectorModel;
|
|
6
|
+
protected getModel(): ObjectSelectorModel;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectSelectorComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ObjectSelectorComponent, "svc-object-selector", never, { "model": "model"; }, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PropertyGridViewModel } from "survey-creator-core";
|
|
2
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PropertyGridComponent extends BaseAngular<PropertyGridViewModel> {
|
|
5
|
+
model: PropertyGridViewModel;
|
|
6
|
+
protected getModel(): PropertyGridViewModel;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PropertyGridComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PropertyGridComponent, "svc-property-grid", never, { "model": "model"; }, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { EmbeddedViewContentComponent } from "survey-angular-ui";
|
|
2
|
+
import { Question, SurveyModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class QuestionEditorComponent extends EmbeddedViewContentComponent {
|
|
5
|
+
survey: SurveyModel;
|
|
6
|
+
get question(): Question;
|
|
7
|
+
protected get elementComponentName(): string;
|
|
8
|
+
get componentName(): string;
|
|
9
|
+
get componentData(): any;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QuestionEditorComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QuestionEditorComponent, "svc-question-editor-content", never, { "survey": "survey"; }, {}, never, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { QuestionDesignerComponent } from "./question.component";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class QuestionWidgetDesignerComponent extends QuestionDesignerComponent {
|
|
4
|
+
protected createModel(): void;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QuestionWidgetDesignerComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QuestionWidgetDesignerComponent, "svc-widget-question", never, {}, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { PanelModel, Question } from "survey-core";
|
|
2
|
+
import { CreatorBase, QuestionAdornerViewModel } from "survey-creator-core";
|
|
3
|
+
import { CreatorModelComponent } from "./creator-model.component";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class QuestionDesignerComponent extends CreatorModelComponent<QuestionAdornerViewModel> {
|
|
6
|
+
componentName: string;
|
|
7
|
+
componentData: any;
|
|
8
|
+
adorner: QuestionAdornerViewModel;
|
|
9
|
+
protected get creator(): CreatorBase;
|
|
10
|
+
get model(): Question | PanelModel;
|
|
11
|
+
protected createModel(): void;
|
|
12
|
+
protected getPropertiesToTrack(): string[];
|
|
13
|
+
protected getModel(): QuestionAdornerViewModel;
|
|
14
|
+
selectQuestionType(event: any): void;
|
|
15
|
+
addNewQuestion(event: any): void;
|
|
16
|
+
adornerComponent: string;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QuestionDesignerComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QuestionDesignerComponent, "svc-question", never, { "componentName": "componentName"; "componentData": "componentData"; }, {}, never, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { QuestionAngular } from "survey-angular-ui";
|
|
2
|
+
import { DropdownListModel, QuestionDropdownModel } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class LogicOperatorComponent extends QuestionAngular<QuestionDropdownModel> {
|
|
5
|
+
private dropdownListModel?;
|
|
6
|
+
get dropdownModel(): DropdownListModel | undefined;
|
|
7
|
+
click(event: any): void;
|
|
8
|
+
clear(event: any): void;
|
|
9
|
+
keyup(event: any): void;
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LogicOperatorComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LogicOperatorComponent, "svc-logic-operator", never, {}, {}, never, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { QuestionAngular } from "survey-angular-ui";
|
|
2
|
+
import { QuestionEmbeddedSurveyModel } from "survey-creator-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class EmbeddedSurveyQuestionComponent extends QuestionAngular<QuestionEmbeddedSurveyModel> {
|
|
5
|
+
get survey(): import("survey-core").Model;
|
|
6
|
+
protected onModelChanged(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EmbeddedSurveyQuestionComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EmbeddedSurveyQuestionComponent, "svc-embeddedsurvey-question", never, {}, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { QuestionAngular } from "survey-angular-ui";
|
|
2
|
+
import { QuestionLinkValueModel } from "survey-creator-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class LinkValueQuestionComponent extends QuestionAngular<QuestionLinkValueModel> {
|
|
5
|
+
get clearCaption(): string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LinkValueQuestionComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinkValueQuestionComponent, "svc-link-value", never, {}, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { QuestionRowModel } from "survey-core";
|
|
2
|
+
import { CreatorBase, RowViewModel } from "survey-creator-core";
|
|
3
|
+
import { CreatorModelComponent } from "./creator-model.component";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CreatorRowComponent extends CreatorModelComponent<RowViewModel> {
|
|
6
|
+
componentData: {
|
|
7
|
+
creator: CreatorBase;
|
|
8
|
+
row: QuestionRowModel;
|
|
9
|
+
};
|
|
10
|
+
model: RowViewModel;
|
|
11
|
+
get row(): QuestionRowModel;
|
|
12
|
+
get creator(): CreatorBase;
|
|
13
|
+
protected getModel(): RowViewModel;
|
|
14
|
+
createModel(): void;
|
|
15
|
+
getPropertiesToTrack(): string[];
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CreatorRowComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CreatorRowComponent, "svc-row", never, { "componentData": "componentData"; }, {}, never, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
2
|
+
import { SidebarTabModel } from "survey-creator-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SidebarTabComponent extends BaseAngular<SidebarTabModel> {
|
|
5
|
+
model: SidebarTabModel;
|
|
6
|
+
protected getModel(): SidebarTabModel;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarTabComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarTabComponent, "svc-side-bar-tab", never, { "model": "model"; }, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { SidebarModel } from "survey-creator-core";
|
|
2
|
+
import { AfterViewInit, ElementRef } from "@angular/core";
|
|
3
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SidebarComponent extends BaseAngular<SidebarModel> implements AfterViewInit {
|
|
6
|
+
model: SidebarModel;
|
|
7
|
+
container: ElementRef<HTMLElement>;
|
|
8
|
+
protected getModel(): SidebarModel;
|
|
9
|
+
ngOnDestroy(): void;
|
|
10
|
+
ngAfterViewInit(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarComponent, "svc-side-bar", never, { "model": "model"; }, {}, never, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, NgZone, ViewContainerRef } from "@angular/core";
|
|
2
|
+
import { LocalizableString } from "survey-core";
|
|
3
|
+
import { StringEditorViewModelBase, CreatorBase } from "survey-creator-core";
|
|
4
|
+
import { CreatorModelComponent } from "./creator-model.component";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class StringEditorComponent extends CreatorModelComponent<StringEditorViewModelBase> implements AfterViewInit {
|
|
7
|
+
private ngZone;
|
|
8
|
+
baseModel: StringEditorViewModelBase;
|
|
9
|
+
private justFocused;
|
|
10
|
+
model: any;
|
|
11
|
+
container: ElementRef<HTMLElement>;
|
|
12
|
+
constructor(cdr: ChangeDetectorRef, vcr: ViewContainerRef, ngZone: NgZone);
|
|
13
|
+
createModel(): void;
|
|
14
|
+
get locString(): LocalizableString;
|
|
15
|
+
get creator(): CreatorBase;
|
|
16
|
+
protected getModel(): StringEditorViewModelBase;
|
|
17
|
+
protected getPropertiesToTrack(): string[];
|
|
18
|
+
get placeholder(): string;
|
|
19
|
+
get contentEditable(): boolean;
|
|
20
|
+
get className(): string;
|
|
21
|
+
get errorText(): string;
|
|
22
|
+
get editValue(): string;
|
|
23
|
+
onChangeHandler: () => void;
|
|
24
|
+
onBlur(event: any): string;
|
|
25
|
+
onFocus(event: any): void;
|
|
26
|
+
done(event: any): void;
|
|
27
|
+
edit(event: any): void;
|
|
28
|
+
ngOnInit(): void;
|
|
29
|
+
ngOnDestroy(): void;
|
|
30
|
+
ngAfterViewInit(): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StringEditorComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StringEditorComponent, "svc-string-edtior", never, { "model": "model"; }, {}, never, never>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ElementRef, OnInit } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SvgBundleComponent implements OnInit {
|
|
4
|
+
svgContainer: ElementRef<SVGElement>;
|
|
5
|
+
ngOnInit(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SvgBundleComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SvgBundleComponent, "svc-svg-bundle", never, {}, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
2
|
+
import { TabbedMenuItem } from "survey-creator-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TabbedMenuItemWrapperComponent extends BaseAngular<TabbedMenuItem> {
|
|
5
|
+
model: TabbedMenuItem;
|
|
6
|
+
protected getModel(): TabbedMenuItem;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabbedMenuItemWrapperComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabbedMenuItemWrapperComponent, "svc-tabbed-menu-item-wrapper", never, { "model": "model"; }, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
2
|
+
import { TabbedMenuItem } from "survey-creator-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TabbedMenuItemComponent extends BaseAngular<TabbedMenuItem> {
|
|
5
|
+
model: TabbedMenuItem;
|
|
6
|
+
protected getModel(): TabbedMenuItem;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabbedMenuItemComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabbedMenuItemComponent, "svc-tabbed-menu-item", never, { "model": "model"; }, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef } from "@angular/core";
|
|
2
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
3
|
+
import { TabbedMenuContainer } from "survey-creator-core";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TabbledMenuComponent extends BaseAngular<TabbedMenuContainer> implements AfterViewInit {
|
|
6
|
+
model: TabbedMenuContainer;
|
|
7
|
+
container: ElementRef<HTMLDivElement>;
|
|
8
|
+
private responsivityManager;
|
|
9
|
+
protected getModel(): TabbedMenuContainer;
|
|
10
|
+
ngAfterViewInit(): void;
|
|
11
|
+
ngOnDestroy(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabbledMenuComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabbledMenuComponent, "svc-tabbed-menu", never, { "model": "model"; }, {}, never, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PagesController, TabDesignerViewModel } from "survey-creator-core";
|
|
2
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DesignerPagesComponent extends BaseAngular<PagesController> {
|
|
5
|
+
model: TabDesignerViewModel;
|
|
6
|
+
protected getModel(): PagesController;
|
|
7
|
+
get creator(): import("survey-creator-core").CreatorBase;
|
|
8
|
+
get survey(): import("survey-core").Model;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DesignerPagesComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DesignerPagesComponent, "svc-designer-pages", never, { "model": "model"; }, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SurveyModel } from "survey-core";
|
|
2
|
+
import { TabDesignerViewModel } from "survey-creator-core";
|
|
3
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class DesignerSurveyComponent extends BaseAngular<SurveyModel> {
|
|
6
|
+
model: TabDesignerViewModel;
|
|
7
|
+
protected getModel(): SurveyModel;
|
|
8
|
+
get creator(): import("survey-creator-core").CreatorBase;
|
|
9
|
+
get survey(): SurveyModel;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DesignerSurveyComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DesignerSurveyComponent, "svc-designer-survey", never, { "model": "model"; }, {}, never, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
2
|
+
import { TabDesignerViewModel } from "survey-creator-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DesignerTabComponent extends BaseAngular<TabDesignerViewModel> {
|
|
5
|
+
model: TabDesignerViewModel;
|
|
6
|
+
get survey(): import("survey-core").Model;
|
|
7
|
+
get creator(): import("survey-creator-core").CreatorBase;
|
|
8
|
+
protected getModel(): TabDesignerViewModel;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DesignerTabComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DesignerTabComponent, "svc-tab-designer", never, { "model": "model"; }, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { AceJsonEditorModel } from "survey-creator-core";
|
|
2
|
+
import { AfterViewInit, ElementRef } from "@angular/core";
|
|
3
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AceJsonEditorComponent extends BaseAngular<AceJsonEditorModel> implements AfterViewInit {
|
|
6
|
+
model: AceJsonEditorModel;
|
|
7
|
+
inputEl: ElementRef<HTMLElement>;
|
|
8
|
+
protected getModel(): AceJsonEditorModel;
|
|
9
|
+
ngAfterViewInit(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AceJsonEditorComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AceJsonEditorComponent, "svc-tab-json-editor-ace", never, { "model": "model"; }, {}, never, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { TextareaJsonEditorModel } from "survey-creator-core";
|
|
2
|
+
import { OnInit } from "@angular/core";
|
|
3
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TextareaJsonEditorComponent extends BaseAngular<TextareaJsonEditorModel> implements OnInit {
|
|
6
|
+
model: TextareaJsonEditorModel;
|
|
7
|
+
protected getModel(): TextareaJsonEditorModel;
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextareaJsonEditorComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextareaJsonEditorComponent, "svc-tab-json-editor-textarea", never, { "model": "model"; }, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
2
|
+
import { Action } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class LogicAddButtonComponent extends BaseAngular<Action> {
|
|
5
|
+
model: Action;
|
|
6
|
+
protected getModel(): Action;
|
|
7
|
+
onClick(event: any): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LogicAddButtonComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LogicAddButtonComponent, "svc-tab-logic-add-btn", never, { "model": "model"; }, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
2
|
+
import { SurveyLogicUI } from "survey-creator-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class LogicTabComponent extends BaseAngular<SurveyLogicUI> {
|
|
5
|
+
model: SurveyLogicUI;
|
|
6
|
+
protected getModel(): SurveyLogicUI;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LogicTabComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LogicTabComponent, "svc-tab-logic", never, { "model": "model"; }, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
2
|
+
import { SurveySimulatorModel } from "survey-creator-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SimulatorComponent extends BaseAngular<SurveySimulatorModel> {
|
|
5
|
+
model: SurveySimulatorModel;
|
|
6
|
+
protected getModel(): SurveySimulatorModel;
|
|
7
|
+
get simulatorFrame(): any;
|
|
8
|
+
activateZoom(): void;
|
|
9
|
+
deactivateZoom(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SimulatorComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SimulatorComponent, "survey-simulator", never, { "model": "model"; }, {}, never, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
2
|
+
import { SurveyResultsItemModel } from "survey-creator-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SurveyResultsTableRowComponent extends BaseAngular<SurveyResultsItemModel> {
|
|
5
|
+
model: SurveyResultsItemModel;
|
|
6
|
+
protected getModel(): SurveyResultsItemModel;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SurveyResultsTableRowComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SurveyResultsTableRowComponent, "survey-results-table-row", never, { "model": "model"; }, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { CreatorModelComponent } from "../../creator-model.component";
|
|
2
|
+
import { SurveyModel } from "survey-core";
|
|
3
|
+
import { SurveyResultsModel } from "survey-creator-core";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SurveyResultsComponent extends CreatorModelComponent<SurveyResultsModel> {
|
|
6
|
+
survey: SurveyModel;
|
|
7
|
+
model: SurveyResultsModel;
|
|
8
|
+
createModel(): void;
|
|
9
|
+
protected getModel(): SurveyResultsModel;
|
|
10
|
+
protected getPropertiesToTrack(): string[];
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SurveyResultsComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SurveyResultsComponent, "survey-results", never, { "survey": "survey"; }, {}, never, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
2
|
+
import { Action } from "survey-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TestAgainActionComponent extends BaseAngular<Action> {
|
|
5
|
+
model: Action;
|
|
6
|
+
protected getModel(): Action;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TestAgainActionComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestAgainActionComponent, "survey-test-again", never, { "model": "model"; }, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { TestSurveyTabViewModel } from "survey-creator-core";
|
|
2
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TestTabComponent extends BaseAngular<TestSurveyTabViewModel> {
|
|
5
|
+
model: TestSurveyTabViewModel;
|
|
6
|
+
protected getModel(): TestSurveyTabViewModel;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TestTabComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestTabComponent, "svc-tab-test", never, { "model": "model"; }, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TranslationSkeletonComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TranslationSkeletonComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TranslationSkeletonComponent, "sd-translation-line-skeleton", never, {}, {}, never, never>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
2
|
+
import { Translation } from "survey-creator-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TranslationTabComponent extends BaseAngular<Translation> {
|
|
5
|
+
model: Translation;
|
|
6
|
+
protected getModel(): Translation;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TranslationTabComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TranslationTabComponent, "svc-tab-translation", never, { "model": "model"; }, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef } from "@angular/core";
|
|
2
|
+
import { CreatorBase, QuestionToolbox } from "survey-creator-core";
|
|
3
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AdaptiveToolboxComponent extends BaseAngular<QuestionToolbox> implements AfterViewInit {
|
|
6
|
+
creator: CreatorBase;
|
|
7
|
+
container: ElementRef<HTMLElement>;
|
|
8
|
+
private responsivityManager;
|
|
9
|
+
get model(): QuestionToolbox;
|
|
10
|
+
ngAfterViewInit(): void;
|
|
11
|
+
protected getModel(): QuestionToolbox;
|
|
12
|
+
ngOnDestroy(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdaptiveToolboxComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdaptiveToolboxComponent, "svc-adaptive-toolbox", never, { "creator": "creator"; }, {}, never, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
2
|
+
import { QuestionToolbox, QuestionToolboxCategory } from "survey-creator-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ToolboxCategoryComponent extends BaseAngular<QuestionToolboxCategory> {
|
|
5
|
+
category: QuestionToolboxCategory;
|
|
6
|
+
toolbox: QuestionToolbox;
|
|
7
|
+
getModel(): QuestionToolboxCategory;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToolboxCategoryComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToolboxCategoryComponent, "svc-toolbox-category ", never, { "category": "category"; "toolbox": "toolbox"; }, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ToolboxToolViewModel, CreatorBase } from "survey-creator-core";
|
|
2
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
3
|
+
import { Action } from "survey-core";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ToolboxItemComponent extends BaseAngular<ToolboxToolViewModel> {
|
|
6
|
+
creator: CreatorBase;
|
|
7
|
+
model: Action;
|
|
8
|
+
isCompact: boolean;
|
|
9
|
+
viewModel: ToolboxToolViewModel;
|
|
10
|
+
protected getModel(): ToolboxToolViewModel;
|
|
11
|
+
get item(): Action;
|
|
12
|
+
get ariaLabel(): string;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToolboxItemComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToolboxItemComponent, "svc-toolbox-item", never, { "creator": "creator"; "model": "model"; "isCompact": "isCompact"; "viewModel": "viewModel"; }, {}, never, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { CreatorModelComponent } from "../creator-model.component";
|
|
2
|
+
import { CreatorBase, ToolboxToolViewModel } from "survey-creator-core";
|
|
3
|
+
import { Action } from "survey-core";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ToolboxToolComponent extends CreatorModelComponent<Action> {
|
|
6
|
+
creator: CreatorBase;
|
|
7
|
+
item: Action;
|
|
8
|
+
isCompact: boolean;
|
|
9
|
+
model: ToolboxToolViewModel;
|
|
10
|
+
createModel(): void;
|
|
11
|
+
protected getPropertiesToTrack(): string[];
|
|
12
|
+
protected getModel(): Action;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToolboxToolComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToolboxToolComponent, "svc-toolbox-tool", never, { "creator": "creator"; "item": "item"; "isCompact": "isCompact"; }, {}, never, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CreatorBase, QuestionToolbox } from "survey-creator-core";
|
|
2
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ToolboxComponent extends BaseAngular<QuestionToolbox> {
|
|
5
|
+
model: CreatorBase;
|
|
6
|
+
get toolbox(): QuestionToolbox;
|
|
7
|
+
protected getModel(): QuestionToolbox;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToolboxComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToolboxComponent, "svc-toolbox", never, { "model": "model"; }, {}, never, never>;
|
|
10
|
+
}
|