Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: plouc/nivo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.77.0
Choose a base ref
...
head repository: plouc/nivo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.78.0
Choose a head ref

Commits on Dec 31, 2021

  1. feat(network): improve stories

    plouc committed Dec 31, 2021
    Copy the full SHA
    8faac86 View commit details

Commits on Jan 1, 2022

  1. Copy the full SHA
    16c316b View commit details
  2. Copy the full SHA
    458ba58 View commit details
  3. Copy the full SHA
    a992666 View commit details
  4. Copy the full SHA
    ebf01a1 View commit details
  5. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    90210e4 View commit details
  6. feat(chord): update stories

    plouc committed Jan 1, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    73467c9 View commit details
  7. feat(chord): init unit tests

    plouc committed Jan 1, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    7c1d39b View commit details
  8. Copy the full SHA
    7c3e7a7 View commit details
  9. Copy the full SHA
    00d839e View commit details
  10. Copy the full SHA
    5469cc9 View commit details
  11. Copy the full SHA
    36914f2 View commit details

Commits on Jan 2, 2022

  1. Copy the full SHA
    1795f71 View commit details
  2. Copy the full SHA
    7b5b393 View commit details
  3. Copy the full SHA
    7213ca0 View commit details
  4. Copy the full SHA
    0fdd685 View commit details
  5. Copy the full SHA
    a7a4400 View commit details
  6. Copy the full SHA
    8946b02 View commit details
  7. Copy the full SHA
    b45f0d1 View commit details
  8. Copy the full SHA
    ba6071a View commit details
  9. feat(treemap): add unit tests

    plouc committed Jan 2, 2022
    Copy the full SHA
    64628e1 View commit details
  10. v0.78.0

    plouc committed Jan 2, 2022
    Copy the full SHA
    1669355 View commit details
Showing with 4,264 additions and 3,203 deletions.
  1. +33 −1 CHANGELOG.md
  2. +2 −2 api/package.json
  3. +2 −2 examples/codesandbox/src/charts/Chord.tsx
  4. +5 −3 examples/codesandbox/src/charts/TreeMap.tsx
  5. +1 −1 lerna.json
  6. +4 −4 packages/annotations/package.json
  7. +4 −4 packages/arcs/package.json
  8. +4 −4 packages/axes/package.json
  9. +9 −9 packages/bar/package.json
  10. +7 −7 packages/bullet/package.json
  11. +8 −8 packages/bump/package.json
  12. +5 −5 packages/calendar/package.json
  13. +0 −108 packages/chord/index.d.ts
  14. +13 −13 packages/chord/package.json
  15. +117 −90 packages/chord/src/{Chord.js → Chord.tsx}
  16. +0 −87 packages/chord/src/ChordArc.js
  17. +91 −0 packages/chord/src/ChordArc.tsx
  18. +0 −21 packages/chord/src/ChordArcTooltip.js
  19. +7 −0 packages/chord/src/ChordArcTooltip.tsx
  20. +0 −121 packages/chord/src/ChordArcs.js
  21. +99 −0 packages/chord/src/ChordArcs.tsx
  22. +0 −351 packages/chord/src/ChordCanvas.js
  23. +383 −0 packages/chord/src/ChordCanvas.tsx
  24. +0 −87 packages/chord/src/ChordLabels.js
  25. +117 −0 packages/chord/src/ChordLabels.tsx
  26. +0 −106 packages/chord/src/ChordRibbon.js
  27. +102 −0 packages/chord/src/ChordRibbon.tsx
  28. +0 −33 packages/chord/src/ChordRibbonTooltip.js
  29. +20 −0 packages/chord/src/ChordRibbonTooltip.tsx
  30. +0 −201 packages/chord/src/ChordRibbons.js
  31. +147 −0 packages/chord/src/ChordRibbons.tsx
  32. +0 −10 packages/chord/src/ResponsiveChord.js
  33. +9 −0 packages/chord/src/ResponsiveChord.tsx
  34. +0 −10 packages/chord/src/ResponsiveChordCanvas.js
  35. +9 −0 packages/chord/src/ResponsiveChordCanvas.tsx
  36. +0 −54 packages/chord/src/compute.js
  37. +148 −0 packages/chord/src/compute.ts
  38. +81 −0 packages/chord/src/defaults.ts
  39. +0 −170 packages/chord/src/hooks.js
  40. +232 −0 packages/chord/src/hooks.ts
  41. +0 −7 packages/chord/src/index.js
  42. +8 −0 packages/chord/src/index.ts
  43. +0 −126 packages/chord/src/props.js
  44. +171 −0 packages/chord/src/types.ts
  45. +16 −9 packages/chord/stories/{chord.stories.js → chord.stories.tsx}
  46. +2 −0 packages/chord/tests/.eslintrc.yml
  47. +326 −0 packages/chord/tests/Chord.test.tsx
  48. +8 −0 packages/chord/tsconfig.json
  49. +5 −5 packages/circle-packing/package.json
  50. +3 −3 packages/colors/package.json
  51. +4 −5 packages/core/package.json
  52. +0 −1 packages/core/src/props/index.js
  53. +0 −24 packages/core/src/props/treeMap.js
  54. +2 −2 packages/express/package.json
  55. +6 −6 packages/funnel/package.json
  56. +1 −1 packages/generators/package.json
  57. +13 −2 packages/generators/src/index.ts
  58. +6 −6 packages/geo/package.json
  59. +6 −6 packages/heatmap/package.json
  60. +3 −3 packages/legends/package.json
  61. +10 −10 packages/line/package.json
  62. +6 −6 packages/marimekko/package.json
  63. +6 −6 packages/network/package.json
  64. +28 −25 packages/network/stories/network.stories.tsx
  65. +19 −21 packages/network/stories/networkCanvas.stories.tsx
  66. +6 −6 packages/parallel-coordinates/package.json
  67. +7 −7 packages/pie/package.json
  68. +5 −5 packages/polar-axes/package.json
  69. +6 −6 packages/radar/package.json
  70. +9 −9 packages/radial-bar/package.json
  71. +1 −1 packages/recompose/package.json
  72. +6 −6 packages/sankey/package.json
  73. +1 −1 packages/scales/package.json
  74. +10 −10 packages/scatterplot/package.json
  75. +15 −15 packages/static/package.json
  76. +8 −9 packages/static/src/mappings/chord.ts
  77. +9 −2 packages/static/src/mappings/treemap.ts
  78. +2 −2 packages/static/src/samples/index.ts
  79. +8 −8 packages/stream/package.json
  80. +6 −6 packages/sunburst/package.json
  81. +10 −10 packages/swarmplot/package.json
  82. +3 −3 packages/tooltip/package.json
  83. +0 −114 packages/treemap/index.d.ts
  84. +8 −8 packages/treemap/package.json
  85. +0 −18 packages/treemap/src/ResponsiveTreeMap.js
  86. +11 −0 packages/treemap/src/ResponsiveTreeMap.tsx
  87. +0 −18 packages/treemap/src/ResponsiveTreeMapCanvas.js
  88. +11 −0 packages/treemap/src/ResponsiveTreeMapCanvas.tsx
  89. +0 −18 packages/treemap/src/ResponsiveTreeMapHtml.js
  90. +11 −0 packages/treemap/src/ResponsiveTreeMapHtml.tsx
  91. +0 −118 packages/treemap/src/TreeMap.js
  92. +169 −0 packages/treemap/src/TreeMap.tsx
  93. +73 −53 packages/treemap/src/{TreeMapCanvas.js → TreeMapCanvas.tsx}
  94. +0 −115 packages/treemap/src/TreeMapHtml.js
  95. +156 −0 packages/treemap/src/TreeMapHtml.tsx
  96. +19 −24 packages/treemap/src/{TreeMapHtmlNode.js → TreeMapHtmlNode.tsx}
  97. +19 −24 packages/treemap/src/{TreeMapNode.js → TreeMapNode.tsx}
  98. +0 −34 packages/treemap/src/TreeMapNodeTooltip.js
  99. +11 −0 packages/treemap/src/TreeMapNodeTooltip.tsx
  100. +0 −120 packages/treemap/src/TreeMapNodes.js
  101. +124 −0 packages/treemap/src/TreeMapNodes.tsx
  102. +77 −0 packages/treemap/src/defaults.ts
  103. +0 −280 packages/treemap/src/hooks.js
  104. +353 −0 packages/treemap/src/hooks.ts
  105. +0 −15 packages/treemap/src/index.js
  106. +10 −0 packages/treemap/src/index.ts
  107. +0 −126 packages/treemap/src/props.js
  108. +17 −0 packages/treemap/src/tiling.ts
  109. +32 −0 packages/treemap/src/transitions.ts
  110. +206 −0 packages/treemap/src/types.ts
  111. +1 −0 packages/treemap/stories/{treemap.stories.js → treemap.stories.tsx}
  112. +1 −0 packages/treemap/stories/{treemapHtml.stories.js → treemapHtml.stories.tsx}
  113. +5 −0 packages/treemap/tests/.eslintrc.yml
  114. +260 −0 packages/treemap/tests/TreeMap.test.tsx
  115. +8 −0 packages/treemap/tsconfig.json
  116. +3 −3 packages/voronoi/package.json
  117. +7 −7 packages/waffle/package.json
  118. +2 −0 tsconfig.monorepo.json
  119. +30 −30 website/package.json
  120. +6 −0 website/src/@types/file_types.d.ts
  121. +2 −3 website/src/components/components/api-client/ApiClient.tsx
  122. +2 −3 website/src/components/components/api-client/ApiTabs.tsx
  123. +1 −1 website/src/components/home/Home.js
  124. +6 −5 website/src/components/home/{HomeChord.js → HomeChord.tsx}
  125. +0 −2 website/src/components/home/{styled.js → styled.ts}
  126. +13 −12 website/src/components/icons/{ChordIcon.js → ChordIcon.tsx}
  127. +2 −2 website/src/components/icons/Icons.js
  128. +1 −1 website/src/components/icons/NetworkIcon.tsx
  129. +3 −4 website/src/components/icons/{TreeMapIcon.js → TreeMapIcon.tsx}
  130. +3 −1 website/src/data/components/chord/meta.yml
  131. +41 −29 website/src/data/components/chord/props.ts
  132. +1 −1 website/src/data/components/treemap/generator.ts
  133. +27 −16 website/src/data/components/treemap/props.ts
  134. +2 −2 website/src/pages/chord/api.tsx
  135. +8 −8 website/src/pages/chord/{canvas.js → canvas.tsx}
  136. +11 −11 website/src/pages/chord/{index.js → index.tsx}
  137. +20 −21 website/src/pages/treemap/api.tsx
  138. +18 −18 website/src/pages/treemap/{canvas.js → canvas.tsx}
  139. +24 −22 website/src/pages/treemap/{html.js → html.tsx}
  140. +24 −24 website/src/pages/treemap/{index.js → index.tsx}
  141. +5 −0 yarn.lock
34 changes: 33 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
<a name="v0.78.0"></a>
## v0.78.0 (2022-01-02)


#### Features

* **chord:**
* fix various hooks dependencies issues ([5469cc9f](https://github.com/plouc/nivo/commit/5469cc9fb783f90c3872120a140553013a1f1136))
* add tests for active/inactive arcs & ribbons ([00d839ec](https://github.com/plouc/nivo/commit/00d839ecbd2387d9c513e124e9ae7525f08c9f36))
* rename properties related to active/inactive styles ([7c3e7a7a](https://github.com/plouc/nivo/commit/7c3e7a7ab68ee2f6a667a788221c100340fa51f0))
* init unit tests ([7c1d39b6](https://github.com/plouc/nivo/commit/7c1d39b68398d86a3da993ea55570c4ab8e9a0d1))
* update stories ([73467c9d](https://github.com/plouc/nivo/commit/73467c9d939dba10906b3d2688a9bf0b360f64f1))
* adjust website icon and home demo according to the new API ([90210e4d](https://github.com/plouc/nivo/commit/90210e4d0577730255c81e22bb95da2040ed69e5))
* migrate arc transitions to react-spring ([ebf01a18](https://github.com/plouc/nivo/commit/ebf01a18174c36b5fa7e3296b9428fa2791e052b))
* fix static mapping used for the http API ([a9926666](https://github.com/plouc/nivo/commit/a99266669ec3cec79e8e2c31ea3b9843a608bd55))
* migrate ribbons and arcs transitions to react-spring ([458ba58b](https://github.com/plouc/nivo/commit/458ba58b2b01245284970c2a7740cee78b17862a))
* init TypeScript migration ([16c316b7](https://github.com/plouc/nivo/commit/16c316b7e15a57f314a3f9a7230630869b75c427))
* **network:** improve stories ([8faac86a](https://github.com/plouc/nivo/commit/8faac86aaa9da630e398d620e4b8a4a33b82a2ab))
* **treemap:**
* add unit tests ([64628e1f](https://github.com/plouc/nivo/commit/64628e1f1215f976db4c53d66a574e286b87b7f7))
* fix html parent label interpolation ([ba6071a3](https://github.com/plouc/nivo/commit/ba6071a334bc657afda369e9c07ce4657c1fdfd7))
* add support for custom layers to SVG and canvas implementations ([b45f0d11](https://github.com/plouc/nivo/commit/b45f0d116c06dbc4b8129f639fdd25e40ab15a39))
* adjust website according to new typings ([8946b02f](https://github.com/plouc/nivo/commit/8946b02fe312ef7007c4679179dde994670eda60))
* fix static mapping and sample ([a7a44000](https://github.com/plouc/nivo/commit/a7a4400076e151b21ea5828e5227a7ae5945b774))
* datum now just extends object ([0fdd6854](https://github.com/plouc/nivo/commit/0fdd6854cc03a221022facbce2754fdd263f51a1))
* add support for basic aria attributes to all flavors ([7213ca05](https://github.com/plouc/nivo/commit/7213ca0586076cd8bc5764f01009340c7730102a))
* fix static mapping and sample ([7b5b3939](https://github.com/plouc/nivo/commit/7b5b3939d53c14c3363001f0e1b3a9caeb632c32))
* migrate the package to TypeScript ([1795f712](https://github.com/plouc/nivo/commit/1795f7126f74f059573c8dfff17dbc221a7b251d))
* **website:** fix api client layout ([36914f28](https://github.com/plouc/nivo/commit/36914f28a29b07e548f352db6f15d80e6bdd542d))



<a name="v0.77.0"></a>
## v0.77.0 (2021-12-31)
## v0.77.0 (%cs)


#### Features
4 changes: 2 additions & 2 deletions api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nivo/api",
"version": "0.77.0",
"version": "0.78.0",
"private": true,
"description": "Rendering API for nivo dataviz React/d3 components",
"main": "src/app.js",
@@ -22,7 +22,7 @@
"nodemon": "^1.18.10"
},
"dependencies": {
"@nivo/express": "0.77.0",
"@nivo/express": "0.78.0",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
4 changes: 2 additions & 2 deletions examples/codesandbox/src/charts/Chord.tsx
Original file line number Diff line number Diff line change
@@ -11,8 +11,8 @@ export function Chord() {
const [data, flavor] = useChart(() => generateChordData({ size: 7 }))

if (flavor === 'canvas') {
return <ResponsiveChordCanvas {...data} {...props} />
return <ResponsiveChordCanvas {...props} data{data.matrix} keys={data.keys} />
}

return <ResponsiveChord {...data} {...props} />
return <ResponsiveChord {...props} data{data.matrix} keys={data.keys} />
}
8 changes: 5 additions & 3 deletions examples/codesandbox/src/charts/TreeMap.tsx
Original file line number Diff line number Diff line change
@@ -13,15 +13,17 @@ const props = {
valueFormat: '.02s',
}

type Datum = ReturnType<typeof generateLibTree>

export function TreeMap() {
const [data, flavor] = useChart(generateLibTree)

switch (flavor) {
case 'canvas':
return <ResponsiveTreeMapCanvas data={data} {...props} />
return <ResponsiveTreeMapCanvas<Datum> data={data} {...props} />
case 'html':
return <ResponsiveTreeMapHtml data={data} {...props} />
return <ResponsiveTreeMapHtml<Datum> data={data} {...props} />
case 'svg':
return <ResponsiveTreeMap data={data} {...props} />
return <ResponsiveTreeMap<Datum> data={data} {...props} />
}
}
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
"packages/*",
"api"
],
"version": "0.77.0",
"version": "0.78.0",
"npmClient": "yarn",
"useWorkspaces": true
}
8 changes: 4 additions & 4 deletions packages/annotations/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nivo/annotations",
"version": "0.77.0",
"version": "0.78.0",
"license": "MIT",
"author": {
"name": "Raphaël Benitte",
@@ -28,15 +28,15 @@
"!dist/tsconfig.tsbuildinfo"
],
"dependencies": {
"@nivo/colors": "0.77.0",
"@nivo/colors": "0.78.0",
"@react-spring/web": "9.3.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@nivo/core": "0.77.0"
"@nivo/core": "0.78.0"
},
"peerDependencies": {
"@nivo/core": "0.77.0",
"@nivo/core": "0.78.0",
"react": ">= 16.14.0 < 18.0.0"
},
"publishConfig": {
8 changes: 4 additions & 4 deletions packages/arcs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nivo/arcs",
"version": "0.77.0",
"version": "0.78.0",
"license": "MIT",
"author": {
"name": "Raphaël Benitte",
@@ -28,16 +28,16 @@
"!dist/tsconfig.tsbuildinfo"
],
"dependencies": {
"@nivo/colors": "0.77.0",
"@nivo/colors": "0.78.0",
"@react-spring/web": "9.3.1",
"d3-shape": "^1.3.5"
},
"devDependencies": {
"@nivo/core": "0.77.0",
"@nivo/core": "0.78.0",
"@types/d3-shape": "^2.0.0"
},
"peerDependencies": {
"@nivo/core": "0.77.0",
"@nivo/core": "0.78.0",
"react": ">= 16.14.0 < 18.0.0"
},
"publishConfig": {
8 changes: 4 additions & 4 deletions packages/axes/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nivo/axes",
"version": "0.77.0",
"version": "0.78.0",
"license": "MIT",
"author": {
"name": "Raphaël Benitte",
@@ -27,18 +27,18 @@
"!dist/tsconfig.tsbuildinfo"
],
"dependencies": {
"@nivo/scales": "0.77.0",
"@nivo/scales": "0.78.0",
"@react-spring/web": "9.3.1",
"d3-format": "^1.4.4",
"d3-time-format": "^3.0.0"
},
"devDependencies": {
"@nivo/core": "0.77.0",
"@nivo/core": "0.78.0",
"@types/d3-format": "^1.4.1",
"@types/d3-time-format": "^2.3.1"
},
"peerDependencies": {
"@nivo/core": "0.77.0",
"@nivo/core": "0.78.0",
"prop-types": ">= 15.5.10 < 16.0.0",
"react": ">= 16.14.0 < 18.0.0"
},
18 changes: 9 additions & 9 deletions packages/bar/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nivo/bar",
"version": "0.77.0",
"version": "0.78.0",
"license": "MIT",
"author": {
"name": "Raphaël Benitte",
@@ -29,22 +29,22 @@
"!dist/tsconfig.tsbuildinfo"
],
"dependencies": {
"@nivo/annotations": "0.77.0",
"@nivo/axes": "0.77.0",
"@nivo/colors": "0.77.0",
"@nivo/legends": "0.77.0",
"@nivo/scales": "0.77.0",
"@nivo/tooltip": "0.77.0",
"@nivo/annotations": "0.78.0",
"@nivo/axes": "0.78.0",
"@nivo/colors": "0.78.0",
"@nivo/legends": "0.78.0",
"@nivo/scales": "0.78.0",
"@nivo/tooltip": "0.78.0",
"@react-spring/web": "9.3.1",
"d3-scale": "^3.2.3",
"d3-shape": "^1.2.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@nivo/core": "0.77.0"
"@nivo/core": "0.78.0"
},
"peerDependencies": {
"@nivo/core": "0.77.0",
"@nivo/core": "0.78.0",
"react": ">= 16.14.0 < 18.0.0"
},
"publishConfig": {
14 changes: 7 additions & 7 deletions packages/bullet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nivo/bullet",
"version": "0.77.0",
"version": "0.78.0",
"license": "MIT",
"author": {
"name": "Raphaël Benitte",
@@ -29,17 +29,17 @@
"!dist/tsconfig.tsbuildinfo"
],
"dependencies": {
"@nivo/axes": "0.77.0",
"@nivo/colors": "0.77.0",
"@nivo/legends": "0.77.0",
"@nivo/tooltip": "0.77.0",
"@nivo/axes": "0.78.0",
"@nivo/colors": "0.78.0",
"@nivo/legends": "0.78.0",
"@nivo/tooltip": "0.78.0",
"@react-spring/web": "9.3.1"
},
"devDependencies": {
"@nivo/core": "0.77.0"
"@nivo/core": "0.78.0"
},
"peerDependencies": {
"@nivo/core": "0.77.0",
"@nivo/core": "0.78.0",
"react": ">= 16.14.0 < 18.0.0"
},
"publishConfig": {
16 changes: 8 additions & 8 deletions packages/bump/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nivo/bump",
"version": "0.77.0",
"version": "0.78.0",
"license": "MIT",
"author": {
"name": "Raphaël Benitte",
@@ -30,19 +30,19 @@
"!dist/tsconfig.tsbuildinfo"
],
"dependencies": {
"@nivo/axes": "0.77.0",
"@nivo/colors": "0.77.0",
"@nivo/legends": "0.77.0",
"@nivo/scales": "0.77.0",
"@nivo/tooltip": "0.77.0",
"@nivo/axes": "0.78.0",
"@nivo/colors": "0.78.0",
"@nivo/legends": "0.78.0",
"@nivo/scales": "0.78.0",
"@nivo/tooltip": "0.78.0",
"@react-spring/web": "9.3.1",
"d3-shape": "^1.3.5"
},
"devDependencies": {
"@nivo/core": "0.77.0"
"@nivo/core": "0.78.0"
},
"peerDependencies": {
"@nivo/core": "0.77.0",
"@nivo/core": "0.78.0",
"react": ">= 16.14.0 < 18.0.0"
},
"publishConfig": {
10 changes: 5 additions & 5 deletions packages/calendar/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nivo/calendar",
"version": "0.77.0",
"version": "0.78.0",
"license": "MIT",
"author": {
"name": "Raphaël Benitte",
@@ -29,18 +29,18 @@
"!dist/tsconfig.tsbuildinfo"
],
"dependencies": {
"@nivo/legends": "0.77.0",
"@nivo/tooltip": "0.77.0",
"@nivo/legends": "0.78.0",
"@nivo/tooltip": "0.78.0",
"d3-scale": "^3.2.3",
"d3-time": "^1.0.10",
"d3-time-format": "^3.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@nivo/core": "0.77.0"
"@nivo/core": "0.78.0"
},
"peerDependencies": {
"@nivo/core": "0.77.0",
"@nivo/core": "0.78.0",
"react": ">= 16.14.0 < 18.0.0"
},
"publishConfig": {
Loading