npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-annotator2

v0.15.1

Published

Vue Component for drawing annotation (box, etc)

Downloads

23

Readme

vue-annotator CircleCI

npm npm donate

Create annotation using SVG and HTML element.

Usage

For complete example see src/stories/*/*.vue

<v-annotator inertia
  :drawing="enableDrawingMode"
  @select="openDialog"
  :minSize="[50, 50]"
  :grid="[5, 5]"
  :multipleSelect="keyIsDown.Ctrl"
>

    <img draggable="false" src="background.png" />

    <rect slot="annotation" stroke="green" x="300" y="150" width="170" height="100" />
    <polygon slot="annotation" stroke="purple" points="200,10 250,190 160,210" />

    <rect slot="drawing" stroke="red" />

</v-annotator>
<style scoped>
@import '~vue-annotator/style.css';

/* Your beloved style */
</style>

Due to https://github.com/taye/interact.js/issues/623

In tsconfig.json

{
  compilerOptions: {
    skipLibCheck: true
  }
}

Now it should work fine

import { Vue, Component } from 'vue-property-decorator'
import VAnnotator from 'vue-annotator'

@Component({ components: { VAnnotator } })
export class MyCanvas extends Vue {
  /** Your beloved logic */
}

API References

Props

* : must be set if no background

| Parameters | Description | Type | Must Specify | Default value | |---------- |-------- |---------- |---------- |---------- | | width | width of drawing canvas | Number | *optional | width of background | | height | width of drawing canvas | Number | *optional | height of background | | grid | set grid for snapping. :grid="[w,h]" for setting width and height. :grid="w" for setting grid in square | Array[2] or Number | optional | null | | min-size | set minimum size of annotation. :minSize="[w,h]" for set minimum width and height of annotation size. :grid="w" for set minimum width and height of annotation size equal to w | Array[2] or Number | optional | false | | drawing | switch to drawing mode | Boolean | optional | false | | inertia | enable inertia moment animation when interacting | Boolean | optional | false | | multiple-select | enable multiple select | Boolean | optional | false | | mouse-select | restrict select only for specific mouse button | String of left|right|middle | optional | | delete.sync | delete selected element when set to true | Boolean | optional |

Slots

* : will error when more than 1 element to be provided

| Method name | Description | Accepted Element | |---------- |-------- |---------- | | default | background element of annotation | Any HTML element | | annotation | annotation element (accept SVG element) | <rect>, <ellipse>, <circle>, <polygon>, <path>, <foreignObject> | | drawing | *draw element via mouse click&drag | <rect>, <ellipse>, <circle> |

Events

| Event name | Description | Parameters | |---------- |-------- |---------- | | select | emit when element is click/select | element: SVG.Element | | select-left | emit when element is clicked with left mouse button | element: SVG.Element | | select-middle | emit when element is clicked with middle mouse button | element: SVG.Element | | select-right | emit when element is clicked with right mouse button | element: SVG.Element | | unselect | emit when element is unselected (by clicking the background) | element: SVG.Element | | move | emit when element is moved | element: SVG.Element | | move-end | emit after the element is moved | element: SVG.Element | | resize | emit when element is resized | element: SVG.Element | | resize-end | emit after the element is resized | element: SVG.Element | | draw | emit when drawing an element | element: SVG.Element | | draw-end | emit when drawing element is finish | element: SVG.Element | | draw-cancel | emit when drawing element is canceled (via right click) | | update:delete | emit when shape was successfully deleted |

Tips: use element.node.isSameNode(this.$refs.myAnnotation) for identifying the element.

Style CSS

Vue-Annotator use svg.select.js

| Class name | Description | Notes |---------- |-------- |--------- | | .svg_select_boundingRect | define style of rectangle in selected element | only applicable on <rect>, <circle>, <ellipse> | | .svg_select_points | define style of edge circles in selected element |

default style

.svg_select_points {
  stroke-width: 1;
  fill: black;
  stroke-dasharray: 10 10;
  stroke: black;
  stroke-opacity: 0.8;
  pointer-events: none; /* This ons is needed if you want to deselect or drag the shape*/
}

.svg_select_boundingRect {
  display: none;
}

Support

See CONTRIBUTING.md for contributing directly via:

License

MIT License