Skip to content

Commit

Permalink
Add dashboard and fix all the graphs
Browse files Browse the repository at this point in the history
  • Loading branch information
mustafasaifee42 committed Aug 4, 2024
1 parent 4882b2a commit c8c0e0b
Show file tree
Hide file tree
Showing 83 changed files with 3,953 additions and 222 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"@typescript-eslint/no-explicit-any": 0,
"jsx-quotes": [2, "prefer-single"],
"no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }]
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
"no-console": ["error", { "allow": ["warn", "error"] }]
}
}
498 changes: 443 additions & 55 deletions package-lock.json

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@undp-data/undp-visualization-library",
"version": "0.0.38",
"version": "0.0.40",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -64,6 +64,8 @@
"dom-to-image": "^2.6.0",
"dom-to-svg": "^0.12.2",
"file-saver": "^2.0.5",
"lodash.flattendeep": "^4.4.0",
"lodash.intersection": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.max": "^4.0.1",
"lodash.maxby": "^4.6.0",
Expand All @@ -79,6 +81,8 @@
"pmtiles": "^3.0.6",
"react-csv": "^2.2.2",
"react-draggable": "^4.4.6",
"react-select": "^5.8.0",
"sanitize-html": "^2.13.0",
"simple-statistics": "^7.8.3",
"xlsx": "^0.18.5"
},
Expand All @@ -99,6 +103,8 @@
"@types/d3-zoom": "^3.0.3",
"@types/dom-to-image": "^2.6.4",
"@types/file-saver": "^2.0.5",
"@types/lodash.flattendeep": "^4.4.9",
"@types/lodash.intersection": "^4.4.9",
"@types/lodash.isequal": "^4.5.8",
"@types/lodash.max": "^4.0.7",
"@types/lodash.maxby": "^4.6.7",
Expand All @@ -114,6 +120,7 @@
"@types/react": "^18.0.27",
"@types/react-csv": "^1.1.3",
"@types/react-dom": "^18.0.10",
"@types/sanitize-html": "^2.11.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"@vitejs/plugin-react": "^3.1.0",
Expand Down
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,6 @@ The dependencies that are pre-installed wit the library:
* dom-to-svg - For downloading div as svg
* file-saver - For downloading files
* react-csv - For generating a csv file
* react-select - For dropdown select
* xlsx - For generating a xlsx file
* React (of course!)
Loading

0 comments on commit c8c0e0b

Please sign in to comment.