survey-creator-angular 1.12.1 → 1.12.2
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/add-question-type-selector.component.d.ts +13 -0
- package/add-question.component.d.ts +15 -0
- package/angular-ui.d.ts +9 -2
- package/angular-ui.module.d.ts +65 -58
- package/bundles/survey-creator-angular.umd.js +228 -29
- package/bundles/survey-creator-angular.umd.js.map +1 -1
- package/esm2015/add-question-type-selector.component.js +40 -0
- package/esm2015/add-question.component.js +46 -0
- package/esm2015/angular-ui.js +10 -3
- package/esm2015/angular-ui.module.js +17 -10
- package/esm2015/page-add-question.component.js +29 -29
- package/esm2015/panel.component.js +2 -2
- package/esm2015/property-panel/object-selector.component.js +1 -1
- package/esm2015/side-bar/side-bar-page.component.js +23 -0
- package/esm2015/side-bar/side-bar-tab.component.js +22 -22
- package/esm2015/side-bar/side-bar.component.js +3 -3
- package/esm2015/tab-control/property-grid-placeholder-header.component.js +22 -0
- package/esm2015/tab-control/property-grid-placeholder.component.js +22 -0
- package/esm2015/tab-control/side-bar-property-grid-header.component.js +28 -0
- package/esm2015/tab-control/tab-button.component.js +23 -0
- package/esm2015/tab-control/tab-control.component.js +24 -0
- package/esm2015/tab-control/tabs.component.js +23 -0
- package/fesm2015/survey-creator-angular.js +191 -26
- package/fesm2015/survey-creator-angular.js.map +1 -1
- package/package.json +4 -4
- package/page-add-question.component.d.ts +9 -9
- package/side-bar/side-bar-page.component.d.ts +9 -0
- package/side-bar/side-bar-tab.component.d.ts +9 -9
- package/tab-control/property-grid-placeholder-header.component.d.ts +9 -0
- package/tab-control/property-grid-placeholder.component.d.ts +7 -0
- package/tab-control/side-bar-property-grid-header.component.d.ts +10 -0
- package/tab-control/tab-button.component.d.ts +9 -0
- package/tab-control/tab-control.component.d.ts +9 -0
- package/tab-control/tabs.component.d.ts +10 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-creator-angular",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.2",
|
|
4
4
|
"description": "Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.",
|
|
5
5
|
"homepage": "https://surveyjs.io/Overview/Survey-Creator",
|
|
6
6
|
"license": "https://surveyjs.io/Licenses#SurveyCreator",
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"@angular/cdk": "*",
|
|
23
23
|
"@angular/core": "*",
|
|
24
24
|
"@angular/forms": "*",
|
|
25
|
-
"survey-angular-ui": "1.12.
|
|
26
|
-
"survey-core": "1.12.
|
|
27
|
-
"survey-creator-core": "1.12.
|
|
25
|
+
"survey-angular-ui": "1.12.2",
|
|
26
|
+
"survey-core": "1.12.2",
|
|
27
|
+
"survey-creator-core": "1.12.2"
|
|
28
28
|
},
|
|
29
29
|
"main": "bundles/survey-creator-angular.umd.js",
|
|
30
30
|
"module": "fesm2015/survey-creator-angular.js",
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { ActionBarItemComponent } from "survey-angular-ui";
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AddQuestionButtonComponent extends ActionBarItemComponent {
|
|
4
|
-
get adorner(): any;
|
|
5
|
-
addNewQuestion(event: any): void;
|
|
6
|
-
selectQuestionType(event: any): void;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AddQuestionButtonComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AddQuestionButtonComponent, "svc-add-new-question-btn", never, {}, {}, never, never>;
|
|
9
|
-
}
|
|
1
|
+
import { ActionBarItemComponent } from "survey-angular-ui";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AddQuestionButtonComponent extends ActionBarItemComponent {
|
|
4
|
+
get adorner(): any;
|
|
5
|
+
addNewQuestion(event: any): void;
|
|
6
|
+
selectQuestionType(event: any): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AddQuestionButtonComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AddQuestionButtonComponent, "svc-add-new-question-btn", never, {}, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
2
|
+
import { SidebarPageModel } from "survey-creator-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SidebarPageComponent extends BaseAngular<SidebarPageModel> {
|
|
5
|
+
model: SidebarPageModel;
|
|
6
|
+
protected getModel(): SidebarPageModel;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarPageComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarPageComponent, "svc-side-bar-page", never, { "model": "model"; }, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -1,9 +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
|
-
}
|
|
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,9 @@
|
|
|
1
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
2
|
+
import { SidebarPageModel } from "survey-creator-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SidebarPropertyGridPlaceholderHeaderComponent extends BaseAngular<SidebarPageModel> {
|
|
5
|
+
model: SidebarPageModel;
|
|
6
|
+
protected getModel(): SidebarPageModel;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarPropertyGridPlaceholderHeaderComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarPropertyGridPlaceholderHeaderComponent, "svc-side-bar-property-grid-placeholder-header", never, { "model": "model"; }, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { EmbeddedViewContentComponent } from "survey-angular-ui";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PropertyGridPlaceholderComponent extends EmbeddedViewContentComponent {
|
|
4
|
+
editorLocalization: import("survey-creator-core").EditorLocalization;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PropertyGridPlaceholderComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PropertyGridPlaceholderComponent, "svc-property-grid-placeholder", never, {}, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
2
|
+
import { MenuButton } from "survey-creator-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SidebarPropertyGridHeaderComponent extends BaseAngular<MenuButton> {
|
|
5
|
+
model: MenuButton;
|
|
6
|
+
getTarget: (container: HTMLElement) => HTMLElement;
|
|
7
|
+
protected getModel(): MenuButton;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarPropertyGridHeaderComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarPropertyGridHeaderComponent, "svc-side-bar-property-grid-header", never, { "model": "model"; }, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
2
|
+
import { MenuButton } from "survey-creator-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TabButtonComponent extends BaseAngular<MenuButton> {
|
|
5
|
+
model: MenuButton;
|
|
6
|
+
protected getModel(): MenuButton;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabButtonComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabButtonComponent, "svc-tab-button", never, { "model": "model"; }, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
2
|
+
import { TabControlModel } from "survey-creator-core";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TabControlComponent extends BaseAngular<TabControlModel> {
|
|
5
|
+
model: TabControlModel;
|
|
6
|
+
protected getModel(): TabControlModel;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabControlComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabControlComponent, "svc-tab-control", never, { "model": "model"; }, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
2
|
+
import { ActionContainer } from "survey-core";
|
|
3
|
+
import { MenuButton } from "survey-creator-core";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TabsComponent extends BaseAngular<ActionContainer<MenuButton>> {
|
|
6
|
+
model: ActionContainer<MenuButton>;
|
|
7
|
+
protected getModel(): ActionContainer<MenuButton>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "svc-tabs", never, { "model": "model"; }, {}, never, never>;
|
|
10
|
+
}
|