Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
matewilk committed Feb 21, 2025
1 parent e68427b commit c51cfaa
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 25 deletions.
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"private": true,
"name": "workload",
"version": "0.1.0",
"scripts": {
"start": "nr1 nerdpack:serve",
"test": "exit 0"
},
"nr1": {
"uuid": "24bad3f6-82bc-4db3-bed7-9c58343637e5"
},
"dependencies": {
"prop-types": "15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"recharts": "^2.15.1"
},
"browserslist": [
"last 2 versions",
"not ie < 11",
"not dead"
]
"private": true,
"name": "workload",
"version": "0.2.0",
"scripts": {
"start": "nr1 nerdpack:serve",
"test": "exit 0"
},
"nr1": {
"uuid": "24bad3f6-82bc-4db3-bed7-9c58343637e5"
},
"dependencies": {
"prop-types": "15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"recharts": "^2.15.1"
},
"browserslist": [
"last 2 versions",
"not ie < 11",
"not dead"
]
}
7 changes: 3 additions & 4 deletions visualizations/workload/context/VizPropsProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import React, { createContext, useContext, ReactNode } from "react";

// This has to be updated to match the keys in your config - for ts to give you type hints
type ConfigKeys =
| "accountId"
| "accountIdList"
| "query"
| "ignorePicker"
| "defaultSince"
| "fetchInterval";
| "warningThreshold"
| "criticalThreshold";

type VizProps = {
[key in ConfigKeys]: any;
Expand Down

0 comments on commit c51cfaa

Please sign in to comment.