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

@annotorious/annotorious

Package Overview
Dependencies
Maintainers
1
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@annotorious/annotorious - npm Package Compare versions

Comparing version

to
3.3.2

4

package.json
{
"name": "@annotorious/annotorious",
"version": "3.3.1",
"version": "3.3.2",
"description": "Add image annotation functionality to any web page with a few lines of JavaScript",

@@ -52,3 +52,3 @@ "author": "Rainer Simon",

"dependencies": {
"@annotorious/core": "3.3.1",
"@annotorious/core": "3.3.2",
"rbush": "^4.0.1",

@@ -55,0 +55,0 @@ "svg-pathdata": "^7.2.0",

@@ -18,7 +18,6 @@ import type { Rectangle, RectangleGeometry } from '../../core';

): Rectangle => {
const fragment =
typeof fragmentOrSelector === 'string' ? fragmentOrSelector : fragmentOrSelector.value;
const regex = /^(xywh)=(pixel|percent)?:?(.+?),(.+?),(.+?),(.+)*/g;
const regex = /(xywh)=(pixel|percent)?:?(.+?),(.+?),(.+?),(.+)*/g;

@@ -25,0 +24,0 @@ const matches = [...fragment.matchAll(regex)][0];

@@ -55,7 +55,9 @@ import { v4 as uuidv4 } from 'uuid';

const w3cSelector = Array.isArray(w3cTarget.selector)
? w3cTarget.selector[0] : w3cTarget.selector;
const w3cSelector =
typeof w3cTarget === 'string' ? w3cTarget :
Array.isArray(w3cTarget.selector)
? w3cTarget.selector[0] : w3cTarget.selector;
const selector =
w3cSelector?.type === 'FragmentSelector' ?
typeof w3cSelector === 'string' || w3cSelector?.type === 'FragmentSelector' ?
parseFragmentSelector(w3cSelector as FragmentSelector, opts.invertY) :

@@ -62,0 +64,0 @@ w3cSelector?.type === 'SvgSelector' ?

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet