Skip to content

Commit

Permalink
chore: update dependencies (#3323)
Browse files Browse the repository at this point in the history
* chore: update dependencies

* chore: fix stylelint
  • Loading branch information
hamed-musallam authored Jan 14, 2025
1 parent 6054d34 commit edbd91e
Show file tree
Hide file tree
Showing 10 changed files with 528 additions and 357 deletions.
812 changes: 510 additions & 302 deletions package-lock.json

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@
"react-dom": ">=18.0.0"
},
"dependencies": {
"@blueprintjs/core": "^5.16.2",
"@blueprintjs/icons": "^5.16.0",
"@blueprintjs/select": "^5.3.7",
"@blueprintjs/core": "^5.16.3",
"@blueprintjs/icons": "^5.17.0",
"@blueprintjs/select": "^5.3.8",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@hookform/resolvers": "^3.9.1",
"@hookform/resolvers": "^3.10.0",
"@lukeed/uuid": "^2.0.1",
"cheminfo-font": "^1.13.1",
"cheminfo-types": "^1.8.1",
Expand Down Expand Up @@ -89,12 +89,12 @@
"multiplet-analysis": "^2.1.5",
"nmr-correlation": "^2.3.3",
"nmr-load-save": "^2.4.0",
"nmr-processing": "^14.0.5",
"nmr-processing": "^15.1.0",
"nmredata": "^0.9.11",
"numeral": "^2.0.6",
"openchemlib": "^8.17.0",
"openchemlib-utils": "^6.5.1",
"papaparse": "^5.4.1",
"papaparse": "^5.5.1",
"re-resizable": "6.10.3",
"react-d3-utils": "^3.0.0",
"react-dropzone": "14.2.3",
Expand All @@ -121,17 +121,17 @@
"@playwright/test": "^1.49.1",
"@simbathesailor/use-what-changed": "^2.0.0",
"@types/d3": "^7.4.3",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.5",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.6",
"@types/papaparse": "^5.3.15",
"@types/react": "^18.3.13",
"@types/react-dom": "^18.3.1",
"@types/react-table": "^7.7.20",
"@vitejs/plugin-react-swc": "^3.7.2",
"@vitest/coverage-v8": "^2.1.8",
"cross-env": "^7.0.3",
"cspell": "^8.17.1",
"eslint": "^9.17.0",
"cspell": "^8.17.2",
"eslint": "^9.18.0",
"eslint-config-cheminfo-react": "^15.0.0",
"eslint-config-cheminfo-typescript": "^17.0.0",
"modern-normalize": "^3.0.1",
Expand All @@ -144,9 +144,9 @@
"rimraf": "^6.0.1",
"rollup-plugin-analyzer": "^4.0.0",
"serve": "^14.2.4",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "^5.7.2",
"stylelint": "^16.13.1",
"stylelint-config-standard": "^37.0.0",
"typescript": "^5.7.3",
"vite": "^5.4.11",
"vitest": "^2.1.8"
}
Expand Down
1 change: 0 additions & 1 deletion src/component/1d/FooterBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import useSpectrum from '../hooks/useSpectrum.js';
const styles = css`
display: flex;
align-items: center;
pointer-events: bounding-box;
user-select: none;
background-color: #f7f7f7;
height: 30px;
Expand Down
12 changes: 0 additions & 12 deletions src/component/1d/integral/IntegralResizable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@ import { useResizerStatus } from '../../hooks/useResizerStatus.js';
import { IntegralIndicator } from './IntegralIndicator.js';

const stylesOnHover = css`
pointer-events: bounding-box;
@document url-prefix("") {
pointer-events: fill;
}
.highlight {
fill: transparent;
}
Expand All @@ -28,12 +22,6 @@ const stylesOnHover = css`
`;

const stylesHighlighted = css`
pointer-events: bounding-box;
@document url-prefix("") {
pointer-events: fill;
}
fill: #ff6f0057;
.target {
Expand Down
16 changes: 3 additions & 13 deletions src/component/1d/multiAnalysis/AnalysisRange.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,6 @@ import { useHighlight } from '../../highlight/index.js';
import { useResizerStatus } from '../../hooks/useResizerStatus.js';

const styles = {
common: css`
pointer-events: bounding-box;
@document url-prefix("") {
pointer-events: fill;
}
`,
hover: css`
.delete-button {
visibility: hidden;
Expand Down Expand Up @@ -82,12 +75,9 @@ function AnalysisRange({
{({ x1, x2 }, isActive) => (
<g
transform={`translate(0,25)`}
css={[
styles.common,
highlight.isActive || isActive
? styles.Highlighted
: styles.hover,
]}
css={
highlight.isActive || isActive ? styles.Highlighted : styles.hover
}
>
<rect
x="0"
Expand Down
1 change: 0 additions & 1 deletion src/component/2d/FooterBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import { get1DYScale, get2DXScale, get2DYScale } from './utilities/scale.js';
const styles = css`
display: flex;
align-items: center;
pointer-events: bounding-box;
user-select: none;
background-color: #f7f7f7;
height: 30px;
Expand Down
12 changes: 0 additions & 12 deletions src/component/2d/zones/Zone.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@ import { useScale2DX, useScale2DY } from '../utilities/scale.js';
import Signal from './Signal.js';

const stylesOnHover = css`
pointer-events: bounding-box;
@document url-prefix("") {
pointer-events: fill;
}
user-select: none;
.delete-button {
Expand All @@ -30,12 +24,6 @@ const stylesOnHover = css`
`;

const stylesHighlighted = css`
pointer-events: bounding-box;
@document url-prefix("") {
pointer-events: fill;
}
.integral-area {
fill: #ff6f0057;
}
Expand Down
2 changes: 1 addition & 1 deletion src/component/elements/ColorInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const style = css`
}
.chrome-picker {
border-radius: none !important;
border-radius: 0 !important;
width: 200px !important;
height: 60px !important;
display: flex;
Expand Down
1 change: 0 additions & 1 deletion src/component/elements/MenuButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ const menuStyles = css`
border: none;
border-bottom: 0.55px solid whitesmoke;
height: 35px;
outline: outline;
display: table-cell;
vertical-align: middle;
text-align: left;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const style = css`
}
.sketch-picker {
border-radius: none !important;
border-radius: 0 !important;
box-shadow: none !important;
}
Expand Down

0 comments on commit edbd91e

Please sign in to comment.