Skip to content

Commit 9917589

Browse files
authored
12 Tasks Status Chart (#13)
* upgrade deps * ignore storybook dir * initial DonutChart * TaskStatusDonutChart component * use tailwind color references * tests * donutchart stories * docs
1 parent dc2dec0 commit 9917589

12 files changed

Lines changed: 899 additions & 52 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ The production technology stack includes:
3434
- Lodash - utility functions
3535
- DayJS - date and time utility functions
3636
- TanStack React Table - advanced tables and datagrids
37+
- Recharts - composable charting library for React
3738

3839
The development technology stack includes:
3940

@@ -260,6 +261,7 @@ This project uses GitHub Actions to perform DevOps automation activities such as
260261
- [Font Awesome][fontawesome]
261262
- [React Spring][reactspring]
262263
- [React i18next][reacti18next]
264+
- [Recharts][recharts]
263265
- [React Testing Library][testing-library]
264266
- [Storybook][storybook]
265267
- [GitHub Actions][ghactions]
@@ -280,3 +282,4 @@ This project uses GitHub Actions to perform DevOps automation activities such as
280282
[reacti18next]: https://react.i18next.com/ 'React i18next'
281283
[reactspring]: https://www.react-spring.dev/ 'React Spring'
282284
[storybook]: https://storybook.js.org/ 'Storybook'
285+
[recharts]: https://recharts.org/ 'Recharts'

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ export default tseslint.config(
4343
{
4444
// global ignores
4545
// do not add any other keys to this object
46-
ignores: ['coverage/', 'dist/'],
46+
ignores: ['coverage/', 'dist/', 'storybook-static/'],
4747
},
4848
);

0 commit comments

Comments
 (0)