Skip to content

Commit

Permalink
feat: update deps code cleanup (#26)
Browse files Browse the repository at this point in the history
* feat: update react deps

* chore: imports

* chore: ignore files

* feat: only update semantic

* chore: snapshots
  • Loading branch information
nicosantangelo authored and cazala committed Jan 29, 2019
1 parent 4a2bbd8 commit 81989d4
Show file tree
Hide file tree
Showing 9 changed files with 62 additions and 57 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.DS_Store
.vscode
node_modules
lib
storybook-static
Expand Down
50 changes: 30 additions & 20 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"ethereum-blockies": "^0.1.1",
"parallax-js": "^3.1.0",
"semantic-ui-css": "^2.3.2",
"semantic-ui-react": "^0.82.5"
"semantic-ui-react": "^0.84.0"
},
"peerDependencies": {
"react": "^16.4.1",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Field/Field.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react'
import { Header, Input, InputProps } from 'semantic-ui-react'
import './Field.css'
import { Blockie } from '../..'
import './Field.css'

export type FieldProps = InputProps & {
label?: string
Expand Down
2 changes: 1 addition & 1 deletion src/components/Hero/Hero.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import * as React from 'react'
import { storiesOf } from '@storybook/react'
import { Parallax } from '../Parallax/Parallax'
import { Hero } from '../..'
import './Hero.stories.css'
import { Parallax } from '../Parallax/Parallax'

storiesOf('Hero', module)
.add('Text only', () => (
Expand Down
4 changes: 2 additions & 2 deletions src/components/LanguageDropdown/LanguageDropdown.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react'
import './LanguageDropdown.css'
import { Dropdown, LanguageIconProps, DropdownProps, Locale } from '../..'
import { LanguageIcon } from '../LanguageIcon/LanguageIcon'
import { Dropdown, LanguageIconProps, DropdownProps, Locale } from '../..'
import './LanguageDropdown.css'

export type LanguageDropdownI18N = {
en: React.ReactNode
Expand Down
2 changes: 1 addition & 1 deletion src/components/Mana/Mana.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as React from 'react'
import './Mana.css'
import { Header, HeaderProps } from 'semantic-ui-react'
import './Mana.css'

export type ManaProps = {
size?: 'tiny' | 'small' | 'medium' | 'large' | 'huge'
Expand Down
2 changes: 1 addition & 1 deletion src/components/Stats/Stats.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as React from 'react'
import './Stats.css'
import { Header } from 'semantic-ui-react'
import './Stats.css'

export type StatsProps = {
title: string
Expand Down
Loading

0 comments on commit 81989d4

Please sign in to comment.