New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-path-marker

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-path-marker - npm Package Compare versions

Comparing version

to
1.0.7

5

CHANGELOG.md

@@ -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)

12

dist/react-path-marker.esm.js

@@ -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 [![License: MIT](https://img.shields.io/badge/license-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://img.shields.io/npm/v/react-path-marker.svg?style=flat)](https://www.npmjs.com/package/react-path-marker) [![Demo: Simple Example](https://img.shields.io/badge/demo-live-red.svg)](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