survey-creator-angular 1.9.46 → 1.9.55
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/adorners/item-value.component.d.ts +1 -0
- package/esm2020/adorners/item-value.component.mjs +6 -3
- package/esm2020/adorners/matrix-cell.component.mjs +3 -3
- package/esm2020/page-navigator/page-navigator.component.mjs +5 -3
- package/esm2020/property-panel/property-grid.component.mjs +7 -3
- package/esm2020/questions/logic-operator.component.mjs +3 -3
- package/esm2020/string-editor.component.mjs +3 -3
- package/esm2020/tabs/designer/designer-survey.component.mjs +3 -3
- package/esm2020/toolbox/toolbox-tool.component.mjs +4 -1
- package/fesm2015/survey-creator-angular.mjs +25 -14
- package/fesm2015/survey-creator-angular.mjs.map +1 -1
- package/fesm2020/survey-creator-angular.mjs +25 -14
- package/fesm2020/survey-creator-angular.mjs.map +1 -1
- package/package.json +10 -9
- package/property-panel/property-grid.component.d.ts +1 -0
- package/toolbox/toolbox-tool.component.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-creator-angular",
|
|
3
|
-
"version": "1.9.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.9.55",
|
|
4
|
+
"description": "Use SurveyJS Creator to create or edit JSON for SurveyJS Library.",
|
|
5
|
+
"homepage": "https://surveyjs.io/Overview/Survey-Creator",
|
|
6
|
+
"license": "https://surveyjs.io/Licenses#SurveyCreator",
|
|
5
7
|
"keywords": [
|
|
6
8
|
"Survey",
|
|
9
|
+
"Survey Creator",
|
|
10
|
+
"Form Builder",
|
|
11
|
+
"Survey Maker",
|
|
12
|
+
"SurveyJS",
|
|
7
13
|
"JavaScript",
|
|
8
|
-
"
|
|
9
|
-
"Library",
|
|
10
|
-
"angular",
|
|
11
|
-
"angular-component"
|
|
14
|
+
"TypeScript"
|
|
12
15
|
],
|
|
13
|
-
"homepage": "https://surveyjs.io/",
|
|
14
|
-
"license": "MIT",
|
|
15
16
|
"repository": {
|
|
16
17
|
"type": "git",
|
|
17
|
-
"url": "https://github.com/surveyjs/
|
|
18
|
+
"url": "https://github.com/surveyjs/survey-creator.git"
|
|
18
19
|
},
|
|
19
20
|
"typings": "survey-creator-angular.d.ts",
|
|
20
21
|
"peerDependencies": {
|
|
@@ -4,6 +4,7 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class PropertyGridComponent extends BaseAngular<PropertyGridViewModel> {
|
|
5
5
|
model: PropertyGridViewModel;
|
|
6
6
|
protected getModel(): PropertyGridViewModel;
|
|
7
|
+
protected getPropertiesToUpdateSync(): Array<string>;
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<PropertyGridComponent, never>;
|
|
8
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<PropertyGridComponent, "svc-property-grid", never, { "model": "model"; }, {}, never, never>;
|
|
9
10
|
}
|
|
@@ -10,6 +10,7 @@ export declare class ToolboxToolComponent extends CreatorModelComponent<Action>
|
|
|
10
10
|
createModel(): void;
|
|
11
11
|
protected getPropertiesToTrack(): string[];
|
|
12
12
|
protected getModel(): Action;
|
|
13
|
+
protected getPropertiesToUpdateSync(): string[];
|
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolboxToolComponent, never>;
|
|
14
15
|
static ɵcmp: i0.ɵɵComponentDeclaration<ToolboxToolComponent, "svc-toolbox-tool", never, { "creator": "creator"; "item": "item"; "isCompact": "isCompact"; }, {}, never, never>;
|
|
15
16
|
}
|