Skip to content

Commit 6a5207c

Browse files
committed
Add activation settings to side by side and custom magnifiers
1 parent a827d9f commit 6a5207c

6 files changed

+2026
-1382
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.4.0 (July 3rd, 2020)
4+
5+
- Added props for changing activation method on SideBySideMagnifier and MagnifierPreview.
6+
37
## 1.3.2 (May 9th, 2020)
48

59
- Added support for images with transparency in Magnifier component by hiding preview image when zoomed.

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,10 @@ _Note: onZoomStart and onZoomEnd behaves differently with PictureInPictureMagnif
168168

169169
## SideBySideMagnifier Props
170170

171+
**mouseActivation:** Sets the mouse method for zooming in/out. Accepts: "click" or "doubleClick". Can also import the MOUSE_ACTIVATION constants to assist. Type: string, Default: "click".
172+
173+
**touchActivation:** Sets the touch method for zooming in/out. Accepts: "tap", "doubleTap", or "longTouch". Can also import the TOUCH_ACTIVATION constants to assist. Type: string, Default: "tap".
174+
171175
**alwaysInPlace:** Activate in place mode, which displays the zoomed image in the same place instead of to the side. By default, the component goes into this mode automatically whenever there isn't enough room to display the zoomed image alongside. Type: boolean, Default: false.
172176

173177
**switchSides:** Displays the zoomed image on the left side of the preview, instead of the right side. Regardless of the intended side, the zoomed image will be displayed in place if there isn't enough room available.
@@ -212,6 +216,10 @@ _Note: onZoomStart and onZoomEnd behaves differently with PictureInPictureMagnif
212216

213217
## MagnifierPreview Props
214218

219+
**mouseActivation:** Sets the mouse method for zooming in/out. Accepts: "click" or "doubleClick". Can also import the MOUSE_ACTIVATION constants to assist. Type: string, Default: "click".
220+
221+
**touchActivation:** Sets the touch method for zooming in/out. Accepts: "tap", "doubleTap", or "longTouch". Can also import the TOUCH_ACTIVATION constants to assist. Type: string, Default: "tap".
222+
215223
**imageSrc:** Passed to the src of the image. Also accepts an array of image paths in case fallbacks are required. Each image path in the array will be tried in order until either one loads, or the end of the array is reached. Type: string or array of strings, Default: "".
216224

217225
**imageAlt:** Passed to the alt of the image.

0 commit comments

Comments
 (0)