Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
berviantoleo committed Nov 28, 2020
2 parents b698c99 + 266ae68 commit 43258f6
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 7 deletions.
8 changes: 8 additions & 0 deletions examples/demo/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.3](https://gitlab.com/edaun/multicropjs/compare/@berviantoleo/react-component-multi-crop-demo@0.4.2...@berviantoleo/react-component-multi-crop-demo@0.4.3) (2020-11-28)

**Note:** Version bump only for package @berviantoleo/react-component-multi-crop-demo





## [0.4.2](https://gitlab.com/edaun/multicropjs/compare/@berviantoleo/react-component-multi-crop-demo@0.4.1...@berviantoleo/react-component-multi-crop-demo@0.4.2) (2020-11-28)

**Note:** Version bump only for package @berviantoleo/react-component-multi-crop-demo
Expand Down
4 changes: 2 additions & 2 deletions examples/demo/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@berviantoleo/react-component-multi-crop-demo",
"description": "Demo for Multicrop.js in React.js",
"version": "0.4.2",
"version": "0.4.3",
"private": true,
"homepage": "https://gitlab.com/edaun/multicropjs/tree/master/react-component/demo",
"repository": {
Expand All @@ -25,7 +25,7 @@
}
],
"dependencies": {
"@berviantoleo/react-multi-crop": "^0.7.1",
"@berviantoleo/react-multi-crop": "^0.7.2",
"@material-ui/core": "^4.11.1",
"fabric": "^4.2.0",
"prop-types": "^15.7.2",
Expand Down
11 changes: 11 additions & 0 deletions packages/react-multi-crop/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.7.2](https://github.com/berviantoleo/react-multi-crop/compare/@berviantoleo/react-multi-crop@0.7.1...@berviantoleo/react-multi-crop@0.7.2) (2020-11-28)


### Bug Fixes

* getting data fixing ([491d20d](https://github.com/berviantoleo/react-multi-crop/commit/491d20d645fd58751b7d9207dc22cc311142d70a))





## [0.7.1](https://github.com/berviantoleo/react-multi-crop/compare/@berviantoleo/react-multi-crop@0.7.0...@berviantoleo/react-multi-crop@0.7.1) (2020-11-28)


Expand Down
4 changes: 2 additions & 2 deletions packages/react-multi-crop/dist/index.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -434,8 +434,8 @@ var ReactMultiCrop = /*#__PURE__*/function (_Component) {

try {
dataUrl = canvasBackground.toDataURL({
height: element.height,
width: element.width,
height: element.getScaledHeight(),
width: element.getScaledWidth(),
left: element.left,
top: element.top,
format: "jpeg"
Expand Down
4 changes: 2 additions & 2 deletions packages/react-multi-crop/dist/index.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -423,8 +423,8 @@ var ReactMultiCrop = /*#__PURE__*/function (_Component) {

try {
dataUrl = canvasBackground.toDataURL({
height: element.height,
width: element.width,
height: element.getScaledHeight(),
width: element.getScaledWidth(),
left: element.left,
top: element.top,
format: "jpeg"
Expand Down
2 changes: 1 addition & 1 deletion packages/react-multi-crop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"rollup-plugin-peer-deps-external": "^2.2.4"
},
"license": "MIT",
"version": "0.7.1",
"version": "0.7.2",
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
Expand Down

0 comments on commit 43258f6

Please sign in to comment.