survey-creator-angular 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/esm2020/header/logo-image.component.mjs +1 -1
- package/esm2020/page-navigator/page-navigator-item.component.mjs +7 -4
- package/esm2020/question.component.mjs +2 -2
- package/esm2020/side-bar/side-bar.component.mjs +1 -1
- package/esm2020/toolbox/adaptive-toolbox.component.mjs +1 -1
- package/fesm2015/survey-creator-angular.mjs +8 -4
- package/fesm2015/survey-creator-angular.mjs.map +1 -1
- package/fesm2020/survey-creator-angular.mjs +7 -4
- package/fesm2020/survey-creator-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/page-navigator/page-navigator-item.component.d.ts +3 -2
- package/questions/question-embedded-survey.component.d.ts +2 -1
- package/tabs/designer/designer-pages.component.d.ts +3 -2
- package/tabs/designer/designer-survey.component.d.ts +1 -1
- package/tabs/designer/designer.component.d.ts +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-creator-angular",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.62",
|
|
4
4
|
"description": "Use SurveyJS Creator to create or edit JSON for SurveyJS Library.",
|
|
5
5
|
"homepage": "https://surveyjs.io/Overview/Survey-Creator",
|
|
6
6
|
"license": "https://surveyjs.io/Licenses#SurveyCreator",
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { Action } from "survey-core";
|
|
1
|
+
import { Action, IAction } from "survey-core";
|
|
2
2
|
import { BaseAngular } from "survey-angular-ui";
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PageNavigatorItemComponent extends BaseAngular<Action> {
|
|
5
|
-
model: Action;
|
|
5
|
+
model: Action | IAction;
|
|
6
6
|
protected getModel(): Action;
|
|
7
|
+
get anyModel(): any;
|
|
7
8
|
click(event: any): void;
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<PageNavigatorItemComponent, never>;
|
|
9
10
|
static ɵcmp: i0.ɵɵComponentDeclaration<PageNavigatorItemComponent, "svc-page-navigator-item", never, { "model": "model"; }, {}, never, never>;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
/// <reference types="survey-core" />
|
|
1
2
|
import { QuestionAngular } from "survey-angular-ui";
|
|
2
3
|
import { QuestionEmbeddedSurveyModel } from "survey-creator-core";
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class EmbeddedSurveyQuestionComponent extends QuestionAngular<QuestionEmbeddedSurveyModel> {
|
|
5
|
-
get survey(): import("survey
|
|
6
|
+
get survey(): import("survey").SurveyModel;
|
|
6
7
|
protected onModelChanged(): void;
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<EmbeddedSurveyQuestionComponent, never>;
|
|
8
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<EmbeddedSurveyQuestionComponent, "svc-embeddedsurvey-question", never, {}, {}, never, never>;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
+
/// <reference types="survey-core" />
|
|
1
2
|
import { PagesController, TabDesignerViewModel } from "survey-creator-core";
|
|
2
3
|
import { BaseAngular } from "survey-angular-ui";
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class DesignerPagesComponent extends BaseAngular<PagesController> {
|
|
5
6
|
model: TabDesignerViewModel;
|
|
6
7
|
protected getModel(): PagesController;
|
|
7
|
-
get creator(): import("
|
|
8
|
-
get survey(): import("survey
|
|
8
|
+
get creator(): import("creator-base").CreatorBase;
|
|
9
|
+
get survey(): import("survey").SurveyModel;
|
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<DesignerPagesComponent, never>;
|
|
10
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<DesignerPagesComponent, "svc-designer-pages", never, { "model": "model"; }, {}, never, never>;
|
|
11
12
|
}
|
|
@@ -5,7 +5,7 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class DesignerSurveyComponent extends BaseAngular<SurveyModel> {
|
|
6
6
|
model: TabDesignerViewModel;
|
|
7
7
|
protected getModel(): SurveyModel;
|
|
8
|
-
get creator(): import("
|
|
8
|
+
get creator(): import("creator-base").CreatorBase;
|
|
9
9
|
get survey(): SurveyModel;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<DesignerSurveyComponent, never>;
|
|
11
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<DesignerSurveyComponent, "svc-designer-survey", never, { "model": "model"; }, {}, never, never>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
/// <reference types="survey-core" />
|
|
1
2
|
import { BaseAngular } from "survey-angular-ui";
|
|
2
3
|
import { TabDesignerViewModel } from "survey-creator-core";
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class DesignerTabComponent extends BaseAngular<TabDesignerViewModel> {
|
|
5
6
|
model: TabDesignerViewModel;
|
|
6
|
-
get survey(): import("survey
|
|
7
|
-
get creator(): import("
|
|
7
|
+
get survey(): import("survey").SurveyModel;
|
|
8
|
+
get creator(): import("creator-base").CreatorBase;
|
|
8
9
|
protected getModel(): TabDesignerViewModel;
|
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<DesignerTabComponent, never>;
|
|
10
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<DesignerTabComponent, "svc-tab-designer", never, { "model": "model"; }, {}, never, never>;
|