survey-creator-angular 1.12.4 → 1.12.6
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/bundles/survey-creator-angular.umd.js +7 -7
- package/bundles/survey-creator-angular.umd.js.map +1 -1
- package/esm2015/creator.component.js +2 -2
- package/esm2015/custom-questions/boolean-switch.component.js +2 -2
- package/esm2015/page.component.js +2 -2
- package/esm2015/side-bar/side-bar.component.js +2 -2
- package/esm2015/tabbed-menu/tabbed-menu/tabbed-menu-item.component.js +3 -2
- package/esm2015/toolbox/toolbox-item-group.component.js +2 -2
- package/esm2015/toolbox/toolbox-tool.component.js +2 -2
- package/fesm2015/survey-creator-angular.js +7 -7
- package/fesm2015/survey-creator-angular.js.map +1 -1
- package/package.json +4 -4
- package/toolbox/toolbox-item-group.component.d.ts +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-creator-angular",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.6",
|
|
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.6",
|
|
26
|
+
"survey-core": "1.12.6",
|
|
27
|
+
"survey-creator-core": "1.12.6"
|
|
28
28
|
},
|
|
29
29
|
"main": "bundles/survey-creator-angular.umd.js",
|
|
30
30
|
"module": "fesm2015/survey-creator-angular.js",
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { ToolboxToolViewModel, SurveyCreatorModel,
|
|
1
|
+
import { ToolboxToolViewModel, SurveyCreatorModel, QuestionToolboxItem } from "survey-creator-core";
|
|
2
2
|
import { BaseAngular } from "survey-angular-ui";
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class ToolboxItemGroupComponent extends BaseAngular<ToolboxToolViewModel> {
|
|
5
5
|
creator: SurveyCreatorModel;
|
|
6
|
-
model:
|
|
6
|
+
model: QuestionToolboxItem;
|
|
7
7
|
isCompact: boolean;
|
|
8
8
|
viewModel: ToolboxToolViewModel;
|
|
9
9
|
protected getModel(): ToolboxToolViewModel;
|
|
10
|
-
get item():
|
|
10
|
+
get item(): QuestionToolboxItem;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolboxItemGroupComponent, never>;
|
|
12
12
|
static ɵcmp: i0.ɵɵComponentDeclaration<ToolboxItemGroupComponent, "svc-toolbox-item-group", never, { "creator": "creator"; "model": "model"; "isCompact": "isCompact"; "viewModel": "viewModel"; }, {}, never, never>;
|
|
13
13
|
}
|