diff --git a/packages/ui/Release.md b/packages/ui/Release.md index 060a7be2..0213480a 100644 --- a/packages/ui/Release.md +++ b/packages/ui/Release.md @@ -1,3 +1,6 @@ +### 10.15.0 2024-12-18 +- fix: FLUI-145 Add Venn chart + ### 10.14.6 2024-12-17 - fix: FLUI-61 facet default operator min and max not required diff --git a/packages/ui/package-lock.json b/packages/ui/package-lock.json index 3fdfc57a..806d3560 100644 --- a/packages/ui/package-lock.json +++ b/packages/ui/package-lock.json @@ -1,12 +1,12 @@ { "name": "@ferlab/ui", - "version": "10.14.6", + "version": "10.15.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@ferlab/ui", - "version": "10.14.6", + "version": "10.15.0", "license": "SEE LICENSE IN LICENSE", "dependencies": { "@ant-design/icons": "^4.7.0", diff --git a/packages/ui/package.json b/packages/ui/package.json index 6f7e618c..1cdac701 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@ferlab/ui", - "version": "10.14.6", + "version": "10.15.0", "description": "Core components for scientific research data portals", "publishConfig": { "access": "public" diff --git a/storybook/package-lock.json b/storybook/package-lock.json index c4674c92..25c2616a 100644 --- a/storybook/package-lock.json +++ b/storybook/package-lock.json @@ -47,7 +47,7 @@ }, "../packages/ui": { "name": "@ferlab/ui", - "version": "10.14.6", + "version": "10.15.0", "license": "SEE LICENSE IN LICENSE", "dependencies": { "@ant-design/icons": "^4.7.0", @@ -57,14 +57,13 @@ "@nivo/bar": "^0.87.0", "@nivo/core": "^0.87.0", "@nivo/pie": "^0.87.0", - "@nivo/scatterplot": "^0.87.0", - "@nivo/swarmplot": "^0.87.0", "@nivo/tooltip": "^0.87.0", "@react-spring/web": "^9.7.4", "antd-img-crop": "^4.2.4", "classnames": "^2.2.6", "command-line-args": "^5.1.1", "cross-spawn": "^7.0.3", + "d3": "^7.9.0", "d3-svg-to-png": "^0.3.1", "history": "^4.9.0", "less": "^4.1.0", @@ -88,6 +87,7 @@ "@testing-library/jest-dom": "^6.4.5", "@testing-library/react": "^16.0.0", "@types/classnames": "^2.2.11", + "@types/d3": "^7.4.3", "@types/jest": "^29.2.3", "@types/lodash": "^4.14.168", "@types/md5": "^2.3.2", diff --git a/storybook/stories/Components/Chart/venn.stories.tsx b/storybook/stories/Components/Chart/venn.stories.tsx index 8563800d..8560f077 100644 --- a/storybook/stories/Components/Chart/venn.stories.tsx +++ b/storybook/stories/Components/Chart/venn.stories.tsx @@ -68,13 +68,13 @@ export const VennChartWithTwoSets = () => ( operations={[ { alias: 'S₁', - operation: '(S₁)-(S₂∩S₃)', + operation: '(S₁)-(S₁∩S₂)', sqon, count: 900 }, { alias: 'S₂', - operation: '(S₂)-(S₁∩S₃)', + operation: '(S₂)-(S₁∩S₂)', sqon, count: 1100 },