survey-creator-angular 2.4.1 → 2.5.0
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-presets.umd.js +681 -0
- package/bundles/survey-creator-angular-presets.umd.js.map +1 -0
- package/bundles/survey-creator-angular.umd.js +2 -2
- package/bundles/survey-creator-angular.umd.js.map +1 -1
- package/esm2015/creator.component.js +2 -2
- package/esm2015/presets/index.js +7 -0
- package/esm2015/presets/presets-icon-item.component.js +21 -0
- package/esm2015/presets/presets-property-grid.component.js +33 -0
- package/esm2015/presets/presets.component.js +34 -0
- package/esm2015/presets/presets.module.js +46 -0
- package/esm2015/presets/survey-creator-angular-presets.js +5 -0
- package/esm2015/side-bar/tab-control.component.js +2 -2
- package/fesm2015/survey-creator-angular-presets.js +125 -0
- package/fesm2015/survey-creator-angular-presets.js.map +1 -0
- package/fesm2015/survey-creator-angular.js +2 -2
- package/fesm2015/survey-creator-angular.js.map +1 -1
- package/package.json +4 -4
- package/presets/index.d.ts +5 -0
- package/presets/package.json +10 -0
- package/presets/presets-icon-item.component.d.ts +8 -0
- package/presets/presets-property-grid.component.d.ts +12 -0
- package/presets/presets.component.d.ts +10 -0
- package/presets/presets.module.d.ts +12 -0
- package/presets/survey-creator-angular-presets.d.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-creator-angular",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"description": "A white-label drag-and-drop form builder for Angular that lets you design complex, interactive forms and surveys without writing code. It generates JSON schemas used by the SurveyJS Form Library to render dynamic forms in your Angular app.",
|
|
5
5
|
"author": "DevSoft Baltic OU <info@devsoftbaltic.com>",
|
|
6
6
|
"homepage": "https://surveyjs.io/",
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"@angular/cdk": "*",
|
|
41
41
|
"@angular/core": "*",
|
|
42
42
|
"@angular/forms": "*",
|
|
43
|
-
"survey-angular-ui": "2.
|
|
44
|
-
"survey-core": "2.
|
|
45
|
-
"survey-creator-core": "2.
|
|
43
|
+
"survey-angular-ui": "2.5.0",
|
|
44
|
+
"survey-core": "2.5.0",
|
|
45
|
+
"survey-creator-core": "2.5.0"
|
|
46
46
|
},
|
|
47
47
|
"overrides": {
|
|
48
48
|
"stylus": "github:stylus/stylus#0.54.8"
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { TabPresetsComponent } from "./presets.component";
|
|
2
|
+
export { PresetsPropertyGridWrapperComponent } from "./presets-property-grid.component";
|
|
3
|
+
export { PresetsIconItemComponent } from "./presets-icon-item.component";
|
|
4
|
+
import { PresetsModule } from "./presets.module";
|
|
5
|
+
export { PresetsModule };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"main": "../bundles/survey-creator-angular-presets.umd.js",
|
|
3
|
+
"module": "../fesm2015/survey-creator-angular-presets.js",
|
|
4
|
+
"es2015": "../fesm2015/survey-creator-angular-presets.js",
|
|
5
|
+
"esm2015": "../esm2015/presets/survey-creator-angular-presets.js",
|
|
6
|
+
"fesm2015": "../fesm2015/survey-creator-angular-presets.js",
|
|
7
|
+
"typings": "survey-creator-angular-presets.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"name": "survey-creator-angular/presets"
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ItemValue } from "survey-core";
|
|
2
|
+
import { EmbeddedViewContentComponent } from "survey-angular-ui";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PresetsIconItemComponent extends EmbeddedViewContentComponent {
|
|
5
|
+
model: ItemValue;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PresetsIconItemComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PresetsIconItemComponent, "svc-presets-icon-item", never, { "model": "model"; }, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
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 PresetsPropertyGridWrapperComponent extends BaseAngular<PropertyGridViewModel> {
|
|
5
|
+
model?: PropertyGridViewModel;
|
|
6
|
+
showPresets(): void;
|
|
7
|
+
buttonTitle: string;
|
|
8
|
+
buttonDescription: string;
|
|
9
|
+
protected getModel(): PropertyGridViewModel;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PresetsPropertyGridWrapperComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PresetsPropertyGridWrapperComponent, "svc-presets-property-grid", never, { "model": "model"; }, {}, never, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseAngular } from "survey-angular-ui";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TabPresetsComponent extends BaseAngular<any> {
|
|
4
|
+
model: any;
|
|
5
|
+
get survey(): any;
|
|
6
|
+
get creator(): any;
|
|
7
|
+
protected getModel(): any;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabPresetsComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabPresetsComponent, "svc-tab-presets", never, { "model": "model"; }, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./presets.component";
|
|
3
|
+
import * as i2 from "./presets-icon-item.component";
|
|
4
|
+
import * as i3 from "./presets-property-grid.component";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@angular/forms";
|
|
7
|
+
import * as i6 from "survey-angular-ui";
|
|
8
|
+
export declare class PresetsModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PresetsModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PresetsModule, [typeof i1.TabPresetsComponent, typeof i2.PresetsIconItemComponent, typeof i3.PresetsPropertyGridWrapperComponent], [typeof i4.CommonModule, typeof i5.FormsModule, typeof i6.SurveyModule], [typeof i1.TabPresetsComponent, typeof i2.PresetsIconItemComponent, typeof i3.PresetsPropertyGridWrapperComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PresetsModule>;
|
|
12
|
+
}
|