@hisptz/dhis2-analytics 2.1.34 → 2.1.36
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/dist/package.json +60 -61
- package/package.json +14 -8
package/dist/package.json
CHANGED
|
@@ -1,63 +1,62 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
}
|
|
2
|
+
"name": "@hisptz/dhis2-analytics",
|
|
3
|
+
"version": "2.1.28",
|
|
4
|
+
"main": "./dist/index.js",
|
|
5
|
+
"module": "./dist/esm/index.js",
|
|
6
|
+
"types": "./dist/types/index.d.ts",
|
|
7
|
+
"typings": "./dist/types/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
"import": "./dist/esm/index.js",
|
|
10
|
+
"require": "./dist/index.js",
|
|
11
|
+
"types": "./dist/types/index.d.ts"
|
|
12
|
+
},
|
|
13
|
+
"sideEffects": false,
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"files": ["dist/**", "package.json"],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "tsup && tsc",
|
|
18
|
+
"dev": "tsup --watch",
|
|
19
|
+
"lint": "eslint . --max-warnings 0",
|
|
20
|
+
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@hisptz/dhis2-ui": "workspace:*",
|
|
24
|
+
"@hisptz/dhis2-utils": "workspace:*",
|
|
25
|
+
"@react-leaflet/core": "^2.1.0",
|
|
26
|
+
"@react-pdf/renderer": "^4.0.0",
|
|
27
|
+
"@tanstack/react-table": "^8.19.3",
|
|
28
|
+
"async-es": "^3.2.5",
|
|
29
|
+
"d3-color": "^3.1.0",
|
|
30
|
+
"d3-scale": "^4.0.2",
|
|
31
|
+
"file-saver": "^2.0.5",
|
|
32
|
+
"geolib": "^3.3.4",
|
|
33
|
+
"jotai-devtools": "^0.10.1",
|
|
34
|
+
"leaflet": "^1.9.4",
|
|
35
|
+
"leaflet-easyprint": "^2.1.9",
|
|
36
|
+
"leaflet.fullscreen": "^4.0.0",
|
|
37
|
+
"luxon": "^3.4.4",
|
|
38
|
+
"react-circular-progressbar": "^2.1.0",
|
|
39
|
+
"react-dnd": "^16.0.1",
|
|
40
|
+
"react-dnd-html5-backend": "^16.0.1",
|
|
41
|
+
"react-error-boundary": "^4.0.12",
|
|
42
|
+
"react-helmet": "^6.1.0",
|
|
43
|
+
"react-leaflet": "^4.2.1",
|
|
44
|
+
"react-leaflet-custom-control": "^1.4.0",
|
|
45
|
+
"react-spring": "^9.6.1",
|
|
46
|
+
"react-to-print": "^3.0.1",
|
|
47
|
+
"screenfull": "^6.0.2",
|
|
48
|
+
"xlsx": "^0.18.5"
|
|
49
|
+
},
|
|
50
|
+
"peerDependencies": {
|
|
51
|
+
"@dhis2/app-runtime": ">=3",
|
|
52
|
+
"@tanstack/react-query": ">=4",
|
|
53
|
+
"classnames": ">=2",
|
|
54
|
+
"highcharts": ">=12",
|
|
55
|
+
"highcharts-react-official": ">=3",
|
|
56
|
+
"lodash": "^4",
|
|
57
|
+
"zod": "^3"
|
|
58
|
+
},
|
|
59
|
+
"publishConfig": {
|
|
60
|
+
"access": "public"
|
|
61
|
+
}
|
|
63
62
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hisptz/dhis2-analytics",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.36",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/esm/index.js",
|
|
6
6
|
"types": "./dist/types/index.d.ts",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"package.json"
|
|
18
18
|
],
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@dhis2/app-runtime": "^3.
|
|
20
|
+
"@dhis2/app-runtime": "^3.16.0",
|
|
21
21
|
"@dhis2/d2-i18n": "^1.1.3",
|
|
22
22
|
"@dhis2/ui": "^10.9.1",
|
|
23
23
|
"@google/earthengine": "^1.5.21",
|
|
@@ -76,18 +76,24 @@
|
|
|
76
76
|
"react-to-print": "^3.0.1",
|
|
77
77
|
"screenfull": "^6.0.2",
|
|
78
78
|
"xlsx": "^0.18.5",
|
|
79
|
-
"@hisptz/dhis2-
|
|
80
|
-
"@hisptz/dhis2-
|
|
79
|
+
"@hisptz/dhis2-utils": "2.0.19",
|
|
80
|
+
"@hisptz/dhis2-ui": "2.0.52"
|
|
81
81
|
},
|
|
82
82
|
"peerDependencies": {
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
83
|
+
"@dhis2/app-runtime": ">=3",
|
|
84
|
+
"@tanstack/react-query": ">=4",
|
|
85
|
+
"classnames": ">=2",
|
|
86
|
+
"highcharts": ">=12",
|
|
87
|
+
"highcharts-react-official": ">=3",
|
|
86
88
|
"lodash": "^4",
|
|
87
89
|
"zod": "^3"
|
|
88
90
|
},
|
|
89
91
|
"publishConfig": {
|
|
90
|
-
"access": "public"
|
|
92
|
+
"access": "public",
|
|
93
|
+
"provenance": true
|
|
94
|
+
},
|
|
95
|
+
"repository": {
|
|
96
|
+
"url": "https://github.com/hisptz/dhis2-utils"
|
|
91
97
|
},
|
|
92
98
|
"scripts": {
|
|
93
99
|
"build": "tsup && tsc",
|