Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kévin Francart committed Jun 3, 2021
1 parent cbfdb12 commit 692f733
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/dnm-react-video-cut.es.js
Original file line number Diff line number Diff line change
Expand Up @@ -30041,7 +30041,7 @@ DnmVideoCut.propTypes = {
minDuration: PropTypes.number,
muted: PropTypes.bool,
onMuteChange: PropTypes.func,
playerCursorWidth: PropTypes.oneOfType([PropTypes.func, PropTypes["int"]])
playerCursorWidth: PropTypes.oneOfType([PropTypes.func, PropTypes.number])
};
DnmVideoCut.defaultProps = {
catalogue: {
Expand Down
2 changes: 1 addition & 1 deletion dist/dnm-react-video-cut.es.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/dnm-react-video-cut.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -30059,7 +30059,7 @@
minDuration: PropTypes.number,
muted: PropTypes.bool,
onMuteChange: PropTypes.func,
playerCursorWidth: PropTypes.oneOfType([PropTypes.func, PropTypes["int"]])
playerCursorWidth: PropTypes.oneOfType([PropTypes.func, PropTypes.number])
};
DnmVideoCut.defaultProps = {
catalogue: {
Expand Down
2 changes: 1 addition & 1 deletion dist/dnm-react-video-cut.umd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dnm-react-video-cut",
"version": "1.2.3",
"version": "1.2.4",
"description": "",
"main": "dist/dnm-react-video-cut.umd.min.js",
"module": "dist/dnm-react-video-cut.es.min.js",
Expand Down
2 changes: 1 addition & 1 deletion src/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ DnmVideoCut.propTypes = {
onMuteChange: PropTypes.func,
playerCursorWidth: PropTypes.oneOfType([
PropTypes.func,
PropTypes.int,
PropTypes.number,
]),
};

Expand Down

0 comments on commit 692f733

Please sign in to comment.