Skip to content

Commit a59fd30

Browse files
committedJul 29, 2019
Empty commit. I think.
1 parent aa499ae commit a59fd30

28 files changed

+23
-23
lines changed
 

Diff for: ‎.babelrc

100644100755
File mode changed.

Diff for: ‎.eslintrc

100644100755
File mode changed.

Diff for: ‎.gitignore

100644100755
File mode changed.

Diff for: ‎.npmignore

100644100755
File mode changed.

Diff for: ‎.prettierrc

100644100755
File mode changed.

Diff for: ‎LICENSE

100644100755
File mode changed.

Diff for: ‎README.md

100644100755
File mode changed.

Diff for: ‎dist/index.es.js

100644100755
+12-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎dist/index.es.js.map

100644100755
+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎example/README.md

100644100755
File mode changed.

Diff for: ‎example/package.json

100644100755
File mode changed.

Diff for: ‎example/public/index.html

100644100755
File mode changed.

Diff for: ‎example/public/manifest.json

100644100755
File mode changed.

Diff for: ‎example/src/App.js

100644100755
File mode changed.

Diff for: ‎example/src/index.css

100644100755
File mode changed.

Diff for: ‎example/src/index.js

100644100755
File mode changed.

Diff for: ‎example/yarn.lock

100644100755
File mode changed.

Diff for: ‎index.html

100644100755
File mode changed.

Diff for: ‎package.json

100644100755
File mode changed.

Diff for: ‎rollup.config.js

100644100755
File mode changed.

Diff for: ‎src/AlignmentGuides.js

100644100755
+8-8
Original file line numberDiff line numberDiff line change
@@ -285,18 +285,18 @@ AlignmentGuides.propTypes = {
285285
boxStyle: PropTypes.object,
286286
className: PropTypes.string,
287287
drag: PropTypes.bool,
288-
resize: PropTypes.bool,
289-
rotate: PropTypes.bool,
290288
keybindings: PropTypes.bool,
291-
onRotateStart: PropTypes.func,
292-
onRotate: PropTypes.func,
293-
onRotateEnd: PropTypes.func,
294-
onResizeStart: PropTypes.func,
295-
onResize: PropTypes.func,
296-
onResizeEnd: PropTypes.func,
297289
onDragStart: PropTypes.func,
298290
onDrag: PropTypes.func,
299291
onDragEnd: PropTypes.func,
292+
onResizeStart: PropTypes.func,
293+
onResize: PropTypes.func,
294+
onResizeEnd: PropTypes.func,
295+
onRotateStart: PropTypes.func,
296+
onRotate: PropTypes.func,
297+
onRotateEnd: PropTypes.func,
298+
resize: PropTypes.bool,
299+
rotate: PropTypes.bool,
300300
style: PropTypes.object
301301
};
302302

Diff for: ‎src/Box.js

100644100755
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import React, { Component } from 'react';
1+
import React, { PureComponent } from 'react';
22
import PropTypes from 'prop-types';
33
import { RESIZE_HANDLES } from './utils/constants';
44
import styles from './styles.scss';
55

6-
class Box extends Component {
6+
class Box extends PureComponent {
77
constructor(props) {
88
super(props);
99
this.state = {

Diff for: ‎src/index.js

100644100755
File mode changed.

Diff for: ‎src/styles.scss

100644100755
File mode changed.

Diff for: ‎src/utils/constants.js

100644100755
File mode changed.

Diff for: ‎src/utils/helpers.js

100644100755
File mode changed.

Diff for: ‎webpack.config.js

100644100755
File mode changed.

Diff for: ‎yarn.lock

100644100755
File mode changed.

0 commit comments

Comments
 (0)
Please sign in to comment.