@formio/reporting 2.0.0-rc.3 → 2.0.0-rc.7

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.
Files changed (34) hide show
  1. package/lib/components/ReportingGrid/ReportingGrid.d.ts +2 -1
  2. package/lib/index.d.ts +2 -0
  3. package/lib/licenseCheck/common.d.ts +5 -1
  4. package/lib/licenseCheck/index.d.ts +1 -2
  5. package/lib/licenseCheck/noLicenseCheck.d.ts +5 -0
  6. package/lib/providers/ReportingUrlFetchProvider.d.ts +2 -0
  7. package/lib/utils/AggregationOperators/AggregationOperator.d.ts +2 -1
  8. package/lib/utils/AggregationOperators/Avg.d.ts +1 -1
  9. package/lib/utils/AggregationOperators/Concat.d.ts +1 -0
  10. package/lib/utils/AggregationOperators/Count.d.ts +1 -1
  11. package/lib/utils/AggregationOperators/DateDiff.d.ts +2 -1
  12. package/lib/utils/AggregationOperators/DayOfMonth.d.ts +1 -1
  13. package/lib/utils/AggregationOperators/DayOfWeek.d.ts +1 -1
  14. package/lib/utils/AggregationOperators/DayOfYear.d.ts +1 -1
  15. package/lib/utils/AggregationOperators/Divide.d.ts +2 -1
  16. package/lib/utils/AggregationOperators/Max.d.ts +1 -1
  17. package/lib/utils/AggregationOperators/Min.d.ts +1 -1
  18. package/lib/utils/AggregationOperators/Month.d.ts +1 -1
  19. package/lib/utils/AggregationOperators/Multiply.d.ts +1 -1
  20. package/lib/utils/AggregationOperators/Percentage.d.ts +15 -0
  21. package/lib/utils/AggregationOperators/Size.d.ts +1 -1
  22. package/lib/utils/AggregationOperators/Subtract.d.ts +16 -0
  23. package/lib/utils/AggregationOperators/Sum.d.ts +1 -1
  24. package/lib/utils/AggregationOperators/Week.d.ts +1 -1
  25. package/lib/utils/AggregationOperators/Year.d.ts +1 -1
  26. package/lib/utils/AggregationOperators/index.d.ts +2 -1
  27. package/lib/utils/FilterOperators.d.ts +3 -1
  28. package/lib/utils/configurationFormUtils.d.ts +1 -0
  29. package/lib/utils/controlsUtils.d.ts +1 -1
  30. package/lib/utils/index.d.ts +7 -4
  31. package/lib/utils/utils.d.ts +3 -2
  32. package/package.json +74 -1
  33. package/reporting.js +1 -1
  34. package/lib/licenseCheck/portal.d.ts +0 -1
@@ -3,7 +3,6 @@ declare const ReportingGrid_base: any;
3
3
  export default class ReportingGrid extends ReportingGrid_base {
4
4
  static schema(...extend: any[]): any;
5
5
  static get builderInfo(): {};
6
- FormioCore: any;
7
6
  formioGrid: any;
8
7
  columns: {};
9
8
  initComponents: any[];
@@ -21,6 +20,8 @@ export default class ReportingGrid extends ReportingGrid_base {
21
20
  formatGridComponent(comp: any, columnSettings: any): any;
22
21
  isDefaultColumn(columnReportingSettings: any): any;
23
22
  addColumnsFromReportingForms(allColumns: any, fieldsGroupedByForm: any): void;
23
+ checkDeconstructions(fieldSettings: any): void;
24
+ checkDeconstructionRequirement(formId: any, compPath: any): void;
24
25
  addCalculatedColumns(allColumns: any, allCalculatedColumns?: any[], requiredCalculatedColumnsPaths?: any): void;
25
26
  init(): any;
26
27
  render(): any;
package/lib/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import * as ReportingConfigUtils from './utils/configurationFormUtils';
1
2
  declare const _default: {
2
3
  components: {
3
4
  reportingcontrols: typeof import("./components/ReportingControls/ReportingControls").default;
@@ -16,6 +17,7 @@ declare const _default: {
16
17
  };
17
18
  semantic: {};
18
19
  };
20
+ utils: typeof ReportingConfigUtils;
19
21
  library: string;
20
22
  };
21
23
  export default _default;
@@ -1 +1,5 @@
1
- export default function checkLicense(projectEndpoint?: string): Promise<boolean>;
1
+ declare const _default: {
2
+ checkLicense: () => Promise<void>;
3
+ checkEndpointAllowed: (endpointUrl: string) => Promise<void>;
4
+ };
5
+ export default _default;
@@ -1,2 +1 @@
1
- import checkLicense from './common';
2
- export default checkLicense;
1
+ export declare const checkLicense: () => Promise<void>, checkEndpointAllowed: (endpointUrl: string) => Promise<void>;
@@ -0,0 +1,5 @@
1
+ declare const _default: {
2
+ checkLicense: () => Promise<void>;
3
+ checkEndpointAllowed: (endpointUrl: string) => Promise<void>;
4
+ };
5
+ export default _default;
@@ -3,6 +3,7 @@ export default class ReportingUrlFetchProvider {
3
3
  [key: string]: any;
4
4
  reportingConfig: any;
5
5
  formio: any;
6
+ dataDeconstructions: any;
6
7
  };
7
8
  defaultFilters: any;
8
9
  constructor(options: any);
@@ -77,6 +78,7 @@ export default class ReportingUrlFetchProvider {
77
78
  }[];
78
79
  $or?: undefined;
79
80
  };
81
+ addDataDeconscructionStages(requestBody: any[], formId: string, pathToFormData: string): void;
80
82
  getAggregatedRequestBody(params?: any): any[];
81
83
  makeRequest(params?: any): Promise<any>;
82
84
  getData(params?: any): Promise<any>;
@@ -6,9 +6,10 @@ interface IAggregationOperator {
6
6
  }
7
7
  export default class AggregationOperator implements IAggregationOperator {
8
8
  static get operatorKey(): string;
9
- static getDisplayField(settings: any): {
9
+ static getDisplayField(settings: any, reportingConfig?: any): {
10
10
  type: string;
11
11
  };
12
+ static getFieldArgs(settings: any): any;
12
13
  static get acceptedValueTypes(): any[];
13
14
  static get operatorTitle(): string;
14
15
  static get aggregatedGroupOperator(): boolean;
@@ -2,7 +2,7 @@ import AggregationOperator from './AggregationOperator';
2
2
  export default class Avg extends AggregationOperator {
3
3
  static get operatorKey(): string;
4
4
  static get operatorTitle(): string;
5
- static getDisplayField(settings: any): {
5
+ static getDisplayField(settings: any, reportingConfig?: any): {
6
6
  type: string;
7
7
  };
8
8
  static get acceptedValueTypes(): any[];
@@ -4,6 +4,7 @@ export default class Concat extends AggregationOperator {
4
4
  static getDisplayField(settings: any): {
5
5
  type: string;
6
6
  };
7
+ static getFieldArgs(settings: any): any;
7
8
  static get operatorTitle(): string;
8
9
  static get acceptedValueTypes(): any[];
9
10
  static get aggregatedGroupOperator(): boolean;
@@ -1,7 +1,7 @@
1
1
  import AggregationOperator from './AggregationOperator';
2
2
  export default class Count extends AggregationOperator {
3
3
  static get operatorKey(): string;
4
- static getDisplayField(settings: any): {
4
+ static getDisplayField(settings: any, reportingConfig?: any): {
5
5
  type: string;
6
6
  };
7
7
  static get operatorTitle(): string;
@@ -1,9 +1,10 @@
1
1
  import AggregationOperator from './AggregationOperator';
2
2
  export default class DateDiff extends AggregationOperator {
3
3
  static get operatorKey(): string;
4
- static getDisplayField(settings: any): {
4
+ static getDisplayField(settings: any, reportingConfig?: any): {
5
5
  type: string;
6
6
  };
7
+ static getFieldArgs(settings: any): any;
7
8
  static get operatorTitle(): string;
8
9
  static get acceptedValueTypes(): any[];
9
10
  static get aggregatedGroupOperator(): boolean;
@@ -1,7 +1,7 @@
1
1
  import AggregationOperator from './AggregationOperator';
2
2
  export default class DayOfMonth extends AggregationOperator {
3
3
  static get operatorKey(): string;
4
- static getDisplayField(settings: any): {
4
+ static getDisplayField(settings: any, reportingConfig?: any): {
5
5
  type: string;
6
6
  };
7
7
  static get operatorTitle(): string;
@@ -1,7 +1,7 @@
1
1
  import AggregationOperator from './AggregationOperator';
2
2
  export default class DayOfWeek extends AggregationOperator {
3
3
  static get operatorKey(): string;
4
- static getDisplayField(settings: any): {
4
+ static getDisplayField(settings: any, reportingConfig?: any): {
5
5
  type: string;
6
6
  };
7
7
  static get operatorTitle(): string;
@@ -1,7 +1,7 @@
1
1
  import AggregationOperator from './AggregationOperator';
2
2
  export default class DayOfYear extends AggregationOperator {
3
3
  static get operatorKey(): string;
4
- static getDisplayField(settings: any): {
4
+ static getDisplayField(settings: any, reportingConfig?: any): {
5
5
  type: string;
6
6
  };
7
7
  static get operatorTitle(): string;
@@ -1,9 +1,10 @@
1
1
  import AggregationOperator from './AggregationOperator';
2
2
  export default class Divide extends AggregationOperator {
3
3
  static get operatorKey(): string;
4
- static getDisplayField(settings: any): {
4
+ static getDisplayField(settings: any, reportingConfig?: any): {
5
5
  type: string;
6
6
  };
7
+ static getFieldArgs(settings: any): any;
7
8
  static get operatorTitle(): string;
8
9
  static get aggregatedGroupOperator(): boolean;
9
10
  static get acceptedValueTypes(): any[];
@@ -1,7 +1,7 @@
1
1
  import AggregationOperator from './AggregationOperator';
2
2
  export default class Max extends AggregationOperator {
3
3
  static get operatorKey(): string;
4
- static getDisplayField(settings: any): {
4
+ static getDisplayField(settings: any, reportingConfig?: any): {
5
5
  type: string;
6
6
  };
7
7
  static get operatorTitle(): string;
@@ -1,7 +1,7 @@
1
1
  import AggregationOperator from './AggregationOperator';
2
2
  export default class Min extends AggregationOperator {
3
3
  static get operatorKey(): string;
4
- static getDisplayField(settings: any): {
4
+ static getDisplayField(settings: any, reportingConfig?: any): {
5
5
  type: string;
6
6
  };
7
7
  static get operatorTitle(): string;
@@ -1,7 +1,7 @@
1
1
  import AggregationOperator from './AggregationOperator';
2
2
  export default class Month extends AggregationOperator {
3
3
  static get operatorKey(): string;
4
- static getDisplayField(settings: any): {
4
+ static getDisplayField(settings: any, reportingConfig?: any): {
5
5
  type: string;
6
6
  };
7
7
  static get operatorTitle(): string;
@@ -1,7 +1,7 @@
1
1
  import AggregationOperator from './AggregationOperator';
2
2
  export default class Multiply extends AggregationOperator {
3
3
  static get operatorKey(): string;
4
- static getDisplayField(settings: any): {
4
+ static getDisplayField(settings: any, reportingConfig?: any): {
5
5
  type: string;
6
6
  };
7
7
  static get operatorTitle(): string;
@@ -0,0 +1,15 @@
1
+ import AggregationOperator from './AggregationOperator';
2
+ export default class Percentage extends AggregationOperator {
3
+ static get operatorKey(): string;
4
+ static getDisplayField(settings: any): {
5
+ type: string;
6
+ };
7
+ static get operatorTitle(): string;
8
+ static get aggregatedGroupOperator(): boolean;
9
+ static get acceptedValueTypes(): any[];
10
+ static get aggregatedCalculationOperator(): boolean;
11
+ static get calculationArgs(): string[];
12
+ getRequest(settings: any): {
13
+ $multiply: (string | number)[];
14
+ };
15
+ }
@@ -1,7 +1,7 @@
1
1
  import AggregationOperator from './AggregationOperator';
2
2
  export default class Size extends AggregationOperator {
3
3
  static get operatorKey(): string;
4
- static getDisplayField(settings: any): {
4
+ static getDisplayField(settings: any, reportingConfig?: any): {
5
5
  type: string;
6
6
  };
7
7
  static get operatorTitle(): string;
@@ -0,0 +1,16 @@
1
+ import AggregationOperator from './AggregationOperator';
2
+ export default class Subtract extends AggregationOperator {
3
+ static get operatorKey(): string;
4
+ static getDisplayField(settings: any): {
5
+ type: string;
6
+ };
7
+ static get operatorTitle(): string;
8
+ static get aggregatedGroupOperator(): boolean;
9
+ static get acceptedValueTypes(): any[];
10
+ static get aggregatedCalculationOperator(): boolean;
11
+ static getFieldArgs(settings: any): any;
12
+ static get calculationArgs(): string[];
13
+ getRequest(settings: any): {
14
+ $subtract: string[];
15
+ };
16
+ }
@@ -1,7 +1,7 @@
1
1
  import AggregationOperator from './AggregationOperator';
2
2
  export default class Sum extends AggregationOperator {
3
3
  static get operatorKey(): string;
4
- static getDisplayField(settings: any): {
4
+ static getDisplayField(settings: any, reportingConfig?: any): {
5
5
  type: string;
6
6
  };
7
7
  static get operatorTitle(): string;
@@ -1,7 +1,7 @@
1
1
  import AggregationOperator from './AggregationOperator';
2
2
  export default class Week extends AggregationOperator {
3
3
  static get operatorKey(): string;
4
- static getDisplayField(settings: any): {
4
+ static getDisplayField(settings: any, reportingConfig?: any): {
5
5
  type: string;
6
6
  };
7
7
  static get operatorTitle(): string;
@@ -1,7 +1,7 @@
1
1
  import AggregationOperator from './AggregationOperator';
2
2
  export default class Year extends AggregationOperator {
3
3
  static get operatorKey(): string;
4
- static getDisplayField(settings: any): {
4
+ static getDisplayField(settings: any, reportingConfig?: any): {
5
5
  type: string;
6
6
  };
7
7
  static get operatorTitle(): string;
@@ -14,7 +14,8 @@ import Week from './Week';
14
14
  import DayOfMonth from './DayOfMonth';
15
15
  import DayOfWeek from './DayOfWeek';
16
16
  import DayOfYear from './DayOfYear';
17
+ import Subtract from './Subtract';
17
18
  declare const AggregationOperators: {
18
- [x: string]: typeof Year | typeof DateDiff | typeof Divide | typeof Multiply | typeof Sum | typeof Count | typeof Max | typeof Min | typeof Avg | typeof Concat | typeof Size | typeof Month | typeof Week | typeof DayOfMonth | typeof DayOfWeek | typeof DayOfYear;
19
+ [x: string]: typeof Year | typeof DateDiff | typeof Divide | typeof Multiply | typeof Sum | typeof Count | typeof Max | typeof Min | typeof Avg | typeof Concat | typeof Size | typeof Month | typeof Week | typeof DayOfMonth | typeof DayOfWeek | typeof DayOfYear | typeof Subtract;
19
20
  };
20
21
  export default AggregationOperators;
@@ -1,2 +1,4 @@
1
- declare const FilterOperators: any;
1
+ declare const FilterOperators: {
2
+ [x: string]: typeof import("@formio/js/lib/cjs/utils/conditionOperators/IsEqualTo").default | typeof import("@formio/js/lib/cjs/utils/conditionOperators/DateGreaterThan").default;
3
+ };
2
4
  export default FilterOperators;
@@ -32,6 +32,7 @@ export declare function addCalculatedColumnsOptions({ calculatedColumns, options
32
32
  options: any;
33
33
  operator?: any;
34
34
  }): void;
35
+ export declare function getCalculationArgsOptions(reportingForms: any, calculatedColumns: any[], operator: any, calculatedValueIndex: any): any;
35
36
  export declare function getReportingFormsComponentsAndExtraComponentsAsOptions({ reportingForms, calculatedColumns, selectedItems, operator, }: {
36
37
  reportingForms: any;
37
38
  calculatedColumns: any;
@@ -62,7 +62,7 @@ export declare function getSingleFilterOperatorValueComp(filter: any): {
62
62
  widget: string;
63
63
  data: {
64
64
  values: {
65
- label: any;
65
+ label: string;
66
66
  value: string;
67
67
  }[];
68
68
  };
@@ -1,5 +1,7 @@
1
1
  declare const ReportingUtils: {
2
- FilterOperators: any;
2
+ FilterOperators: {
3
+ [x: string]: typeof import("@formio/js/lib/cjs/utils/conditionOperators/IsEqualTo").default | typeof import("@formio/js/lib/cjs/utils/conditionOperators/DateGreaterThan").default;
4
+ };
3
5
  filtersQueries: {
4
6
  equal: string;
5
7
  notEqual: string;
@@ -71,7 +73,7 @@ declare const ReportingUtils: {
71
73
  widget: string;
72
74
  data: {
73
75
  values: {
74
- label: any;
76
+ label: string;
75
77
  value: string;
76
78
  }[];
77
79
  };
@@ -276,11 +278,12 @@ declare const ReportingUtils: {
276
278
  gridKey: string;
277
279
  };
278
280
  convertReportingFormCompIntoGridComp(comp: any, columnSettings: any): any;
279
- convertReportingCalcSettingsIntoGridComp(columnSettings: any): any;
281
+ getCalcOperatorFieldArgs(columnSettings: any): any;
282
+ convertReportingCalcSettingsIntoGridComp(columnSettings: any, reportingConfig?: any): any;
280
283
  getPropertyFromFormId(formId: any): string;
281
284
  getDataPath(setting: any): string;
282
285
  getJoinedFormDataPathInJoinedObj(formId: any): string;
283
- getAggrOperatorNumberField(settings: any): {
286
+ getAggrOperatorNumberField(settings: any, reportingConfig?: any): {
284
287
  type: string;
285
288
  };
286
289
  _: any;
@@ -1,7 +1,8 @@
1
1
  export declare const _: any;
2
2
  export declare const valueTypes: any;
3
3
  export declare function convertReportingFormCompIntoGridComp(comp: any, columnSettings: any): any;
4
- export declare function convertReportingCalcSettingsIntoGridComp(columnSettings: any): any;
4
+ export declare function getCalcOperatorFieldArgs(columnSettings: any): any;
5
+ export declare function convertReportingCalcSettingsIntoGridComp(columnSettings: any, reportingConfig?: any): any;
5
6
  export declare function getPropertyFromFormId(formId: any): string;
6
7
  export declare function getDataPath(setting: any): string;
7
8
  export declare function getJoinedFormDataPathInJoinedObj(formId: any): string;
@@ -11,6 +12,6 @@ export declare const defaultColumns: {
11
12
  component: any;
12
13
  submissionRootPath: boolean;
13
14
  }[];
14
- export declare function getAggrOperatorNumberField(settings: any): {
15
+ export declare function getAggrOperatorNumberField(settings: any, reportingConfig?: any): {
15
16
  type: string;
16
17
  };
package/package.json CHANGED
@@ -1 +1,74 @@
1
- {"name":"@formio/reporting","version":"2.0.0-rc.3","description":"Reporting components for form.io","main":"reporting.js","module":"node","scripts":{"watch":"tsc -w","build:style":"node-sass ./src/sass/reporting.scss ./dist/reporting.css","build:dist":"rm -rf lib && rm -rf dist && gulp licenseCheck && tsc && gulp templates && webpack --config=config/webpack.prod.js && gulp modifyPackage && yarn build:style","build:dev":"rm -rf lib && rm -rf dist && gulp licenseCheck && tsc && gulp templates && webpack --config=config/webpack.dev.js && gulp changeEntry && yarn build:style","build:portal":"rm -rf lib && rm -rf build && gulp licenseCheck:portal && tsc && gulp templates && webpack --config=config/webpack.portal.js && node-sass ./src/sass/reporting.scss ./build/reporting.css","build":"yarn build:portal && yarn build:dist","lint":"tslint -p .","release":"yarn build && yarn publish ./dist --access public"},"pre-commit":["lint"],"files":["*"],"repository":{"type":"git","url":"git+https://github.com/formio/reporting"},"keywords":["Form.io","components"],"license":"UNLICENSED","bugs":{"url":"https://github.com/formio/reporting/issues"},"homepage":"https://github.com/formio/reporting#readme","devDependencies":{"@formio/js":"^5.0.0-rc.38","@formio/license":"^1.4.2","@types/file-saver":"^2.0.5","@types/mocha":"^10.0.1","@types/node":"^20.1.5","chai":"^4.3.7","copy-webpack-plugin":"^9.0.1","ejsify":"^1.0.0","esm":"^3.2.25","gulp":"^4.0.2","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-template":"^5.0.0","javascript-obfuscator":"^4.0.2","jsdom":"^17.0.0","jsdom-global":"^3.0.2","mocha":"^10.2.0","node-sass":"^7.0.3","nyc":"^15.1.0","pre-commit":"^1.2.2","ts-node":"^10.9.1","ts-sinon":"^2.0.2","tslint":"^6.1.2","typescript":"5.1.6","webpack":"^5.88.1","webpack-cli":"^4.9.2","webpack-node-externals":"^3.0.0","webpack-obfuscator":"^3.5.1"},"peerDependencies":{"@formio/js":"^5.0.0-rc.38"},"dependencies":{"file-saver":"^2.0.5","jose":"^4.14.4","uuid":"^9.0.0"}}
1
+ {
2
+ "name": "@formio/reporting",
3
+ "version": "2.0.0-rc.7",
4
+ "description": "Reporting components for form.io",
5
+ "main": "reporting.js",
6
+ "scripts": {
7
+ "watch": "tsc -w",
8
+ "build:style": "node-sass ./src/sass/reporting.scss ./dist/reporting.css",
9
+ "build:dist": "rm -rf lib && rm -rf dist && gulp licenseCheck && tsc && gulp templates && webpack --config=config/webpack.prod.js && gulp modifyPackage && yarn build:style",
10
+ "build:dev": "rm -rf lib && rm -rf dist && gulp licenseCheck && tsc && gulp templates && webpack --config=config/webpack.dev.js && gulp changeEntry && yarn build:style",
11
+ "build:portal": "rm -rf lib && rm -f build/reporting.js && rm -f build/reporting.css && gulp licenseCheck:noCheck && tsc && gulp templates && gulp report-config-template && webpack --config=config/webpack.portal.js && node-sass ./src/sass/reporting.scss ./build/reporting.css",
12
+ "build:vm": "rm -rf lib && rm -f build/reporting.vm.js && gulp licenseCheck:noCheck && tsc && gulp templates && webpack --config=config/webpack.vm.js",
13
+ "build": "yarn build:portal && yarn build:vm && yarn build:dist",
14
+ "lint": "tslint -p .",
15
+ "release": "yarn build && yarn publish ./dist --access public"
16
+ },
17
+ "pre-commit": [
18
+ "lint"
19
+ ],
20
+ "files": [
21
+ "*"
22
+ ],
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/formio/reporting"
26
+ },
27
+ "keywords": [
28
+ "Form.io",
29
+ "components"
30
+ ],
31
+ "license": "UNLICENSED",
32
+ "bugs": {
33
+ "url": "https://github.com/formio/reporting/issues"
34
+ },
35
+ "reportConfigVersion": 5,
36
+ "homepage": "https://github.com/formio/reporting#readme",
37
+ "devDependencies": {
38
+ "@formio/js": "^5.0.0-rc.47",
39
+ "@formio/license": "github:formio/license#main",
40
+ "@types/file-saver": "^2.0.5",
41
+ "@types/mocha": "^10.0.1",
42
+ "@types/node": "^20.1.5",
43
+ "chai": "^4.3.7",
44
+ "copy-webpack-plugin": "^9.0.1",
45
+ "ejsify": "^1.0.0",
46
+ "esm": "^3.2.25",
47
+ "gulp": "^4.0.2",
48
+ "gulp-insert": "^0.5.0",
49
+ "gulp-rename": "^2.0.0",
50
+ "gulp-template": "^5.0.0",
51
+ "javascript-obfuscator": "^4.0.2",
52
+ "jsdom": "^17.0.0",
53
+ "jsdom-global": "^3.0.2",
54
+ "mocha": "^10.2.0",
55
+ "node-sass": "^7.0.3",
56
+ "nyc": "^15.1.0",
57
+ "pre-commit": "^1.2.2",
58
+ "request": "^2.88.2",
59
+ "ts-node": "^10.9.1",
60
+ "ts-sinon": "^2.0.2",
61
+ "tslint": "^6.1.2",
62
+ "typescript": "5.1.6",
63
+ "webpack": "^5.88.1",
64
+ "webpack-cli": "^4.9.2",
65
+ "webpack-node-externals": "^3.0.0",
66
+ "webpack-obfuscator": "^3.5.1"
67
+ },
68
+ "peerDependencies": {
69
+ "@formio/js": "^5.0.0-rc.47"
70
+ },
71
+ "dependencies": {
72
+ "file-saver": "^2.0.5"
73
+ }
74
+ }