Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…rselectfield into feature/typedefinitions

# Conflicts:
#	package.json
  • Loading branch information
FDiskas committed Nov 15, 2017
2 parents fc50dd6 + 9cdacc9 commit fb0e3e0
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 9 deletions.
2 changes: 1 addition & 1 deletion demo/src/CodeExample1.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { Component } from 'react'
import SuperSelectField from '../../src/SuperSelectField'
import SuperSelectField from 'material-ui-superselectfield'

const containerStyle = {
padding: 40,
Expand Down
2 changes: 1 addition & 1 deletion demo/src/CodeExample2.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { Component } from 'react'
import FlatButton from 'material-ui/FlatButton/FlatButton'
import SuperSelectField from '../../src/SuperSelectField'
import SuperSelectField from 'material-ui-superselectfield'

const containerStyle = {
padding: 40,
Expand Down
2 changes: 1 addition & 1 deletion demo/src/CodeExample3.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { Component } from 'react'
import SuperSelectField from '../../src/SuperSelectField'
import SuperSelectField from 'material-ui-superselectfield'
import FlatButton from 'material-ui/FlatButton/FlatButton'
import Chip from 'material-ui/Chip/Chip'
import countries from './assets/countries'
Expand Down
2 changes: 1 addition & 1 deletion demo/src/CodeExample4.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { Component } from 'react'
import SuperSelectField from '../../src/SuperSelectField'
import SuperSelectField from 'material-ui-superselectfield'
import Chip from 'material-ui/Chip/Chip'
import continents from './assets/continents'
import countries from './assets/countries'
Expand Down
2 changes: 1 addition & 1 deletion demo/src/CodeExample5.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { Component } from 'react'
import CircularProgress from 'material-ui/CircularProgress/CircularProgress'
import SuperSelectField from '../../src/SuperSelectField'
import SuperSelectField from 'material-ui-superselectfield'
import data from './assets/states'

class CodeExample extends Component {
Expand Down
7 changes: 7 additions & 0 deletions nwb.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
const path = require('path')

module.exports = {
type: 'react-component',
npm: {
esModules: true,
umd: false
},
webpack: {
aliases: {
'material-ui-superselectfield': path.resolve('src')
}
}
}
14 changes: 10 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "material-ui-superselectfield",
"version": "1.7.0",
"version": "1.7.1",
"description": "original Material-UI's SelectField component enhanced with autocompletion, multiselection, custom renderers, and infinite loading.",
"keywords": [
"react",
Expand Down Expand Up @@ -43,7 +43,9 @@
"start": "nwb serve-react-demo",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server"
"test:watch": "nwb test-react --server",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"react-infinite": "^0.12.1"
Expand All @@ -54,6 +56,9 @@
"material-ui": ">= 0.17 < 1"
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.15",
"@storybook/addon-links": "^3.2.15",
"@storybook/react": "^3.2.15",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"eslint": "^4.10.0",
Expand All @@ -65,6 +70,7 @@
"react-dom": "^16.1.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-to-typescript-definitions": "^0.22.0"
"react-to-typescript-definitions": "^0.22.0",
"storybook-addon-material-ui": "^0.8.2"
}
}
}
1 change: 1 addition & 0 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default from './SuperSelectField'

0 comments on commit fb0e3e0

Please sign in to comment.