react-path-marker
Advanced tools
Comparing version
@@ -18,2 +18,5 @@ # CHANGELOG | ||
## 1.0.6 | ||
* Fixed bug causing highlight to not work when selecting the marker itself | ||
* Fixed bug causing highlight to not work when selecting the marker itself | ||
## 1.0.7 | ||
* Allow passing optional reference if you want to use the reference outside for listeners (adding a tooltip to it) |
@@ -14,7 +14,11 @@ import React, { useState, useEffect } from 'react'; | ||
var markerRef = React.createRef(); | ||
var optionalNoRef = React.createRef(); | ||
var _useState4 = useState(props["markerRef"] || optionalNoRef), | ||
markerRef = _useState4[0]; | ||
var pathRef = props.pathRef; | ||
var svgRef = props.svgRef; | ||
var _useState4 = useState({ | ||
var _useState5 = useState({ | ||
x: 0, | ||
@@ -25,4 +29,4 @@ y: 0, | ||
}), | ||
markerRect = _useState4[0], | ||
setMarkerRect = _useState4[1]; | ||
markerRect = _useState5[0], | ||
setMarkerRect = _useState5[1]; | ||
@@ -29,0 +33,0 @@ useEffect(function () { |
@@ -5,2 +5,3 @@ import React from 'react'; | ||
svgRef: React.RefObject<SVGSVGElement>; | ||
markerRef?: React.RefObject<SVGCircleElement>; | ||
color?: string; | ||
@@ -7,0 +8,0 @@ borderColor?: string; |
{ | ||
"name": "react-path-marker", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "displayName": "React Path Marker", |
@@ -54,2 +54,3 @@ # react-path-marker [](https://opensource.org/licenses/MIT) [](https://www.npmjs.com/package/react-path-marker) [](https://react-path-marker-simple-example.imfast.io) | ||
| pathRef | React.RefObject<SVGSVGElement> | Mandatory. A React reference object to the path element bounded to the marker | | ||
| markerRef | React.RefObject<SVGCircleElement> | Optional. A React reference object to the marker itself. Default: new reference | | ||
| borderColor | string | Optional. Color for marker border. Default: "black" | | ||
@@ -56,0 +57,0 @@ | color | string | Optional. Color for marker background. Default: "black" | |
Sorry, the diff of this file is not supported yet
15608
4.16%95
3.26%66
1.54%