@annotorious/annotorious
Advanced tools
Comparing version
{ | ||
"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
1230936
0.04%8038
0.04%+ Added
- Removed
Updated