From 65258f07a96febe44825f40d7dd6e46e7c19eb1c Mon Sep 17 00:00:00 2001 From: evac-tcxr Date: Thu, 27 Jun 2024 14:44:33 -0400 Subject: [PATCH] changes --- package.json | 2 +- src/components/Graph/constants.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 9e64412..37e8172 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@weng-lab/psychscreen-ui-components", "description": "Typescript and Material UI based components used for psychSCREEN", "author": "SCREEN Team @ UMass Chan Medical School", - "version": "0.8.8", + "version": "0.8.9", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/src/components/Graph/constants.ts b/src/components/Graph/constants.ts index d457cd4..fcda092 100644 --- a/src/components/Graph/constants.ts +++ b/src/components/Graph/constants.ts @@ -11,6 +11,7 @@ export const cCREConstants = { "Lower-Expression": { label: "Edge", color: "#000000" }, "Higher-Expression": { label: "Edge", color: "#0000FF" }, "Edge": { label: "Edge", color: "grey"}, + "Low DNase": { label: "Low DNase", color: "#e1e1e1"}, }; export type cCREClass = keyof typeof cCREConstants;