Skip to content

Commit

Permalink
v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelklaessen committed Jul 12, 2019
1 parent c9b9366 commit 3e0165b
Show file tree
Hide file tree
Showing 8 changed files with 143 additions and 157 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Version 1.4.0
Released 2019-07-12

- Migrated to Emotion 10

# Version 1.3.1
Released 2019-05-18

Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-multi-bar-slider",
"version": "1.3.1",
"version": "1.4.0",
"description": "Slider component with multiple bars for React",
"repository": {
"type": "git",
Expand All @@ -19,11 +19,11 @@
"react multi slider"
],
"peerDependencies": {
"emotion": "^9.x",
"@emotion/core": "^10.x",
"@emotion/styled": "^10.x",
"prop-types": "^15.x",
"react": "^15.3.x || ^16.x",
"react-dom": "^15.3.x || ^16.x",
"react-emotion": "^9.x"
"react-dom": "^15.3.x || ^16.x"
},
"scripts": {
"build": "webpack --config webpack.config.babel.js",
Expand All @@ -33,6 +33,8 @@
"lint": "eslint ./src"
},
"devDependencies": {
"@emotion/core": "^10.0.14",
"@emotion/styled": "^10.0.14",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^22.1.0",
Expand All @@ -41,7 +43,6 @@
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"emotion": "^9.2.8",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.9.0",
Expand All @@ -51,7 +52,6 @@
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-emotion": "^9.2.8",
"react-test-renderer": "^16.2.0",
"webpack": "^3.8.1"
},
Expand Down
2 changes: 1 addition & 1 deletion src/Dot/DotIcon.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import PropTypes from 'prop-types';
import styled from 'react-emotion';
import styled from '@emotion/styled';

const DotIcon = styled('img')({
position: 'absolute',
Expand Down
2 changes: 1 addition & 1 deletion src/Dot/StyledDot.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import PropTypes from 'prop-types';
import styled from 'react-emotion';
import styled from '@emotion/styled';
import transition from '../utils/transition';

const StyledDot = styled('span')({
Expand Down
2 changes: 1 addition & 1 deletion src/MultiSlider/SlidableZone.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import PropTypes from 'prop-types';
import styled from 'react-emotion';
import styled from '@emotion/styled';

const SlidableZone = styled('div')({
position: 'absolute',
Expand Down
2 changes: 1 addition & 1 deletion src/MultiSlider/StyledSlider.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import PropTypes from 'prop-types';
import styled from 'react-emotion';
import styled from '@emotion/styled';
import transition from '../utils/transition';
import getHalf from '../utils/getHalf';

Expand Down
2 changes: 1 addition & 1 deletion src/Progress/StyledProgress.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import PropTypes from 'prop-types';
import styled from 'react-emotion';
import styled from '@emotion/styled';
import transition from '../utils/transition';
import getHalf from '../utils/getHalf';

Expand Down
Loading

0 comments on commit 3e0165b

Please sign in to comment.