Uh oh!
There was an error while loading. Please reload this page.
SC-24702 | FEAT - Add new BarChart Component - #419
Conversation
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
There was a problem hiding this comment.
Pull request overview
Adds a new BarChart component to the admin-ui component library (intended for peer reporting on the admin side), along with Storybook documentation and a version/release-note bump to publish the new API.
Changes:
- Introduces
src/barChart(Recharts-basedBarChart+ tooltip) and corresponding Storybook stories. - Exports
BarChartand its public types from the library entrypoint. - Bumps package version to
2.0.55and updates release notes.
Reviewed changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| src/stories/Releases.mdx | Adds release note entry for the new BarChart component. |
| src/index.tsx | Exposes BarChart and its types as part of the public library API. |
| src/barChart/Tooltip.tsx | Adds a reusable custom tooltip implementation for BarChart. |
| src/barChart/index.tsx | Adds barrel export for BarChart and its types. |
| src/barChart/BarChart.tsx | Implements the new BarChart component using Recharts. |
| src/barChart/BarChart.stories.tsx | Adds Storybook stories documenting BarChart usage patterns. |
| package.json | Version bump to 2.0.55 for release. |
| package-lock.json | Lockfile version bump alignment to 2.0.55. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Overview
We want to add a new
BarChartcomponent that we are using with peer reporting on admin side:Changes