@formio/reporting 2.0.1-rc.6 → 2.0.1-rc.8
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/lib/index.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
+
import Report from './Report';
|
|
2
|
+
import ReportingUtils from './utils';
|
|
1
3
|
import * as ReportingConfigUtils from './utils/configurationFormUtils';
|
|
4
|
+
export { Report, ReportingUtils };
|
|
2
5
|
declare const _default: {
|
|
3
6
|
components: {
|
|
4
7
|
reportingcontrols: typeof import("./components/ReportingControls/ReportingControls").default;
|
package/lib/utils/index.d.ts
CHANGED
|
@@ -1,16 +1,3 @@
|
|
|
1
|
-
/// <reference types="lodash" />
|
|
2
|
-
/// <reference types="lodash" />
|
|
3
|
-
/// <reference types="lodash" />
|
|
4
|
-
/// <reference types="lodash" />
|
|
5
|
-
/// <reference types="lodash" />
|
|
6
|
-
/// <reference types="lodash" />
|
|
7
|
-
/// <reference types="lodash" />
|
|
8
|
-
/// <reference types="lodash" />
|
|
9
|
-
/// <reference types="lodash" />
|
|
10
|
-
/// <reference types="lodash" />
|
|
11
|
-
/// <reference types="lodash" />
|
|
12
|
-
/// <reference types="lodash" />
|
|
13
|
-
/// <reference types="lodash" />
|
|
14
1
|
declare const ReportingUtils: {
|
|
15
2
|
FilterOperators: {
|
|
16
3
|
[x: string]: typeof import("@formio/js/lib/cjs/utils/conditionOperators/IsEqualTo").default | typeof import("@formio/js/lib/cjs/utils/conditionOperators/DateGreaterThan").default;
|
|
@@ -79,6 +66,7 @@ declare const ReportingUtils: {
|
|
|
79
66
|
valueProperty?: undefined;
|
|
80
67
|
dataType?: undefined;
|
|
81
68
|
data?: undefined;
|
|
69
|
+
customDefaultValue?: undefined;
|
|
82
70
|
})[];
|
|
83
71
|
};
|
|
84
72
|
getSingleFilterOperators(): string[];
|
package/lib/utils/utils.d.ts
CHANGED
|
@@ -1,16 +1,3 @@
|
|
|
1
|
-
/// <reference types="lodash" />
|
|
2
|
-
/// <reference types="lodash" />
|
|
3
|
-
/// <reference types="lodash" />
|
|
4
|
-
/// <reference types="lodash" />
|
|
5
|
-
/// <reference types="lodash" />
|
|
6
|
-
/// <reference types="lodash" />
|
|
7
|
-
/// <reference types="lodash" />
|
|
8
|
-
/// <reference types="lodash" />
|
|
9
|
-
/// <reference types="lodash" />
|
|
10
|
-
/// <reference types="lodash" />
|
|
11
|
-
/// <reference types="lodash" />
|
|
12
|
-
/// <reference types="lodash" />
|
|
13
|
-
/// <reference types="lodash" />
|
|
14
1
|
import { Utils } from '@formio/js';
|
|
15
2
|
export declare const _: Utils._.LoDashStatic;
|
|
16
3
|
export declare const valueTypes: any;
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@formio/reporting",
|
|
3
|
-
"version": "2.0.1-rc.
|
|
3
|
+
"version": "2.0.1-rc.8",
|
|
4
4
|
"description": "Reporting components for form.io",
|
|
5
5
|
"main": "reporting.js",
|
|
6
|
+
"types": "lib/index.d.ts",
|
|
6
7
|
"scripts": {
|
|
7
8
|
"watch": "tsc -w",
|
|
8
9
|
"build:style": "node-sass ./src/sass/reporting.scss ./dist/reporting.css",
|
|
@@ -36,7 +37,7 @@
|
|
|
36
37
|
"homepage": "https://github.com/formio/reporting#readme",
|
|
37
38
|
"devDependencies": {
|
|
38
39
|
"@formio/js": "^5.0.0",
|
|
39
|
-
"@formio/license": "2.0.0-rc.
|
|
40
|
+
"@formio/license": "^2.0.0-rc.13",
|
|
40
41
|
"@types/file-saver": "^2.0.5",
|
|
41
42
|
"@types/mocha": "^10.0.1",
|
|
42
43
|
"@types/node": "^20.1.5",
|
|
@@ -60,7 +61,7 @@
|
|
|
60
61
|
"ts-node": "^10.9.1",
|
|
61
62
|
"ts-sinon": "^2.0.2",
|
|
62
63
|
"tslint": "^6.1.2",
|
|
63
|
-
"typescript": "5.
|
|
64
|
+
"typescript": "5.6.3",
|
|
64
65
|
"webpack": "^5.88.1",
|
|
65
66
|
"webpack-cli": "^4.9.2",
|
|
66
67
|
"webpack-node-externals": "^3.0.0",
|