Skip to content

Commit

Permalink
refactor(General): ♻️ Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bartoval committed Aug 5, 2024
1 parent cfa4ae3 commit 1770c56
Show file tree
Hide file tree
Showing 3 changed files with 150 additions and 163 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@
"@patternfly/react-core": "^5.3.4",
"@patternfly/react-icons": "^5.3.2",
"@patternfly/react-table": "5.3.4",
"@tanstack/react-query": "^5.51.15",
"axios": "^1.7.2",
"@tanstack/react-query": "^5.51.21",
"axios": "^1.7.3",
"date-fns": "^3.6.0",
"framer-motion": "^11.3.19",
"framer-motion": "^11.3.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-router-dom": "^6.25.1"
"react-router-dom": "^6.26.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
Expand All @@ -62,8 +62,8 @@
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"commitizen": "^4.3.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
Expand All @@ -74,11 +74,11 @@
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jest": "^28.7.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.1.3",
"husky": "^9.1.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.9.0",
Expand All @@ -87,7 +87,7 @@
"start-server-and-test": "^2.0.5",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.2.3",
"ts-jest": "^29.2.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"ts-prune": "^0.10.3",
Expand Down
4 changes: 2 additions & 2 deletions src/core/components/SkGraph/Graph.constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ export const NODE_LABEL_TEXT_COLOR = HexColors.Black900;
export const NODE_LABEL_BACKGROUND_COLOR = HexColors.White;
export const NODE_SELECT_BORDER = HexColors.DefaultHighLight;
export const NODE_HIGHLIGHT_BORDER = HexColors.DefaultHighLight;
export const NODE_BADGE_GROUP_ELEMENTS_BACKGROUND = HexColors.DefaultStatusBackground;
export const NODE_BADGE_GROUP_ELEMENTS_TEXT = HexColors.DefaultStatusText;
export const NODE_BADGE_GROUP_ELEMENTS_BACKGROUND = HexColors.Black500;
export const NODE_BADGE_GROUP_ELEMENTS_TEXT = HexColors.White;

export const EDGE_LINE_COLOR = HexColors.DefaultEdge;
export const EDGE_TERMINAL_COLOR = HexColors.DefaultEdge;
Expand Down
Loading

0 comments on commit 1770c56

Please sign in to comment.