@annotorious/annotorious 3.0.0-rc.21 → 3.0.0-rc.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Annotorious.d.ts +2 -5
- package/dist/Annotorious.d.ts.map +1 -1
- package/dist/AnnotoriousOpts.d.ts +3 -2
- package/dist/AnnotoriousOpts.d.ts.map +1 -1
- package/dist/annotation/SVGAnnotationLayerPointerEvent.d.ts.map +1 -1
- package/dist/annotation/editors/Handle.d.ts +14 -0
- package/dist/annotation/editors/Handle.d.ts.map +1 -0
- package/dist/annotation/editors/editorsRegistry.d.ts +1 -1
- package/dist/annotation/editors/editorsRegistry.d.ts.map +1 -1
- package/dist/annotation/editors/index.d.ts +1 -1
- package/dist/annotation/editors/index.d.ts.map +1 -1
- package/dist/annotation/tools/drawingToolsRegistry.d.ts +4 -4
- package/dist/annotation/tools/drawingToolsRegistry.d.ts.map +1 -1
- package/dist/annotation/utils/responsive.d.ts +1 -2
- package/dist/annotation/utils/responsive.d.ts.map +1 -1
- package/dist/annotation/utils/styling.d.ts +1 -1
- package/dist/annotation/utils/styling.d.ts.map +1 -1
- package/dist/annotation/utils/touch.d.ts.map +1 -1
- package/dist/annotorious.css +1 -1
- package/dist/annotorious.es.js +2046 -2300
- package/dist/annotorious.es.js.map +1 -1
- package/dist/annotorious.js +1 -1
- package/dist/annotorious.js.map +1 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/keyboardCommands.d.ts.map +1 -1
- package/dist/model/w3c/W3CImageFormatAdapter.d.ts +2 -3
- package/dist/model/w3c/W3CImageFormatAdapter.d.ts.map +1 -1
- package/dist/model/w3c/fragment/FragmentSelector.d.ts +2 -1
- package/dist/model/w3c/fragment/FragmentSelector.d.ts.map +1 -1
- package/dist/model/w3c/index.d.ts +0 -1
- package/dist/model/w3c/index.d.ts.map +1 -1
- package/dist/model/w3c/svg/SVG.d.ts.map +1 -1
- package/dist/model/w3c/svg/SVGSelector.d.ts +2 -1
- package/dist/model/w3c/svg/SVGSelector.d.ts.map +1 -1
- package/dist/state/ImageAnnotatorState.d.ts.map +1 -1
- package/dist/state/spatialTree.d.ts +1 -1
- package/dist/state/spatialTree.d.ts.map +1 -1
- package/package.json +16 -13
- package/src/Annotorious.css +5 -5
- package/src/Annotorious.ts +12 -21
- package/src/AnnotoriousOpts.ts +7 -7
- package/src/annotation/SVGAnnotationLayer.svelte +15 -21
- package/src/annotation/SVGAnnotationLayerPointerEvent.ts +2 -1
- package/src/annotation/Transform.ts +1 -1
- package/src/annotation/editors/Editor.svelte +11 -10
- package/src/annotation/editors/EditorMount.svelte +2 -2
- package/src/annotation/editors/Handle.ts +21 -0
- package/src/annotation/editors/index.ts +2 -2
- package/src/annotation/editors/polygon/PolygonEditor.svelte +16 -16
- package/src/annotation/editors/rectangle/RectangleEditor.svelte +43 -46
- package/src/annotation/shapes/Ellipse.svelte +2 -2
- package/src/annotation/shapes/Polygon.svelte +2 -2
- package/src/annotation/shapes/Rectangle.svelte +2 -2
- package/src/annotation/tools/ToolMount.svelte +3 -3
- package/src/annotation/tools/drawingToolsRegistry.ts +1 -2
- package/src/annotation/tools/polygon/RubberbandPolygon.svelte +11 -36
- package/src/annotation/tools/rectangle/RubberbandRectangle.svelte +10 -16
- package/src/annotation/utils/responsive.ts +1 -1
- package/src/annotation/utils/touch.ts +1 -4
- package/src/index.ts +16 -23
- package/src/keyboardCommands.ts +4 -8
- package/src/model/w3c/W3CImageFormatAdapter.ts +22 -53
- package/src/model/w3c/fragment/FragmentSelector.ts +6 -5
- package/src/model/w3c/index.ts +0 -1
- package/src/model/w3c/svg/SVG.ts +2 -1
- package/src/model/w3c/svg/SVGSelector.ts +13 -11
- package/src/state/ImageAnnotatorState.ts +3 -3
- package/src/state/spatialTree.ts +2 -3
- package/src/themes/dark/index.css +2 -2
- package/src/themes/light/index.css +2 -2
- package/src/themes/smart/setTheme.ts +2 -2
- package/dist/annotation/editors/Handle.svelte.d.ts +0 -1
- package/dist/model/w3c/W3CImageAnnotation.d.ts +0 -11
- package/dist/model/w3c/W3CImageAnnotation.d.ts.map +0 -1
- package/src/annotation/editors/Handle.svelte +0 -66
- package/src/model/w3c/W3CImageAnnotation.ts +0 -17
package/dist/index.d.ts
CHANGED
|
@@ -6,5 +6,11 @@ export * from './annotation/tools';
|
|
|
6
6
|
export * from './Annotorious';
|
|
7
7
|
export * from './AnnotoriousOpts';
|
|
8
8
|
export * from './keyboardCommands';
|
|
9
|
-
export
|
|
9
|
+
export * from '@annotorious/core/src/model';
|
|
10
|
+
export * from '@annotorious/core/src/presence';
|
|
11
|
+
export * from '@annotorious/core/src/utils';
|
|
12
|
+
export type { HoverState, Selection, SelectionState, Store, StoreChangeEvent, StoreObserver } from '@annotorious/core/src/state';
|
|
13
|
+
import { Origin as _Origin, PointerSelectAction as _PointerSelectAction } from '@annotorious/core/src/state';
|
|
14
|
+
export { _Origin as Origin };
|
|
15
|
+
export { _PointerSelectAction as PointerSelectAction };
|
|
10
16
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AAGnC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AAGnC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,6BAA6B,CAAC;AAE5C,YAAY,EACV,UAAU,EACV,SAAS,EACT,cAAc,EACd,KAAK,EACL,gBAAgB,EAChB,aAAa,EACd,MAAM,6BAA6B,CAAC;AAErC,OAAO,EACL,MAAM,IAAI,OAAO,EACjB,mBAAmB,IAAI,oBAAoB,EAC5C,MAAM,6BAA6B,CAAC;AAErC,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,CAAC;AAC7B,OAAO,EAAE,oBAAoB,IAAI,mBAAmB,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"keyboardCommands.d.ts","sourceRoot":"","sources":["../src/keyboardCommands.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAI/D,eAAO,MAAM,oBAAoB,
|
|
1
|
+
{"version":3,"file":"keyboardCommands.d.ts","sourceRoot":"","sources":["../src/keyboardCommands.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAI/D,eAAO,MAAM,oBAAoB,8DAEnB,OAAO;;CAuCpB,CAAA"}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import type { FormatAdapter, ParseResult, W3CAnnotation } from '@annotorious/core';
|
|
2
2
|
import type { ImageAnnotation } from '../core';
|
|
3
|
-
|
|
4
|
-
export type W3CImageFormatAdapter = FormatAdapter<ImageAnnotation, W3CImageAnnotation>;
|
|
3
|
+
export type W3CImageFormatAdapter = FormatAdapter<ImageAnnotation, W3CAnnotation>;
|
|
5
4
|
export declare const W3CImageFormat: (source: string, invertY?: boolean) => W3CImageFormatAdapter;
|
|
6
5
|
export declare const parseW3CImageAnnotation: (annotation: W3CAnnotation, invertY?: boolean) => ParseResult<ImageAnnotation>;
|
|
7
|
-
export declare const serializeW3CImageAnnotation: (annotation: ImageAnnotation, source: string) =>
|
|
6
|
+
export declare const serializeW3CImageAnnotation: (annotation: ImageAnnotation, source: string) => W3CAnnotation;
|
|
8
7
|
//# sourceMappingURL=W3CImageFormatAdapter.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"W3CImageFormatAdapter.d.ts","sourceRoot":"","sources":["../../../src/model/w3c/W3CImageFormatAdapter.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,aAAa,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAEnF,OAAO,KAAK,EAAE,eAAe,EAAqB,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"W3CImageFormatAdapter.d.ts","sourceRoot":"","sources":["../../../src/model/w3c/W3CImageFormatAdapter.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,aAAa,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAEnF,OAAO,KAAK,EAAE,eAAe,EAAqB,MAAM,SAAS,CAAC;AAMlE,MAAM,MAAM,qBAAqB,GAAG,aAAa,CAAC,eAAe,EAAE,aAAa,CAAC,CAAC;AAElF,eAAO,MAAM,cAAc,WACjB,MAAM,YACL,OAAO,0BAUjB,CAAA;AAED,eAAO,MAAM,uBAAuB,eACtB,aAAa,YAChB,OAAO,KACf,YAAY,eAAe,CA+B7B,CAAA;AAED,eAAO,MAAM,2BAA2B,eAC1B,eAAe,UACnB,MAAM,KACb,aAmBF,CAAC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import type { W3CSelector } from '@annotorious/core';
|
|
1
2
|
import type { Rectangle, RectangleGeometry } from '../../core';
|
|
2
|
-
export interface FragmentSelector {
|
|
3
|
+
export interface FragmentSelector extends W3CSelector {
|
|
3
4
|
type: 'FragmentSelector';
|
|
4
5
|
conformsTo: 'http://www.w3.org/TR/media-frags/';
|
|
5
6
|
value: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FragmentSelector.d.ts","sourceRoot":"","sources":["../../../../src/model/w3c/fragment/FragmentSelector.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"FragmentSelector.d.ts","sourceRoot":"","sources":["../../../../src/model/w3c/fragment/FragmentSelector.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAErD,OAAO,KAAK,EAAE,SAAS,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAE/D,MAAM,WAAW,gBAAiB,SAAQ,WAAW;IAEnD,IAAI,EAAE,kBAAkB,CAAC;IAEzB,UAAU,EAAE,mCAAmC,CAAC;IAEhD,KAAK,EAAE,MAAM,CAAC;CAEf;AAED,eAAO,MAAM,qBAAqB,uBACZ,gBAAgB,GAAG,MAAM,wBAE5C,SA+BF,CAAC;AAEF,eAAO,MAAM,yBAAyB,aAAc,iBAAiB,KAAG,gBAQvE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/model/w3c/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,OAAO,CAAC;AACtB,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/model/w3c/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,OAAO,CAAC;AACtB,cAAc,yBAAyB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SVG.d.ts","sourceRoot":"","sources":["../../../../src/model/w3c/svg/SVG.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,aAAa,+BAA+B,CAAC;AAE1D,eAAO,MAAM,QAAQ,QAAS,OAAO,GAAG,QAAQ,
|
|
1
|
+
{"version":3,"file":"SVG.d.ts","sourceRoot":"","sources":["../../../../src/model/w3c/svg/SVG.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,aAAa,+BAA+B,CAAC;AAE1D,eAAO,MAAM,QAAQ,QAAS,OAAO,GAAG,QAAQ,uBAmB/C,CAAA;AAED,uDAAuD;AACvD,eAAO,MAAM,kBAAkB,gBAAiB,QAAQ,KAAG,OAW1D,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SVGSelector.d.ts","sourceRoot":"","sources":["../../../../src/model/w3c/svg/SVGSelector.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAsD,KAAK,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"SVGSelector.d.ts","sourceRoot":"","sources":["../../../../src/model/w3c/svg/SVGSelector.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAErD,OAAO,KAAK,EAAsD,KAAK,EAAE,MAAM,YAAY,CAAC;AAG5F,MAAM,WAAW,WAAY,SAAQ,WAAW;IAE9C,IAAI,EAAE,aAAa,CAAC;IAEpB,KAAK,EAAE,MAAM,CAAC;CAEf;AA6DD,eAAO,MAAM,gBAAgB,qCAAsC,WAAW,GAAG,MAAM,MAOtF,CAAA;AAED,eAAO,MAAM,oBAAoB,UAAW,KAAK,KAAG,WAiBnD,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ImageAnnotatorState.d.ts","sourceRoot":"","sources":["../../src/state/ImageAnnotatorState.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAyB,MAAM,UAAU,CAAC;AACvE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAE1D,OAAO,EAGL,KAAK,cAAc,EACnB,KAAK,UAAU,EACf,KAAK,cAAc,EACpB,MAAM,mBAAmB,CAAC;AAM3B,OAAO,KAAK,EACV,oBAAoB,EAEpB,yBAAyB,EAC1B,MAAM,wBAAwB,CAAC;AAEhC,MAAM,MAAM,mBAAmB,CAAC,CAAC,SAAS,oBAAoB,GAAG,oBAAoB,IAAI,cAAc,CAAC,eAAe,CAAC,GAAG;IAEzH,KAAK,EAAE,CAAC,CAAC;IAET,SAAS,EAAE,cAAc,CAAC,eAAe,CAAC,CAAC;IAE3C,KAAK,EAAE,UAAU,CAAC,eAAe,CAAC,CAAC;CAEpC,CAAA;AAED,eAAO,MAAM,yBAAyB,
|
|
1
|
+
{"version":3,"file":"ImageAnnotatorState.d.ts","sourceRoot":"","sources":["../../src/state/ImageAnnotatorState.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAyB,MAAM,UAAU,CAAC;AACvE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAE1D,OAAO,EAGL,KAAK,cAAc,EACnB,KAAK,UAAU,EACf,KAAK,cAAc,EACpB,MAAM,mBAAmB,CAAC;AAM3B,OAAO,KAAK,EACV,oBAAoB,EAEpB,yBAAyB,EAC1B,MAAM,wBAAwB,CAAC;AAEhC,MAAM,MAAM,mBAAmB,CAAC,CAAC,SAAS,oBAAoB,GAAG,oBAAoB,IAAI,cAAc,CAAC,eAAe,CAAC,GAAG;IAEzH,KAAK,EAAE,CAAC,CAAC;IAET,SAAS,EAAE,cAAc,CAAC,eAAe,CAAC,CAAC;IAE3C,KAAK,EAAE,UAAU,CAAC,eAAe,CAAC,CAAC;CAEpC,CAAA;AAED,eAAO,MAAM,yBAAyB,oEAEnC,oBAAoB,oBAAoB,CAwC1C,CAAA;AAED,eAAO,MAAM,+BAA+B,oEAEzC,yBASF,CAAA"}
|
|
@@ -9,7 +9,7 @@ interface IndexedTarget {
|
|
|
9
9
|
export declare const createSpatialTree: () => {
|
|
10
10
|
all: () => IndexedTarget[];
|
|
11
11
|
clear: () => void;
|
|
12
|
-
getAt: (x: number, y: number) => ImageAnnotationTarget |
|
|
12
|
+
getAt: (x: number, y: number) => ImageAnnotationTarget | null;
|
|
13
13
|
getIntersecting: (x: number, y: number, width: number, height: number) => ImageAnnotationTarget[];
|
|
14
14
|
insert: (target: ImageAnnotationTarget) => void;
|
|
15
15
|
remove: (target: ImageAnnotationTarget) => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"spatialTree.d.ts","sourceRoot":"","sources":["../../src/state/spatialTree.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAEtD,UAAU,aAAa;IAErB,IAAI,EAAE,MAAM,CAAC;IAEb,IAAI,EAAE,MAAM,CAAC;IAEb,IAAI,EAAE,MAAM,CAAC;IAEb,IAAI,EAAE,MAAM,CAAC;IAEb,MAAM,EAAE,qBAAqB,CAAC;CAE/B;AAED,eAAO,MAAM,iBAAiB;;;
|
|
1
|
+
{"version":3,"file":"spatialTree.d.ts","sourceRoot":"","sources":["../../src/state/spatialTree.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAEtD,UAAU,aAAa;IAErB,IAAI,EAAE,MAAM,CAAC;IAEb,IAAI,EAAE,MAAM,CAAC;IAEb,IAAI,EAAE,MAAM,CAAC;IAEb,IAAI,EAAE,MAAM,CAAC;IAEb,MAAM,EAAE,qBAAqB,CAAC;CAE/B;AAED,eAAO,MAAM,iBAAiB;;;eA8CV,MAAM,KAAK,MAAM,KAAG,qBAAqB,GAAG,IAAI;yBAqBtC,MAAM,KAAK,MAAM,SAAS,MAAM,UAAU,MAAM;qBAtDpD,qBAAqB;qBASrB,qBAAqB;mBAWvB,qBAAqB,EAAE,YAAW,OAAO;;uBALrC,qBAAqB,WAAW,qBAAqB;CA6DhF,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@annotorious/annotorious",
|
|
3
|
-
"version": "3.0.0-rc.
|
|
3
|
+
"version": "3.0.0-rc.4",
|
|
4
4
|
"description": "Add image annotation functionality to any web page with a few lines of JavaScript",
|
|
5
5
|
"author": "Rainer Simon",
|
|
6
6
|
"license": "BSD-3-Clause",
|
|
@@ -33,22 +33,25 @@
|
|
|
33
33
|
"require": "./dist/annotorious.js"
|
|
34
34
|
},
|
|
35
35
|
"./annotorious.css": "./dist/annotorious.css",
|
|
36
|
-
"./src": "./src/index.ts"
|
|
36
|
+
"./src": "./src/index.ts",
|
|
37
|
+
"./src/annotation": "./src/annotation/index.ts",
|
|
38
|
+
"./src/model": "./src/model/index.ts"
|
|
37
39
|
},
|
|
38
40
|
"devDependencies": {
|
|
39
|
-
"@sveltejs/vite-plugin-svelte": "^
|
|
40
|
-
"@tsconfig/svelte": "^
|
|
41
|
-
"@types/rbush": "^3.0.
|
|
42
|
-
"jsdom": "^
|
|
43
|
-
"svelte": "^
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"vite": "^
|
|
47
|
-
"
|
|
48
|
-
|
|
41
|
+
"@sveltejs/vite-plugin-svelte": "^2.4.6",
|
|
42
|
+
"@tsconfig/svelte": "^3.0.0",
|
|
43
|
+
"@types/rbush": "^3.0.2",
|
|
44
|
+
"jsdom": "^22.1.0",
|
|
45
|
+
"svelte": "^3.59.2",
|
|
46
|
+
"typescript": "^4.9.5",
|
|
47
|
+
"vite": "^4.4.9",
|
|
48
|
+
"vite-plugin-dts": "^3.6.0",
|
|
49
|
+
"vitest": "^0.34.6"
|
|
50
|
+
},
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"@annotorious/core": "*"
|
|
49
53
|
},
|
|
50
54
|
"dependencies": {
|
|
51
|
-
"@annotorious/core": "^3.0.0-rc.20",
|
|
52
55
|
"rbush": "^3.0.1",
|
|
53
56
|
"uuid": "^9.0.1"
|
|
54
57
|
}
|
package/src/Annotorious.css
CHANGED
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
cursor: move;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
|
-
.a9s-handle {
|
|
40
|
+
.a9s-corner-handle {
|
|
41
41
|
cursor: move;
|
|
42
42
|
}
|
|
43
43
|
|
|
@@ -57,18 +57,18 @@
|
|
|
57
57
|
cursor: w-resize;
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
-
.a9s-handle.a9s-corner-handle-topleft {
|
|
60
|
+
.a9s-corner-handle.a9s-corner-handle-topleft {
|
|
61
61
|
cursor: nw-resize;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
-
.a9s-handle.a9s-corner-handle-topright {
|
|
64
|
+
.a9s-corner-handle.a9s-corner-handle-topright {
|
|
65
65
|
cursor: ne-resize;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
|
-
.a9s-handle.a9s-corner-handle-bottomright {
|
|
68
|
+
.a9s-corner-handle.a9s-corner-handle-bottomright {
|
|
69
69
|
cursor: se-resize;
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
-
.a9s-handle.a9s-corner-handle-bottomleft {
|
|
72
|
+
.a9s-corner-handle.a9s-corner-handle-bottomleft {
|
|
73
73
|
cursor: sw-resize;
|
|
74
74
|
}
|
package/src/Annotorious.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { SvelteComponent } from 'svelte';
|
|
2
|
-
import {
|
|
2
|
+
import type { Annotator, DrawingStyle, Filter, User } from '@annotorious/core';
|
|
3
3
|
import { createAnonymousGuest, createBaseAnnotator, createLifecyleObserver, createUndoStack } from '@annotorious/core';
|
|
4
4
|
import { registerEditor } from './annotation/editors';
|
|
5
5
|
import { getTool, registerTool, listDrawingTools, type DrawingTool } from './annotation/tools';
|
|
@@ -24,7 +24,7 @@ export interface ImageAnnotator<E extends unknown = ImageAnnotation> extends Ann
|
|
|
24
24
|
|
|
25
25
|
registerShapeEditor(shapeType: ShapeType, editor: typeof SvelteComponent): void;
|
|
26
26
|
|
|
27
|
-
setDrawingTool(
|
|
27
|
+
setDrawingTool(tool: DrawingTool): void;
|
|
28
28
|
|
|
29
29
|
setDrawingEnabled(enabled: boolean): void;
|
|
30
30
|
|
|
@@ -43,12 +43,7 @@ export const createImageAnnotator = <E extends unknown = ImageAnnotation>(
|
|
|
43
43
|
const img = (typeof image === 'string' ?
|
|
44
44
|
document.getElementById(image) : image) as HTMLImageElement | HTMLCanvasElement;
|
|
45
45
|
|
|
46
|
-
const opts = fillDefaults<ImageAnnotation, E>(options
|
|
47
|
-
drawingEnabled: true,
|
|
48
|
-
drawingMode: 'drag',
|
|
49
|
-
pointerSelectAction: PointerSelectAction.EDIT,
|
|
50
|
-
theme: 'light'
|
|
51
|
-
});
|
|
46
|
+
const opts = fillDefaults<ImageAnnotation, E>(options);
|
|
52
47
|
|
|
53
48
|
const state = createSvelteImageAnnotatorState(opts);
|
|
54
49
|
|
|
@@ -68,21 +63,21 @@ export const createImageAnnotator = <E extends unknown = ImageAnnotation>(
|
|
|
68
63
|
// Wrapper div has unwanted margin at the bottom otherwise!
|
|
69
64
|
img.style.display = 'block';
|
|
70
65
|
|
|
71
|
-
img.parentNode
|
|
66
|
+
img.parentNode.insertBefore(container, img);
|
|
72
67
|
container.appendChild(img);
|
|
73
68
|
|
|
74
69
|
const keyboardCommands = initKeyboardCommands(undoStack);
|
|
75
70
|
|
|
76
71
|
let currentUser: User = createAnonymousGuest();
|
|
77
72
|
|
|
78
|
-
_setTheme(img, container, opts.theme
|
|
73
|
+
_setTheme(img, container, opts.theme);
|
|
79
74
|
|
|
80
75
|
const annotationLayer = new SVGAnnotationLayer({
|
|
81
76
|
target: container,
|
|
82
77
|
props: {
|
|
83
|
-
drawingEnabled:
|
|
78
|
+
drawingEnabled: opts.drawingEnabled,
|
|
84
79
|
image: img,
|
|
85
|
-
preferredDrawingMode: opts.drawingMode
|
|
80
|
+
preferredDrawingMode: opts.drawingMode,
|
|
86
81
|
state,
|
|
87
82
|
style: opts.style,
|
|
88
83
|
user: currentUser
|
|
@@ -109,8 +104,8 @@ export const createImageAnnotator = <E extends unknown = ImageAnnotation>(
|
|
|
109
104
|
annotationLayer.$destroy();
|
|
110
105
|
|
|
111
106
|
// Unwrap the image
|
|
112
|
-
container.parentNode
|
|
113
|
-
container.parentNode
|
|
107
|
+
container.parentNode.insertBefore(img, container);
|
|
108
|
+
container.parentNode.removeChild(container);
|
|
114
109
|
|
|
115
110
|
// Other cleanup actions
|
|
116
111
|
keyboardCommands.destroy();
|
|
@@ -125,14 +120,10 @@ export const createImageAnnotator = <E extends unknown = ImageAnnotation>(
|
|
|
125
120
|
const registerShapeEditor = (shapeType: ShapeType, editor: typeof SvelteComponent) =>
|
|
126
121
|
registerEditor(shapeType, editor);
|
|
127
122
|
|
|
128
|
-
const setDrawingTool = (
|
|
129
|
-
|
|
130
|
-
const toolSpec = getTool(name);
|
|
131
|
-
if (!toolSpec)
|
|
132
|
-
throw `No drawing tool named ${name}`;
|
|
133
|
-
|
|
123
|
+
const setDrawingTool = (t: DrawingTool) => {
|
|
124
|
+
const { tool, opts } = getTool(t);
|
|
134
125
|
// @ts-ignore
|
|
135
|
-
annotationLayer.$set({
|
|
126
|
+
annotationLayer.$set({ tool, opts })
|
|
136
127
|
}
|
|
137
128
|
|
|
138
129
|
const setDrawingEnabled = (enabled: boolean) =>
|
package/src/AnnotoriousOpts.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { PointerSelectAction } from '@annotorious/core';
|
|
2
|
+
import type { Annotation, DrawingStyle, FormatAdapter } from '@annotorious/core';
|
|
2
3
|
import type { ImageAnnotation } from './model';
|
|
3
4
|
|
|
4
5
|
export interface AnnotoriousOpts<I extends Annotation = ImageAnnotation, E extends unknown = ImageAnnotation> {
|
|
@@ -26,16 +27,15 @@ export type DrawingMode = 'click' | 'drag';
|
|
|
26
27
|
export type Theme = 'dark' | 'light' | 'auto';
|
|
27
28
|
|
|
28
29
|
export const fillDefaults = <I extends ImageAnnotation = ImageAnnotation, E extends unknown = ImageAnnotation> (
|
|
29
|
-
opts: AnnotoriousOpts<I, E
|
|
30
|
-
defaults: AnnotoriousOpts<I, E>
|
|
30
|
+
opts: AnnotoriousOpts<I, E>
|
|
31
31
|
): AnnotoriousOpts<I, E> => {
|
|
32
32
|
|
|
33
33
|
return {
|
|
34
34
|
...opts,
|
|
35
|
-
drawingEnabled: opts.drawingEnabled === undefined ?
|
|
36
|
-
drawingMode: opts.drawingMode ||
|
|
37
|
-
pointerSelectAction: opts.pointerSelectAction ||
|
|
38
|
-
theme: opts.theme ||
|
|
35
|
+
drawingEnabled: opts.drawingEnabled === undefined ? true : opts.drawingEnabled,
|
|
36
|
+
drawingMode: opts.drawingMode || 'drag',
|
|
37
|
+
pointerSelectAction: opts.pointerSelectAction || PointerSelectAction.EDIT,
|
|
38
|
+
theme: opts.theme || 'light'
|
|
39
39
|
};
|
|
40
40
|
|
|
41
41
|
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
<script
|
|
2
|
-
import {
|
|
1
|
+
<script type="ts">
|
|
2
|
+
import { onMount, type SvelteComponent } from 'svelte';
|
|
3
3
|
import { v4 as uuidv4 } from 'uuid';
|
|
4
4
|
import type { DrawingStyle, StoreChangeEvent, User } from '@annotorious/core';
|
|
5
5
|
import { ShapeType } from '../model';
|
|
6
6
|
import type { ImageAnnotation, Shape} from '../model';
|
|
7
|
-
import { getEditor
|
|
7
|
+
import { getEditor, EditorMount } from './editors';
|
|
8
8
|
import { Ellipse, Polygon, Rectangle} from './shapes';
|
|
9
|
-
import { getTool,
|
|
9
|
+
import { getTool, ToolMount } from './tools';
|
|
10
10
|
import { enableResponsive } from './utils';
|
|
11
11
|
import { createSVGTransform } from './Transform';
|
|
12
12
|
import { addEventListeners } from './SVGAnnotationLayerPointerEvent';
|
|
@@ -18,12 +18,10 @@
|
|
|
18
18
|
export let image: HTMLImageElement | HTMLCanvasElement;
|
|
19
19
|
export let preferredDrawingMode: DrawingMode;
|
|
20
20
|
export let state: SvelteImageAnnotatorState;
|
|
21
|
-
export let style: DrawingStyle | ((annotation: ImageAnnotation) => DrawingStyle)
|
|
22
|
-
export let
|
|
21
|
+
export let style: DrawingStyle | ((annotation: ImageAnnotation) => DrawingStyle) = undefined;
|
|
22
|
+
export let { tool, opts } = getTool('rectangle');
|
|
23
23
|
export let user: User;
|
|
24
24
|
|
|
25
|
-
$: ({ tool, opts } = getTool(toolName) || { tool: undefined, opts: undefined });
|
|
26
|
-
|
|
27
25
|
$: drawingMode = opts?.drawingMode || preferredDrawingMode;
|
|
28
26
|
|
|
29
27
|
/** Drawing tool layer **/
|
|
@@ -43,17 +41,16 @@
|
|
|
43
41
|
|
|
44
42
|
$: ({ onPointerDown, onPointerUp } = addEventListeners(svgEl, store));
|
|
45
43
|
|
|
46
|
-
let storeObserver
|
|
44
|
+
let storeObserver = null;
|
|
47
45
|
|
|
48
|
-
let editableAnnotations: ImageAnnotation[]
|
|
46
|
+
let editableAnnotations: ImageAnnotation[] = null;
|
|
49
47
|
|
|
50
48
|
$: isEditable = (a: ImageAnnotation) => $selection.selected.find(s => s.id === a.id && s.editable);
|
|
51
49
|
|
|
52
50
|
$: trackSelection($selection.selected);
|
|
53
51
|
|
|
54
52
|
const trackSelection = (selected: { id: string, editable?: boolean }[]) => {
|
|
55
|
-
|
|
56
|
-
store.unobserve(storeObserver);
|
|
53
|
+
store.unobserve(storeObserver);
|
|
57
54
|
|
|
58
55
|
// Track only editable annotations
|
|
59
56
|
const editableIds =
|
|
@@ -61,17 +58,17 @@
|
|
|
61
58
|
|
|
62
59
|
if (editableIds.length > 0) {
|
|
63
60
|
// Resolve selected IDs from the store
|
|
64
|
-
editableAnnotations = editableIds.map(id => store.getAnnotation(id)
|
|
61
|
+
editableAnnotations = editableIds.map(id => store.getAnnotation(id));
|
|
65
62
|
|
|
66
63
|
// Track updates on the editable annotations
|
|
67
64
|
storeObserver = (event: StoreChangeEvent<ImageAnnotation>) => {
|
|
68
65
|
const { updated } = event.changes;
|
|
69
|
-
editableAnnotations = updated
|
|
66
|
+
editableAnnotations = updated.map(change => change.newValue);
|
|
70
67
|
}
|
|
71
68
|
|
|
72
69
|
store.observe(storeObserver, { annotations: editableIds });
|
|
73
70
|
} else {
|
|
74
|
-
editableAnnotations =
|
|
71
|
+
editableAnnotations = null;
|
|
75
72
|
}
|
|
76
73
|
}
|
|
77
74
|
|
|
@@ -109,13 +106,10 @@
|
|
|
109
106
|
...target,
|
|
110
107
|
selector: event.detail,
|
|
111
108
|
created: isUpdate ? target.created : new Date(),
|
|
112
|
-
updated: isUpdate ? new Date() :
|
|
113
|
-
updatedBy: isUpdate ? user :
|
|
109
|
+
updated: isUpdate ? new Date() : null,
|
|
110
|
+
updatedBy: isUpdate ? user : null
|
|
114
111
|
});
|
|
115
112
|
}
|
|
116
|
-
|
|
117
|
-
// To get around lack of TypeScript support in Svelte markup
|
|
118
|
-
const getEditor = (shape: Shape): typeof SvelteComponent => _getEditor(shape)!;
|
|
119
113
|
</script>
|
|
120
114
|
|
|
121
115
|
<svg
|
|
@@ -160,7 +154,7 @@
|
|
|
160
154
|
{/key}
|
|
161
155
|
{/each}
|
|
162
156
|
{:else if (tool && drawingEnabled)}
|
|
163
|
-
{#key
|
|
157
|
+
{#key tool}
|
|
164
158
|
<ToolMount
|
|
165
159
|
target={drawingEl}
|
|
166
160
|
tool={tool}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { createEventDispatcher } from 'svelte';
|
|
2
2
|
import type { SvelteImageAnnotationStore } from '../state';
|
|
3
3
|
import type { ImageAnnotation } from '../model';
|
|
4
|
+
import { isTouch } from './utils';
|
|
4
5
|
|
|
5
6
|
export interface SVGAnnotationLayerPointerEvent {
|
|
6
7
|
|
|
@@ -50,5 +51,5 @@ const getSVGPoint = (evt: PointerEvent, svg: SVGSVGElement) => {
|
|
|
50
51
|
pt.x = x + left;
|
|
51
52
|
pt.y = y + top;
|
|
52
53
|
|
|
53
|
-
return pt.matrixTransform(svg.getScreenCTM()
|
|
54
|
+
return pt.matrixTransform(svg.getScreenCTM().inverse());
|
|
54
55
|
}
|
|
@@ -19,7 +19,7 @@ export const createSVGTransform = (svg: SVGSVGElement): Transform => ({
|
|
|
19
19
|
pt.x = offsetX + bbox.x;
|
|
20
20
|
pt.y = offsetY + bbox.y;
|
|
21
21
|
|
|
22
|
-
const { x, y } = pt.matrixTransform(svg.getScreenCTM()
|
|
22
|
+
const { x, y } = pt.matrixTransform(svg.getScreenCTM().inverse());
|
|
23
23
|
return [x, y];
|
|
24
24
|
}
|
|
25
25
|
|
|
@@ -1,22 +1,23 @@
|
|
|
1
|
-
<script
|
|
1
|
+
<script type="ts">
|
|
2
2
|
import { createEventDispatcher } from 'svelte';
|
|
3
3
|
import type { Shape } from '../../model';
|
|
4
|
+
import type { Handle } from './Handle';
|
|
4
5
|
import type { Transform } from '../Transform';
|
|
5
6
|
|
|
6
|
-
const dispatch = createEventDispatcher<{ grab:
|
|
7
|
+
const dispatch = createEventDispatcher<{ grab: undefined, release: undefined, change: Shape }>();
|
|
7
8
|
|
|
8
9
|
/** Props */
|
|
9
10
|
export let shape: Shape;
|
|
10
|
-
export let editor: (shape: Shape, handle:
|
|
11
|
+
export let editor: (shape: Shape, handle: Handle, delta: [number, number]) => Shape;
|
|
11
12
|
export let transform: Transform;
|
|
12
13
|
|
|
13
|
-
let grabbedHandle:
|
|
14
|
+
let grabbedHandle: Handle = null;
|
|
14
15
|
|
|
15
16
|
let origin: [number, number];
|
|
16
17
|
|
|
17
|
-
let initialShape: Shape
|
|
18
|
+
let initialShape: Shape = null;
|
|
18
19
|
|
|
19
|
-
const onGrab = (handle:
|
|
20
|
+
const onGrab = (handle: Handle) => (evt: PointerEvent) => {
|
|
20
21
|
grabbedHandle = handle;
|
|
21
22
|
origin = transform.elementToImage(evt.offsetX, evt.offsetY);
|
|
22
23
|
initialShape = shape;
|
|
@@ -24,7 +25,7 @@
|
|
|
24
25
|
const target = evt.target as Element;
|
|
25
26
|
target.setPointerCapture(evt.pointerId);
|
|
26
27
|
|
|
27
|
-
dispatch('grab'
|
|
28
|
+
dispatch('grab');
|
|
28
29
|
}
|
|
29
30
|
|
|
30
31
|
const onPointerMove = (evt: PointerEvent) => {
|
|
@@ -33,7 +34,7 @@
|
|
|
33
34
|
|
|
34
35
|
const delta: [number, number] = [x - origin[0], y - origin[1]];
|
|
35
36
|
|
|
36
|
-
shape = editor(initialShape
|
|
37
|
+
shape = editor(initialShape, grabbedHandle, delta);
|
|
37
38
|
|
|
38
39
|
dispatch('change', shape);
|
|
39
40
|
}
|
|
@@ -43,11 +44,11 @@
|
|
|
43
44
|
const target = evt.target as Element;
|
|
44
45
|
target.releasePointerCapture(evt.pointerId);
|
|
45
46
|
|
|
46
|
-
grabbedHandle =
|
|
47
|
+
grabbedHandle = null;
|
|
47
48
|
|
|
48
49
|
initialShape = shape;
|
|
49
50
|
|
|
50
|
-
dispatch('release'
|
|
51
|
+
dispatch('release');
|
|
51
52
|
}
|
|
52
53
|
</script>
|
|
53
54
|
|
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
import { computeStyle } from '../utils/styling';
|
|
6
6
|
import type { Transform } from '../Transform';
|
|
7
7
|
|
|
8
|
-
const dispatch = createEventDispatcher<{ grab:
|
|
8
|
+
const dispatch = createEventDispatcher<{ grab: undefined, release: undefined, change: Shape }>();
|
|
9
9
|
|
|
10
10
|
/** Props */
|
|
11
11
|
export let annotation: ImageAnnotation;
|
|
12
12
|
export let editor: typeof SvelteComponent;
|
|
13
|
-
export let style: DrawingStyle | ((annotation: ImageAnnotation) => DrawingStyle)
|
|
13
|
+
export let style: DrawingStyle | ((annotation: ImageAnnotation) => DrawingStyle) = undefined;
|
|
14
14
|
export let target: SVGGElement;
|
|
15
15
|
export let transform: Transform;
|
|
16
16
|
export let viewportScale: number;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export type Handle = string;
|
|
2
|
+
|
|
3
|
+
export const Handle = (value: string | number) => `HANDLE-${value}`;
|
|
4
|
+
|
|
5
|
+
Handle.SHAPE = 'SHAPE';
|
|
6
|
+
|
|
7
|
+
Handle.TOP = 'TOP';
|
|
8
|
+
|
|
9
|
+
Handle.RIGHT = 'RIGHT';
|
|
10
|
+
|
|
11
|
+
Handle.BOTTOM = 'BOTTOM';
|
|
12
|
+
|
|
13
|
+
Handle.LEFT = 'LEFT';
|
|
14
|
+
|
|
15
|
+
Handle.TOP_LEFT = 'TOP_LEFT';
|
|
16
|
+
|
|
17
|
+
Handle.TOP_RIGHT = 'TOP_RIGHT';
|
|
18
|
+
|
|
19
|
+
Handle.BOTTOM_RIGHT = 'BOTTOM_RIGHT';
|
|
20
|
+
|
|
21
|
+
Handle.BOTTOM_LEFT = 'BOTTOM_LEFT';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export * from './polygon';
|
|
2
2
|
export * from './rectangle';
|
|
3
3
|
export * from './editorsRegistry';
|
|
4
|
+
export * from './Handle';
|
|
4
5
|
|
|
5
6
|
export { default as Editor } from './Editor.svelte';
|
|
6
|
-
export { default as EditorMount } from './EditorMount.svelte';
|
|
7
|
-
export { default as Handle } from './Handle.svelte';
|
|
7
|
+
export { default as EditorMount } from './EditorMount.svelte';
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
<script
|
|
1
|
+
<script type="ts">
|
|
2
2
|
import { boundsFromPoints } from '../../../model';
|
|
3
|
-
import type { Polygon
|
|
3
|
+
import type { Polygon } from '../../../model';
|
|
4
4
|
import type { Transform } from '../../Transform';
|
|
5
5
|
import { Editor, Handle } from '..';
|
|
6
6
|
|
|
7
7
|
/** Props */
|
|
8
8
|
export let shape: Polygon;
|
|
9
|
-
export let computedStyle: string
|
|
9
|
+
export let computedStyle: string = undefined;
|
|
10
10
|
export let transform: Transform;
|
|
11
11
|
export let viewportScale: number = 1;
|
|
12
12
|
|
|
13
13
|
$: geom = shape.geometry;
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
let points: [number, number][];
|
|
15
|
+
$: handleSize = 10 / viewportScale;
|
|
17
16
|
|
|
18
|
-
|
|
17
|
+
const editor = (polygon: Polygon, handle: Handle, delta: [number, number]) => {
|
|
18
|
+
let points: [number, number][];
|
|
19
19
|
|
|
20
|
-
if (handle ===
|
|
21
|
-
points =
|
|
20
|
+
if (handle === Handle.SHAPE) {
|
|
21
|
+
points = polygon.geometry.points.map(([x, y]) => [x + delta[0], y + delta[1]]);
|
|
22
22
|
} else {
|
|
23
|
-
points =
|
|
24
|
-
handle ===
|
|
23
|
+
points = polygon.geometry.points.map(([x, y], idx) =>
|
|
24
|
+
handle === Handle(idx) ? [x + delta[0], y + delta[1]] : [x, y]
|
|
25
25
|
);
|
|
26
26
|
}
|
|
27
27
|
|
|
@@ -46,19 +46,19 @@
|
|
|
46
46
|
<polygon
|
|
47
47
|
class="a9s-outer"
|
|
48
48
|
style={computedStyle ? 'display:none;' : undefined}
|
|
49
|
-
on:pointerdown={grab(
|
|
49
|
+
on:pointerdown={grab(Handle.SHAPE)}
|
|
50
50
|
points={geom.points.map(xy => xy.join(',')).join(' ')} />
|
|
51
51
|
|
|
52
52
|
<polygon
|
|
53
53
|
class="a9s-inner a9s-shape-handle"
|
|
54
54
|
style={computedStyle}
|
|
55
|
-
on:pointerdown={grab(
|
|
55
|
+
on:pointerdown={grab(Handle.SHAPE)}
|
|
56
56
|
points={geom.points.map(xy => xy.join(',')).join(' ')} />
|
|
57
57
|
|
|
58
58
|
{#each geom.points as point, idx}
|
|
59
|
-
<
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
59
|
+
<rect
|
|
60
|
+
class="a9s-corner-handle"
|
|
61
|
+
on:pointerdown={grab(Handle(idx))}
|
|
62
|
+
x={point[0] - handleSize / 2} y={point[1] - handleSize / 2} height={handleSize} width={handleSize} />
|
|
63
63
|
{/each}
|
|
64
64
|
</Editor>
|