Skip to content

Commit

Permalink
Feat #99, #101, #100 - Add new avatar component and enhancements for …
Browse files Browse the repository at this point in the history
…icon and notification components (#103)

* feat #99 - Avatar component
* feat #100 - Notification component should take in configuration options
* feat #101 - Icon component should render svgs

Closes #99
Closes #100
Closes #101
  • Loading branch information
nancy-dassana authored Oct 8, 2020
1 parent cd22a92 commit 7466916
Show file tree
Hide file tree
Showing 24 changed files with 437 additions and 74 deletions.
211 changes: 203 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dassana-io/web-components",
"version": "0.4.0",
"version": "0.5.0",
"publishConfig": {
"registry": "https://npm.pkg.github.com/dassana-io"
},
Expand Down Expand Up @@ -78,6 +78,7 @@
"@storybook/addons": "^6.0.21",
"@storybook/preset-create-react-app": "^3.1.4",
"@storybook/react": "^6.0.21",
"@svgr/rollup": "^5.4.0",
"@types/bytes": "^3.1.0",
"@types/classnames": "^2.2.10",
"@types/enzyme": "^3.10.5",
Expand Down
2 changes: 2 additions & 0 deletions rollup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import commonjs from '@rollup/plugin-commonjs'
import image from '@rollup/plugin-image'
import resolve from '@rollup/plugin-node-resolve'
import styles from 'rollup-plugin-styles'
import svgr from '@svgr/rollup'
import typescript from 'rollup-plugin-typescript2'
import pkg from './package.json'

Expand All @@ -26,6 +27,7 @@ export default {
resolve(),
commonjs(),
styles(),
svgr(),
image(),
typescript({
tsconfig: 'tsconfig.rollup.json',
Expand Down
Loading

0 comments on commit 7466916

Please sign in to comment.