├── .babelrc ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── d3-annotation.independent.js ├── d3-annotation.independent.js.map ├── d3-annotation.independent.min.js ├── d3-annotation.js ├── d3-annotation.js.map ├── d3-annotation.min.js ├── docs ├── About.md ├── browserify-docs.js ├── bundle.js ├── bundle.map ├── content │ ├── api.md │ ├── contents.md │ ├── extend-explanation.md │ ├── extend.md │ ├── inpractice.md │ ├── introduction.md │ ├── notes.md │ └── start.md ├── custom-highlightjs-build │ ├── README.md │ ├── highlight.js │ └── index.js ├── docs-compiled.js ├── docs.js ├── img │ ├── a-badge.png │ ├── a-callout.png │ ├── a-circle.png │ ├── a-curve.png │ ├── a-elbow.png │ ├── a-label.png │ ├── a-rect.png │ ├── a-threshold.png │ ├── anatomy.png │ ├── arrow.png │ ├── basis.png │ ├── cardinal.png │ ├── circle-pack.png │ ├── classes.png │ ├── curve.png │ ├── dot.png │ ├── dots.png │ ├── down.png │ ├── dynamic.png │ ├── elbow.png │ ├── encircle.png │ ├── example1.png │ ├── example2.png │ ├── example3.png │ ├── heart.png │ ├── horizontal.png │ ├── json.png │ ├── left.png │ ├── leftRight.png │ ├── line.png │ ├── linear.png │ ├── makeover.png │ ├── map-edit-mode.jpg │ ├── menu.png │ ├── middle.png │ ├── none.png │ ├── overlapping.png │ ├── post.png │ ├── resize.png │ ├── right.png │ ├── step.png │ ├── tooltip.png │ ├── top.png │ ├── topBottom.png │ └── vertical.png ├── index.html └── vendor │ ├── d3-dispatch.js │ ├── d3-drag.js │ ├── d3-path.js │ ├── d3-selection.js │ ├── d3-shape.js │ ├── d3-transition.js │ ├── highlight.css │ ├── hightlight.js │ ├── jquery2.1.1.min.js │ ├── materialize.min.css │ └── materialize.min.js ├── index.js ├── indexRollup.js ├── indexRollup.js.map ├── indexRollupNext.js ├── indexRollupNext.js.map ├── package.json ├── rollup.config.js ├── rollupNext.config.js ├── rollupWeb.config.js ├── rollupWebIndependent.config.js ├── src ├── Adapter-d3.js ├── Annotation.js ├── AnnotationCollection.js ├── Builder.js ├── Connector │ ├── end-arrow.js │ ├── end-dot.js │ ├── type-curve.js │ ├── type-elbow.js │ └── type-line.js ├── Handles.js ├── Note │ ├── alignment.js │ ├── lineType-horizontal.js │ ├── lineType-vertical.js │ └── type-text.js ├── Subject │ ├── badge.js │ ├── circle.js │ ├── rect.js │ └── threshold.js └── Types-d3.js ├── test ├── connector.test.js ├── note.test.js ├── subject.badge.test.js └── utils.js ├── tsconfig.json ├── types └── d3-svg-annotation.d.ts └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/README.md -------------------------------------------------------------------------------- /d3-annotation.independent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/d3-annotation.independent.js -------------------------------------------------------------------------------- /d3-annotation.independent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/d3-annotation.independent.js.map -------------------------------------------------------------------------------- /d3-annotation.independent.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/d3-annotation.independent.min.js -------------------------------------------------------------------------------- /d3-annotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/d3-annotation.js -------------------------------------------------------------------------------- /d3-annotation.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/d3-annotation.js.map -------------------------------------------------------------------------------- /d3-annotation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/d3-annotation.min.js -------------------------------------------------------------------------------- /docs/About.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/About.md -------------------------------------------------------------------------------- /docs/browserify-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/browserify-docs.js -------------------------------------------------------------------------------- /docs/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/bundle.js -------------------------------------------------------------------------------- /docs/bundle.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/bundle.map -------------------------------------------------------------------------------- /docs/content/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/content/api.md -------------------------------------------------------------------------------- /docs/content/contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/content/contents.md -------------------------------------------------------------------------------- /docs/content/extend-explanation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/content/extend-explanation.md -------------------------------------------------------------------------------- /docs/content/extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/content/extend.md -------------------------------------------------------------------------------- /docs/content/inpractice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/content/inpractice.md -------------------------------------------------------------------------------- /docs/content/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/content/introduction.md -------------------------------------------------------------------------------- /docs/content/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/content/notes.md -------------------------------------------------------------------------------- /docs/content/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/content/start.md -------------------------------------------------------------------------------- /docs/custom-highlightjs-build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/custom-highlightjs-build/README.md -------------------------------------------------------------------------------- /docs/custom-highlightjs-build/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/custom-highlightjs-build/highlight.js -------------------------------------------------------------------------------- /docs/custom-highlightjs-build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/custom-highlightjs-build/index.js -------------------------------------------------------------------------------- /docs/docs-compiled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/docs-compiled.js -------------------------------------------------------------------------------- /docs/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/docs.js -------------------------------------------------------------------------------- /docs/img/a-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/a-badge.png -------------------------------------------------------------------------------- /docs/img/a-callout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/a-callout.png -------------------------------------------------------------------------------- /docs/img/a-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/a-circle.png -------------------------------------------------------------------------------- /docs/img/a-curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/a-curve.png -------------------------------------------------------------------------------- /docs/img/a-elbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/a-elbow.png -------------------------------------------------------------------------------- /docs/img/a-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/a-label.png -------------------------------------------------------------------------------- /docs/img/a-rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/a-rect.png -------------------------------------------------------------------------------- /docs/img/a-threshold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/a-threshold.png -------------------------------------------------------------------------------- /docs/img/anatomy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/anatomy.png -------------------------------------------------------------------------------- /docs/img/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/arrow.png -------------------------------------------------------------------------------- /docs/img/basis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/basis.png -------------------------------------------------------------------------------- /docs/img/cardinal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/cardinal.png -------------------------------------------------------------------------------- /docs/img/circle-pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/circle-pack.png -------------------------------------------------------------------------------- /docs/img/classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/classes.png -------------------------------------------------------------------------------- /docs/img/curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/curve.png -------------------------------------------------------------------------------- /docs/img/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/dot.png -------------------------------------------------------------------------------- /docs/img/dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/dots.png -------------------------------------------------------------------------------- /docs/img/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/down.png -------------------------------------------------------------------------------- /docs/img/dynamic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/dynamic.png -------------------------------------------------------------------------------- /docs/img/elbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/elbow.png -------------------------------------------------------------------------------- /docs/img/encircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/encircle.png -------------------------------------------------------------------------------- /docs/img/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/example1.png -------------------------------------------------------------------------------- /docs/img/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/example2.png -------------------------------------------------------------------------------- /docs/img/example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/example3.png -------------------------------------------------------------------------------- /docs/img/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/heart.png -------------------------------------------------------------------------------- /docs/img/horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/horizontal.png -------------------------------------------------------------------------------- /docs/img/json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/json.png -------------------------------------------------------------------------------- /docs/img/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/left.png -------------------------------------------------------------------------------- /docs/img/leftRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/leftRight.png -------------------------------------------------------------------------------- /docs/img/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/line.png -------------------------------------------------------------------------------- /docs/img/linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/linear.png -------------------------------------------------------------------------------- /docs/img/makeover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/makeover.png -------------------------------------------------------------------------------- /docs/img/map-edit-mode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/map-edit-mode.jpg -------------------------------------------------------------------------------- /docs/img/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/menu.png -------------------------------------------------------------------------------- /docs/img/middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/middle.png -------------------------------------------------------------------------------- /docs/img/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/none.png -------------------------------------------------------------------------------- /docs/img/overlapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/overlapping.png -------------------------------------------------------------------------------- /docs/img/post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/post.png -------------------------------------------------------------------------------- /docs/img/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/resize.png -------------------------------------------------------------------------------- /docs/img/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/right.png -------------------------------------------------------------------------------- /docs/img/step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/step.png -------------------------------------------------------------------------------- /docs/img/tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/tooltip.png -------------------------------------------------------------------------------- /docs/img/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/top.png -------------------------------------------------------------------------------- /docs/img/topBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/topBottom.png -------------------------------------------------------------------------------- /docs/img/vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/img/vertical.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/vendor/d3-dispatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/vendor/d3-dispatch.js -------------------------------------------------------------------------------- /docs/vendor/d3-drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/vendor/d3-drag.js -------------------------------------------------------------------------------- /docs/vendor/d3-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/vendor/d3-path.js -------------------------------------------------------------------------------- /docs/vendor/d3-selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/vendor/d3-selection.js -------------------------------------------------------------------------------- /docs/vendor/d3-shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/vendor/d3-shape.js -------------------------------------------------------------------------------- /docs/vendor/d3-transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/vendor/d3-transition.js -------------------------------------------------------------------------------- /docs/vendor/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/vendor/highlight.css -------------------------------------------------------------------------------- /docs/vendor/hightlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/vendor/hightlight.js -------------------------------------------------------------------------------- /docs/vendor/jquery2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/vendor/jquery2.1.1.min.js -------------------------------------------------------------------------------- /docs/vendor/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/vendor/materialize.min.css -------------------------------------------------------------------------------- /docs/vendor/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/docs/vendor/materialize.min.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/index.js -------------------------------------------------------------------------------- /indexRollup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/indexRollup.js -------------------------------------------------------------------------------- /indexRollup.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/indexRollup.js.map -------------------------------------------------------------------------------- /indexRollupNext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/indexRollupNext.js -------------------------------------------------------------------------------- /indexRollupNext.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/indexRollupNext.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/rollup.config.js -------------------------------------------------------------------------------- /rollupNext.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/rollupNext.config.js -------------------------------------------------------------------------------- /rollupWeb.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/rollupWeb.config.js -------------------------------------------------------------------------------- /rollupWebIndependent.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/rollupWebIndependent.config.js -------------------------------------------------------------------------------- /src/Adapter-d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/src/Adapter-d3.js -------------------------------------------------------------------------------- /src/Annotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/src/Annotation.js -------------------------------------------------------------------------------- /src/AnnotationCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/src/AnnotationCollection.js -------------------------------------------------------------------------------- /src/Builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/src/Builder.js -------------------------------------------------------------------------------- /src/Connector/end-arrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/src/Connector/end-arrow.js -------------------------------------------------------------------------------- /src/Connector/end-dot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/src/Connector/end-dot.js -------------------------------------------------------------------------------- /src/Connector/type-curve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/src/Connector/type-curve.js -------------------------------------------------------------------------------- /src/Connector/type-elbow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/src/Connector/type-elbow.js -------------------------------------------------------------------------------- /src/Connector/type-line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/src/Connector/type-line.js -------------------------------------------------------------------------------- /src/Handles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/src/Handles.js -------------------------------------------------------------------------------- /src/Note/alignment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/src/Note/alignment.js -------------------------------------------------------------------------------- /src/Note/lineType-horizontal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/src/Note/lineType-horizontal.js -------------------------------------------------------------------------------- /src/Note/lineType-vertical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/src/Note/lineType-vertical.js -------------------------------------------------------------------------------- /src/Note/type-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/src/Note/type-text.js -------------------------------------------------------------------------------- /src/Subject/badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/src/Subject/badge.js -------------------------------------------------------------------------------- /src/Subject/circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/src/Subject/circle.js -------------------------------------------------------------------------------- /src/Subject/rect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/src/Subject/rect.js -------------------------------------------------------------------------------- /src/Subject/threshold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/src/Subject/threshold.js -------------------------------------------------------------------------------- /src/Types-d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/src/Types-d3.js -------------------------------------------------------------------------------- /test/connector.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/test/connector.test.js -------------------------------------------------------------------------------- /test/note.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/test/note.test.js -------------------------------------------------------------------------------- /test/subject.badge.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/test/subject.badge.test.js -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/test/utils.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/d3-svg-annotation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/types/d3-svg-annotation.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susielu/d3-annotation/HEAD/yarn.lock --------------------------------------------------------------------------------