@annotorious/annotorious
Advanced tools
Comparing version 3.0.0-rc.17 to 3.0.0-rc.18
export * from './polygon'; | ||
export * from './rectangle'; | ||
export * from './editorsRegistry'; | ||
export * from './Handle'; | ||
export { default as Editor } from './Editor.svelte'; | ||
export { default as EditorMount } from './EditorMount.svelte'; | ||
export { default as Handle } from './Handle.svelte'; | ||
//# sourceMappingURL=index.d.ts.map |
{ | ||
"name": "@annotorious/annotorious", | ||
"version": "3.0.0-rc.17", | ||
"version": "3.0.0-rc.18", | ||
"description": "Add image annotation functionality to any web page with a few lines of JavaScript", | ||
@@ -5,0 +5,0 @@ "author": "Rainer Simon", |
export * from './polygon'; | ||
export * from './rectangle'; | ||
export * from './editorsRegistry'; | ||
export * from './Handle'; | ||
export { default as Editor } from './Editor.svelte'; | ||
export { default as EditorMount } from './EditorMount.svelte'; | ||
export { default as EditorMount } from './EditorMount.svelte'; | ||
export { default as Handle } from './Handle.svelte'; |
@@ -1,1 +0,4 @@ | ||
export const isTouch = 'ontouchstart' in window || navigator.maxTouchPoints > 0; | ||
export const isTouch = 'ontouchstart' in window | ||
|| navigator.maxTouchPoints > 0 | ||
// @ts-ignore | ||
|| navigator.msMaxTouchPoints > 0; |
@@ -15,5 +15,5 @@ import type { Annotation, UndoStack } from '@annotorious/core'; | ||
if (event.key === 'Z' && event.ctrlKey) { | ||
if (event.key === 'z' && event.ctrlKey) { | ||
undoStack.undo(); | ||
} else if (event.key === 'Y' && event.ctrlKey) { | ||
} else if (event.key === 'y' && event.ctrlKey) { | ||
undoStack.redo() | ||
@@ -20,0 +20,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
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 not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
882425
5982
188