Skip to content

Commit

Permalink
feat(chart): add component (#835)
Browse files Browse the repository at this point in the history
* feat(chart): added chart component

* feat(chart): edited doc

* feat(chart): added props for legend icons height

* feat(chart): fixed build error

* feat(chart): fixed global styles css

* feat(chart): more description

* feat(chart): added description

* feat(chart): beautifyed

* feat(chart): fixed comments

* feat(chart): fixed comments

* feat(chart): fix doc

Co-authored-by: SNosenko <user@MacBook-Pro-user.local>
  • Loading branch information
SNosenko and SNosenko committed Sep 30, 2021
1 parent b1712ee commit 17d840b
Show file tree
Hide file tree
Showing 49 changed files with 4,170 additions and 3 deletions.
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,9 @@
"arui-cssvars/use-variables": false,
"stylelint-core-vars/use-vars": true,
"stylelint-core-vars/use-mixins": true,
"selector-pseudo-class-no-unknown": [true, {
"ignorePseudoClasses": ["global"]
}],
"stylelint-core-vars/use-one-of-vars": [
true,
{
Expand Down
1 change: 1 addition & 0 deletions packages/chart/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Change Log
29 changes: 29 additions & 0 deletions packages/chart/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "@alfalab/core-components-chart",
"version": "1.0.0",
"description": "Chart component",
"keywords": [],
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"postinstall": "node ./dist/send-stats.js > /dev/null 2>&1 || exit 0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@alfalab/core-components-typography": "^2.0.1",
"classnames": "^2.2.6",
"moment": "^2.29.1",
"recharts": "^2.0.10"
},
"devDependencies": {
"@types/react-transition-group": "^4.2.4"
},
"peerDependencies": {
"react": "^16.9.0 || ^17.0.1"
}
}

0 comments on commit 17d840b

Please sign in to comment.