Skip to content

Commit

Permalink
feat #119 - Notifications V2 (#120)
Browse files Browse the repository at this point in the history
* feat #114 - Update input border radius, refac

* feat #116 - Render stories inside themed containers

* feat #116 - Update FieldLabel styles

* feat #113 - Button theming (#117)

* v0.4.0 -> v0.5.0 (#105)

* feat #99 - Avatar component (#103)
* feat #100 - Notification component should take in configuration options (#103)
* feat #101 - Icon component should render svgs (#103)
* feat #92 - Theming (#97)
* fix #104 - Fix exported types for table and form (#97)

* feat #113 - Revamp button styles

* feat #113 - Update button styles for primary

* feat #113 - Fix broken snapshots

* feat #113 - Fix bad rebase

* feat #113 - Update story snapshot

* feat #113 - Address PR comments

Co-authored-by: github-actions <[email protected]>

* v0.4.0 -> v0.5.0 (#105)

* feat #99 - Avatar component (#103)
* feat #100 - Notification component should take in configuration options (#103)
* feat #101 - Icon component should render svgs (#103)
* feat #92 - Theming (#97)
* fix #104 - Fix exported types for table and form (#97)

* feat #113 - Revamp button styles

* feat #113 - Update button styles for primary

* v0.4.0 -> v0.5.0 (#105)

* feat #99 - Avatar component (#103)
* feat #100 - Notification component should take in configuration options (#103)
* feat #101 - Icon component should render svgs (#103)
* feat #92 - Theming (#97)
* fix #104 - Fix exported types for table and form (#97)

* feat #113 - Revamp button styles

* feat #119 - Notifications V2

Closes #119

* feat #119 - Set up dark/light theme for notifications and update styles

* feat #119 - Fix weird rebase

* feat #119 - Fix build errors

* feat #119 - Address PR comments

* feat #119 - Fix bad rebase

* feat #119 - Import styleguide nits

Co-authored-by: sam-m-m <[email protected]>
Co-authored-by: github-actions <[email protected]>
  • Loading branch information
3 people authored Oct 20, 2020
1 parent 778d365 commit b190439
Show file tree
Hide file tree
Showing 19 changed files with 676 additions and 41 deletions.
112 changes: 109 additions & 3 deletions package-lock.json

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

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"@storybook/addon-cssresources": "^6.0.22",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/react-hooks": "^3.4.2",
"@testing-library/user-event": "^7.2.1",
"@types/color": "^3.0.1",
"@types/jest": "^24.9.1",
Expand All @@ -24,6 +25,7 @@
"bytes": "^3.1.0",
"classnames": "^2.2.6",
"color": "^3.1.2",
"framer-motion": "^2.9.1",
"fuse.js": "^6.4.1",
"lodash": "^4.17.20",
"moment": "^2.27.0",
Expand All @@ -32,7 +34,8 @@
"react-hook-form": "^6.5.0",
"react-jss": "^10.4.0",
"react-scripts": "^3.4.3",
"typescript": "^3.9.7"
"typescript": "^3.9.7",
"uuid": "^8.3.1"
},
"scripts": {
"start": "npm run storybook",
Expand Down Expand Up @@ -88,6 +91,7 @@
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/lodash": "^4.14.161",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"chromatic": "^5.1.0",
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const rootImport = options => ({
})

export default {
external: ['antd', 'react'],
external: ['antd', 'react', 'uuid'],
input: 'src/components/index.ts',
output: [
{
Expand Down
Loading

0 comments on commit b190439

Please sign in to comment.