-
-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Could not resolve #2374
Comments
@josuevalrob, dependencies were improperly expressed in previous versions, this should have been fixed by #2313. |
Thanks @plouc I just update dependencies to:
and now the only issue is related to proptypes:
What could be wrong? |
I don't know, the message is strange:
While you specified it in your deps, I don't have enough experience with yarn pnp, but I don't think it's directly related to nivo. |
I have a similar issue:
Using Next.JS 13.4.7: <ResponsiveTimeRange
data={data.flat()}
from={new Date(new Date().setMonth(0, 0))}
to={new Date(new Date().setMonth(11, 31))}
isInteractive={true}
/> Error:
|
@plouc would you prefer a separate issue for my problem? |
@Nxtmaster10, the last error regarding |
Fwiw: I had a similar issue and solved it by |
I have solved this problem by package extensions in packageExtensions:
"@nivo/core@*":
dependencies:
prop-types: "*"
'@nivo/tooltip': '*'
'@nivo/legends@*':
dependencies:
d3-scale: '*'
'@nivo/colors': '*' |
Fixed this problem adding: // next.config.js
experimental: {
esmExternals: 'loose',
}, |
This issue has been automatically marked as stale. If this issue is still affecting you, please leave any comment (for example, "bump"), and we'll keep it open. We are sorry that we haven't been able to prioritize it yet. If you have any new additional information, please include it with your comment! |
Describe/explain the bug
A clear and concise description of what the bug is.
Dependencies:
OUTPUT:
What am I missing?
Im just trying:
import { ResponsivePie } from '@nivo/pie'
Following the answer from: pluvial/svelte-adapter-deno#14 (comment)
I am trying:
But not luck 🥲
The text was updated successfully, but these errors were encountered: