DominicTobias/react-image-crop
 Watch   
 Star   
 Fork   
2024-01-15 16:32:08
react-image-crop

11.0.5

  • Fix css v11 regression when users are allowed to click off the crop to remove it #575
2024-01-04 05:49:30
react-image-crop

11.0.3

No changes in this release, it's just to update some NPM info

2023-12-27 03:07:23
react-image-crop

11.0.2

  • Fix regression in v11 when using multiple crop instances #572
2023-12-01 17:37:38
react-image-crop

11.0.1

  • Add overflow: hidden to the image wrapper so that scaling and rotating doesn't overflow the component since removing overflow: hidden from the component itself
2023-12-01 08:27:58
react-image-crop

11.0.0

Not a breaking change for most users, but the way crop shadow is done is significantly different, and hopefully solves two problems while not introducing others 🙏:

  • fix: crop shadow on circular crop not working in Safari
  • improve: component no longer has overflow: hidden applied, which makes some kinds of customization easier. Also the crop handles now overflow the container instead of getting cut off:

Screenshot 2023-12-01 at 00 01 25

  • Breaking change for users of SASS variables:

Variables are now done with CSS Variables. They are as follows:

:root {
  --rc-drag-handle-size: 12px;
  --rc-drag-handle-mobile-size: 24px;
  --rc-drag-handle-bg-colour: rgba(0, 0, 0, 0.2);
  --rc-drag-bar-size: 6px; /* The invisible grip size of the crop selection edges */
  --rc-border-color: rgba(255, 255, 255, 0.7);
  --rc-focus-color: #0088ff;
}
  • Fix use of input in a renderSelectionAddon #570
2023-09-01 06:59:01
react-image-crop

10.1.8

  • Fix a regression determining the min dimension to use when crop is set to aspect
2023-09-01 06:41:39
react-image-crop

10.1.7

  • Fix 10.1.6 regression when only minWidth or minHeight is set and crop is resized to inverse
  • Ensure new min-dimension crop is always in bounds as its being drawn
2023-09-01 05:19:50
react-image-crop

10.1.6

  • Fix issue when using minWidth/minHeight where crop can flip over and go out of bounds #554

264620483-3c143e4e-94ca-46e7-b516-d66ccade4ede

2023-06-24 19:09:49
react-image-crop

10.1.5

  • Disable animated marching ant border for circular crops as it wasn't working properly
2023-05-29 03:13:03
react-image-crop

10.1.4

  • Add back animated marching ants to crop selection as seen on the README. If you wish to disable the animation then pass className="ReactCrop--no-animate"