@annotorious/annotorious 3.1.7 → 3.2.0

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.
Files changed (31) hide show
  1. package/dist/annotation/editors/editorsRegistry.d.ts +1 -1
  2. package/dist/annotation/editors/multipolygon/MultiPolygonEditor.svelte.d.ts +1 -0
  3. package/dist/annotation/editors/multipolygon/index.d.ts +1 -0
  4. package/dist/annotation/shapes/MultiPolygon.svelte.d.ts +1 -0
  5. package/dist/annotation/shapes/index.d.ts +1 -0
  6. package/dist/annotorious.css +1 -1
  7. package/dist/annotorious.es.js +2150 -1547
  8. package/dist/annotorious.es.js.map +1 -1
  9. package/dist/annotorious.js +1 -1
  10. package/dist/annotorious.js.map +1 -1
  11. package/dist/model/core/Shape.d.ts +1 -0
  12. package/dist/model/core/index.d.ts +1 -0
  13. package/dist/model/core/multipolygon/MultiPolygon.d.ts +15 -0
  14. package/dist/model/core/multipolygon/index.d.ts +2 -0
  15. package/dist/model/core/multipolygon/multiPolygonUtils.d.ts +3 -0
  16. package/dist/model/core/shapeUtils.d.ts +3 -0
  17. package/package.json +3 -3
  18. package/src/Annotorious.css +1 -0
  19. package/src/annotation/SVGAnnotationLayer.svelte +6 -0
  20. package/src/annotation/editors/editorsRegistry.ts +4 -2
  21. package/src/annotation/editors/multipolygon/MultiPolygonEditor.svelte +116 -0
  22. package/src/annotation/editors/multipolygon/index.ts +1 -0
  23. package/src/annotation/shapes/MultiPolygon.svelte +31 -0
  24. package/src/annotation/shapes/index.ts +1 -0
  25. package/src/model/core/Shape.ts +2 -0
  26. package/src/model/core/index.ts +1 -0
  27. package/src/model/core/multipolygon/MultiPolygon.ts +30 -0
  28. package/src/model/core/multipolygon/index.ts +2 -0
  29. package/src/model/core/multipolygon/multiPolygonUtils.ts +63 -0
  30. package/src/model/core/polygon/polygonUtils.ts +6 -29
  31. package/src/model/core/shapeUtils.ts +49 -1
@@ -1,4 +1,4 @@
1
- import { ShapeType, Shape } from '../../model';
2
1
  import { SvelteComponent } from 'svelte';
2
+ import { ShapeType, Shape } from '../../model';
3
3
  export declare const getEditor: (shape: Shape) => typeof SvelteComponent | undefined;
4
4
  export declare const registerEditor: (shapeType: ShapeType, editor: typeof SvelteComponent) => Map<ShapeType, typeof SvelteComponent>;
@@ -0,0 +1 @@
1
+ export { SvelteComponent as default } from 'svelte';
@@ -0,0 +1 @@
1
+ export { default as MultiPolygonEditor } from './MultiPolygonEditor.svelte';
@@ -0,0 +1 @@
1
+ export { SvelteComponent as default } from 'svelte';
@@ -1,3 +1,4 @@
1
1
  export { default as Ellipse } from './Ellipse.svelte';
2
+ export { default as MultiPolygon } from './MultiPolygon.svelte';
2
3
  export { default as Polygon } from './Polygon.svelte';
3
4
  export { default as Rectangle } from './Rectangle.svelte';
@@ -1 +1 @@
1
- .a9s-touch-halo.svelte-1sgkh33{fill:transparent;stroke-width:0}.a9s-touch-halo.touched.svelte-1sgkh33{fill:#ffffff40}.a9s-annotationlayer{box-sizing:border-box;height:100%;left:0;outline:none;position:absolute;top:0;touch-action:none;width:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.a9s-annotationlayer.hidden{display:none}.a9s-annotationlayer .a9s-annotation{cursor:pointer}.a9s-annotationlayer ellipse,.a9s-annotationlayer polygon,.a9s-annotationlayer rect{fill:transparent;shape-rendering:geometricPrecision;vector-effect:non-scaling-stroke}.a9s-edge-handle{fill:transparent;stroke:transparent;stroke-width:6px}.a9s-shape-handle,.a9s-handle{cursor:move}.a9s-edge-handle-top{cursor:n-resize}.a9s-edge-handle-right{cursor:e-resize}.a9s-edge-handle-bottom{cursor:s-resize}.a9s-edge-handle-left{cursor:w-resize}.a9s-handle.a9s-corner-handle-topleft{cursor:nw-resize}.a9s-handle.a9s-corner-handle-topright{cursor:ne-resize}.a9s-handle.a9s-corner-handle-bottomright{cursor:se-resize}.a9s-handle.a9s-corner-handle-bottomleft{cursor:sw-resize}.a9s-annotationlayer .a9s-outer,div[data-theme=dark] .a9s-annotationlayer .a9s-outer{display:none}.a9s-annotationlayer .a9s-inner,div[data-theme=dark] .a9s-annotationlayer .a9s-inner{fill:#0000001f;stroke:#000;stroke-width:1px}rect.a9s-handle,div[data-theme=dark] rect.a9s-handle{fill:#000;rx:2px}rect.a9s-close-polygon-handle,div[data-theme=dark] rect.a9s-close-polygon-handle{fill:#000;rx:1px}.a9s-annotationlayer .a9s-outer,div[data-theme=light] .a9s-annotationlayer .a9s-outer{display:block;stroke:#00000040;stroke-width:3.5px}.a9s-annotationlayer .a9s-inner,div[data-theme=light] .a9s-annotationlayer .a9s-inner{fill:#ffffff26;stroke:#fff;stroke-width:1.5px}rect.a9s-handle,div[data-theme=light] rect.a9s-handle{fill:#fff;rx:1px;stroke:#00000073;stroke-width:1px}rect.a9s-close-polygon-handle,div[data-theme=light] rect.a9s-close-polygon-handle{fill:#fff;rx:1px;stroke:#00000073;stroke-width:1px}
1
+ .a9s-touch-halo.svelte-1sgkh33{fill:transparent;stroke-width:0}.a9s-touch-halo.touched.svelte-1sgkh33{fill:#ffffff40}.a9s-annotationlayer{box-sizing:border-box;height:100%;left:0;outline:none;position:absolute;top:0;touch-action:none;width:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.a9s-annotationlayer.hidden{display:none}.a9s-annotationlayer .a9s-annotation{cursor:pointer}.a9s-annotationlayer ellipse,.a9s-annotationlayer path,.a9s-annotationlayer polygon,.a9s-annotationlayer rect{fill:transparent;shape-rendering:geometricPrecision;vector-effect:non-scaling-stroke}.a9s-edge-handle{fill:transparent;stroke:transparent;stroke-width:6px}.a9s-shape-handle,.a9s-handle{cursor:move}.a9s-edge-handle-top{cursor:n-resize}.a9s-edge-handle-right{cursor:e-resize}.a9s-edge-handle-bottom{cursor:s-resize}.a9s-edge-handle-left{cursor:w-resize}.a9s-handle.a9s-corner-handle-topleft{cursor:nw-resize}.a9s-handle.a9s-corner-handle-topright{cursor:ne-resize}.a9s-handle.a9s-corner-handle-bottomright{cursor:se-resize}.a9s-handle.a9s-corner-handle-bottomleft{cursor:sw-resize}.a9s-annotationlayer .a9s-outer,div[data-theme=dark] .a9s-annotationlayer .a9s-outer{display:none}.a9s-annotationlayer .a9s-inner,div[data-theme=dark] .a9s-annotationlayer .a9s-inner{fill:#0000001f;stroke:#000;stroke-width:1px}rect.a9s-handle,div[data-theme=dark] rect.a9s-handle{fill:#000;rx:2px}rect.a9s-close-polygon-handle,div[data-theme=dark] rect.a9s-close-polygon-handle{fill:#000;rx:1px}.a9s-annotationlayer .a9s-outer,div[data-theme=light] .a9s-annotationlayer .a9s-outer{display:block;stroke:#00000040;stroke-width:3.5px}.a9s-annotationlayer .a9s-inner,div[data-theme=light] .a9s-annotationlayer .a9s-inner{fill:#ffffff26;stroke:#fff;stroke-width:1.5px}rect.a9s-handle,div[data-theme=light] rect.a9s-handle{fill:#fff;rx:1px;stroke:#00000073;stroke-width:1px}rect.a9s-close-polygon-handle,div[data-theme=light] rect.a9s-close-polygon-handle{fill:#fff;rx:1px;stroke:#00000073;stroke-width:1px}