Skip to content

Commit a59fd30

Browse files
committed
Empty commit. I think.
1 parent aa499ae commit a59fd30

28 files changed

+23
-23
lines changed

.babelrc

100644100755
File mode changed.

.eslintrc

100644100755
File mode changed.

.gitignore

100644100755
File mode changed.

.npmignore

100644100755
File mode changed.

.prettierrc

100644100755
File mode changed.

LICENSE

100644100755
File mode changed.

README.md

100644100755
File mode changed.

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.

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.

example/README.md

100644100755
File mode changed.

example/package.json

100644100755
File mode changed.

example/public/index.html

100644100755
File mode changed.

example/public/manifest.json

100644100755
File mode changed.

example/src/App.js

100644100755
File mode changed.

example/src/index.css

100644100755
File mode changed.

example/src/index.js

100644100755
File mode changed.

example/yarn.lock

100644100755
File mode changed.

index.html

100644100755
File mode changed.

package.json

100644100755
File mode changed.

rollup.config.js

100644100755
File mode changed.

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

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 = {

src/index.js

100644100755
File mode changed.

src/styles.scss

100644100755
File mode changed.

src/utils/constants.js

100644100755
File mode changed.

src/utils/helpers.js

100644100755
File mode changed.

webpack.config.js

100644100755
File mode changed.

yarn.lock

100644100755
File mode changed.

0 commit comments

Comments
 (0)