├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .eslintrc.test.config.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── stale.yml └── workflows │ └── nodejs.yml ├── .github_changelog_generator ├── .gitignore ├── .npmignore ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc.js ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── HISTORY.md ├── LICENSE ├── README.md ├── RELEASE_PROCESS.md ├── cypress.json ├── cypress ├── fixtures │ └── example.json ├── integration │ ├── graph.directed.e2e.js │ ├── graph.e2e.js │ ├── link.e2e.js │ └── node.e2e.js ├── page-objects │ ├── link.po.js │ ├── marker.po.js │ ├── node.po.js │ └── sandbox.po.js ├── plugins │ └── index.js └── support │ ├── commands.js │ └── index.js ├── docs ├── 0.3.0.html ├── 0.4.0.html ├── 1.0.0.html ├── 1.0.1.html ├── 1.2.0.html ├── 1.2.2.html ├── 1.3.0.html ├── 2.0.2.html ├── 2.1.0.html ├── 2.2.0.html ├── 2.3.0.html ├── 2.4.1.html ├── 2.5.0.html ├── DOCUMENTATION.md ├── assets │ ├── anchor.js │ ├── bass-addons.css │ ├── bass.css │ ├── fonts │ │ ├── EOT │ │ │ ├── SourceCodePro-Bold.eot │ │ │ └── SourceCodePro-Regular.eot │ │ ├── LICENSE.txt │ │ ├── OTF │ │ │ ├── SourceCodePro-Bold.otf │ │ │ └── SourceCodePro-Regular.otf │ │ ├── TTF │ │ │ ├── SourceCodePro-Bold.ttf │ │ │ └── SourceCodePro-Regular.ttf │ │ ├── WOFF │ │ │ ├── OTF │ │ │ │ ├── SourceCodePro-Bold.otf.woff │ │ │ │ └── SourceCodePro-Regular.otf.woff │ │ │ └── TTF │ │ │ │ ├── SourceCodePro-Bold.ttf.woff │ │ │ │ └── SourceCodePro-Regular.ttf.woff │ │ ├── WOFF2 │ │ │ ├── OTF │ │ │ │ ├── SourceCodePro-Bold.otf.woff2 │ │ │ │ └── SourceCodePro-Regular.otf.woff2 │ │ │ └── TTF │ │ │ │ ├── SourceCodePro-Bold.ttf.woff2 │ │ │ │ └── SourceCodePro-Regular.ttf.woff2 │ │ └── source-code-pro.css │ ├── github.css │ ├── site.js │ ├── split.css │ ├── split.js │ └── style.css ├── index.html ├── rd3g-bend.gif ├── rd3g-collapsible.gif ├── rd3g-custom-svg.gif ├── rd3g-directed.gif ├── rd3g-link-render-label.png ├── rd3g-zoom-animation.gif └── tweak-logo.png ├── documentation.yml ├── jest.config.js ├── package.json ├── sandbox ├── Sandbox.jsx ├── analytics.js ├── createCodeSandbox.js ├── data │ ├── custom-node │ │ ├── CustomNode.jsx │ │ ├── custom-node.config.js │ │ ├── custom-node.data.js │ │ └── res │ │ │ ├── images │ │ │ ├── bike.svg │ │ │ ├── car.svg │ │ │ ├── girl.svg │ │ │ └── man.svg │ │ │ └── styles │ │ │ └── custom-node.css │ ├── default.js │ ├── marvel │ │ ├── marvel.config.js │ │ └── marvel.data.js │ ├── small │ │ ├── small.config.js │ │ └── small.data.js │ └── static │ │ ├── static.config.js │ │ └── static.data.js ├── favicon.ico ├── graph-config-tooltips.js ├── index.html ├── index.jsx ├── rd3g.sandbox.bundle.js ├── rd3g.sandbox.bundle.js.map ├── rd3g_v2.gif ├── sample.svg ├── styles.css └── utils.js ├── src ├── components │ ├── graph │ │ ├── Graph.jsx │ │ ├── collapse.helper.js │ │ ├── graph.builder.js │ │ ├── graph.config.js │ │ ├── graph.const.js │ │ ├── graph.helper.js │ │ └── graph.renderer.jsx │ ├── link │ │ ├── Link.jsx │ │ ├── link.const.js │ │ └── link.helper.js │ ├── marker │ │ ├── Marker.jsx │ │ ├── marker.const.js │ │ └── marker.helper.js │ └── node │ │ ├── Node.jsx │ │ ├── node.const.js │ │ └── node.helper.js ├── const.js ├── err.js ├── index.js └── utils.js ├── test ├── graph │ ├── __snapshots__ │ │ ├── collapse.helper.spec.js.snap │ │ ├── graph.builder.spec.js.snap │ │ ├── graph.helper.spec.js.snap │ │ └── graph.snapshot.spec.js.snap │ ├── collapse.helper.spec.js │ ├── graph.builder.spec.js │ ├── graph.helper.spec.js │ ├── graph.mock.js │ ├── graph.snapshot.spec.js │ └── graph.spec.js ├── link │ ├── __snapshots__ │ │ └── link.snapshot.spec.js.snap │ ├── link.helper.spec.js │ ├── link.snapshot.spec.js │ └── link.spec.js ├── marker │ ├── __snapshots__ │ │ └── marker.snapshot.spec.js.snap │ ├── marker.helper.spec.js │ └── marker.snapshot.spec.js ├── node │ ├── __snapshots__ │ │ └── node.snapshot.spec.js.snap │ ├── node.snapshot.spec.js │ └── node.spec.js └── utils.spec.js ├── tools ├── graph-config-jsdoc.json └── tooltips-docs-generator.js ├── tsconfig.json ├── webpack.config.dist.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /cypress/** 2 | /sandbox/rd3g* -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.eslintrc.test.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/.eslintrc.test.config.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github_changelog_generator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/.github_changelog_generator -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12.13.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "javascript.validate.enable": false 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_PROCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/RELEASE_PROCESS.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "video": false 3 | } 4 | -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/graph.directed.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/cypress/integration/graph.directed.e2e.js -------------------------------------------------------------------------------- /cypress/integration/graph.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/cypress/integration/graph.e2e.js -------------------------------------------------------------------------------- /cypress/integration/link.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/cypress/integration/link.e2e.js -------------------------------------------------------------------------------- /cypress/integration/node.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/cypress/integration/node.e2e.js -------------------------------------------------------------------------------- /cypress/page-objects/link.po.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/cypress/page-objects/link.po.js -------------------------------------------------------------------------------- /cypress/page-objects/marker.po.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/cypress/page-objects/marker.po.js -------------------------------------------------------------------------------- /cypress/page-objects/node.po.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/cypress/page-objects/node.po.js -------------------------------------------------------------------------------- /cypress/page-objects/sandbox.po.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/cypress/page-objects/sandbox.po.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /docs/0.3.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/0.3.0.html -------------------------------------------------------------------------------- /docs/0.4.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/0.4.0.html -------------------------------------------------------------------------------- /docs/1.0.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/1.0.0.html -------------------------------------------------------------------------------- /docs/1.0.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/1.0.1.html -------------------------------------------------------------------------------- /docs/1.2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/1.2.0.html -------------------------------------------------------------------------------- /docs/1.2.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/1.2.2.html -------------------------------------------------------------------------------- /docs/1.3.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/1.3.0.html -------------------------------------------------------------------------------- /docs/2.0.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/2.0.2.html -------------------------------------------------------------------------------- /docs/2.1.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/2.1.0.html -------------------------------------------------------------------------------- /docs/2.2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/2.2.0.html -------------------------------------------------------------------------------- /docs/2.3.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/2.3.0.html -------------------------------------------------------------------------------- /docs/2.4.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/2.4.1.html -------------------------------------------------------------------------------- /docs/2.5.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/2.5.0.html -------------------------------------------------------------------------------- /docs/DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/DOCUMENTATION.md -------------------------------------------------------------------------------- /docs/assets/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/anchor.js -------------------------------------------------------------------------------- /docs/assets/bass-addons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/bass-addons.css -------------------------------------------------------------------------------- /docs/assets/bass.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/bass.css -------------------------------------------------------------------------------- /docs/assets/fonts/EOT/SourceCodePro-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/fonts/EOT/SourceCodePro-Bold.eot -------------------------------------------------------------------------------- /docs/assets/fonts/EOT/SourceCodePro-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/fonts/EOT/SourceCodePro-Regular.eot -------------------------------------------------------------------------------- /docs/assets/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/fonts/LICENSE.txt -------------------------------------------------------------------------------- /docs/assets/fonts/OTF/SourceCodePro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/fonts/OTF/SourceCodePro-Bold.otf -------------------------------------------------------------------------------- /docs/assets/fonts/OTF/SourceCodePro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/fonts/OTF/SourceCodePro-Regular.otf -------------------------------------------------------------------------------- /docs/assets/fonts/TTF/SourceCodePro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/fonts/TTF/SourceCodePro-Bold.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/TTF/SourceCodePro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/fonts/TTF/SourceCodePro-Regular.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/WOFF/OTF/SourceCodePro-Bold.otf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/fonts/WOFF/OTF/SourceCodePro-Bold.otf.woff -------------------------------------------------------------------------------- /docs/assets/fonts/WOFF/OTF/SourceCodePro-Regular.otf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/fonts/WOFF/OTF/SourceCodePro-Regular.otf.woff -------------------------------------------------------------------------------- /docs/assets/fonts/WOFF/TTF/SourceCodePro-Bold.ttf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/fonts/WOFF/TTF/SourceCodePro-Bold.ttf.woff -------------------------------------------------------------------------------- /docs/assets/fonts/WOFF/TTF/SourceCodePro-Regular.ttf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/fonts/WOFF/TTF/SourceCodePro-Regular.ttf.woff -------------------------------------------------------------------------------- /docs/assets/fonts/WOFF2/OTF/SourceCodePro-Bold.otf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/fonts/WOFF2/OTF/SourceCodePro-Bold.otf.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/WOFF2/OTF/SourceCodePro-Regular.otf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/fonts/WOFF2/OTF/SourceCodePro-Regular.otf.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/fonts/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/fonts/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/source-code-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/fonts/source-code-pro.css -------------------------------------------------------------------------------- /docs/assets/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/github.css -------------------------------------------------------------------------------- /docs/assets/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/site.js -------------------------------------------------------------------------------- /docs/assets/split.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/split.css -------------------------------------------------------------------------------- /docs/assets/split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/split.js -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/rd3g-bend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/rd3g-bend.gif -------------------------------------------------------------------------------- /docs/rd3g-collapsible.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/rd3g-collapsible.gif -------------------------------------------------------------------------------- /docs/rd3g-custom-svg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/rd3g-custom-svg.gif -------------------------------------------------------------------------------- /docs/rd3g-directed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/rd3g-directed.gif -------------------------------------------------------------------------------- /docs/rd3g-link-render-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/rd3g-link-render-label.png -------------------------------------------------------------------------------- /docs/rd3g-zoom-animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/rd3g-zoom-animation.gif -------------------------------------------------------------------------------- /docs/tweak-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/docs/tweak-logo.png -------------------------------------------------------------------------------- /documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/documentation.yml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/package.json -------------------------------------------------------------------------------- /sandbox/Sandbox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/Sandbox.jsx -------------------------------------------------------------------------------- /sandbox/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/analytics.js -------------------------------------------------------------------------------- /sandbox/createCodeSandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/createCodeSandbox.js -------------------------------------------------------------------------------- /sandbox/data/custom-node/CustomNode.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/data/custom-node/CustomNode.jsx -------------------------------------------------------------------------------- /sandbox/data/custom-node/custom-node.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/data/custom-node/custom-node.config.js -------------------------------------------------------------------------------- /sandbox/data/custom-node/custom-node.data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/data/custom-node/custom-node.data.js -------------------------------------------------------------------------------- /sandbox/data/custom-node/res/images/bike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/data/custom-node/res/images/bike.svg -------------------------------------------------------------------------------- /sandbox/data/custom-node/res/images/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/data/custom-node/res/images/car.svg -------------------------------------------------------------------------------- /sandbox/data/custom-node/res/images/girl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/data/custom-node/res/images/girl.svg -------------------------------------------------------------------------------- /sandbox/data/custom-node/res/images/man.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/data/custom-node/res/images/man.svg -------------------------------------------------------------------------------- /sandbox/data/custom-node/res/styles/custom-node.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/data/custom-node/res/styles/custom-node.css -------------------------------------------------------------------------------- /sandbox/data/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/data/default.js -------------------------------------------------------------------------------- /sandbox/data/marvel/marvel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/data/marvel/marvel.config.js -------------------------------------------------------------------------------- /sandbox/data/marvel/marvel.data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/data/marvel/marvel.data.js -------------------------------------------------------------------------------- /sandbox/data/small/small.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/data/small/small.config.js -------------------------------------------------------------------------------- /sandbox/data/small/small.data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/data/small/small.data.js -------------------------------------------------------------------------------- /sandbox/data/static/static.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/data/static/static.config.js -------------------------------------------------------------------------------- /sandbox/data/static/static.data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/data/static/static.data.js -------------------------------------------------------------------------------- /sandbox/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/favicon.ico -------------------------------------------------------------------------------- /sandbox/graph-config-tooltips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/graph-config-tooltips.js -------------------------------------------------------------------------------- /sandbox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/index.html -------------------------------------------------------------------------------- /sandbox/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/index.jsx -------------------------------------------------------------------------------- /sandbox/rd3g.sandbox.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/rd3g.sandbox.bundle.js -------------------------------------------------------------------------------- /sandbox/rd3g.sandbox.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/rd3g.sandbox.bundle.js.map -------------------------------------------------------------------------------- /sandbox/rd3g_v2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/rd3g_v2.gif -------------------------------------------------------------------------------- /sandbox/sample.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/sample.svg -------------------------------------------------------------------------------- /sandbox/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/styles.css -------------------------------------------------------------------------------- /sandbox/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/sandbox/utils.js -------------------------------------------------------------------------------- /src/components/graph/Graph.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/src/components/graph/Graph.jsx -------------------------------------------------------------------------------- /src/components/graph/collapse.helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/src/components/graph/collapse.helper.js -------------------------------------------------------------------------------- /src/components/graph/graph.builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/src/components/graph/graph.builder.js -------------------------------------------------------------------------------- /src/components/graph/graph.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/src/components/graph/graph.config.js -------------------------------------------------------------------------------- /src/components/graph/graph.const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/src/components/graph/graph.const.js -------------------------------------------------------------------------------- /src/components/graph/graph.helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/src/components/graph/graph.helper.js -------------------------------------------------------------------------------- /src/components/graph/graph.renderer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/src/components/graph/graph.renderer.jsx -------------------------------------------------------------------------------- /src/components/link/Link.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/src/components/link/Link.jsx -------------------------------------------------------------------------------- /src/components/link/link.const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/src/components/link/link.const.js -------------------------------------------------------------------------------- /src/components/link/link.helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/src/components/link/link.helper.js -------------------------------------------------------------------------------- /src/components/marker/Marker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/src/components/marker/Marker.jsx -------------------------------------------------------------------------------- /src/components/marker/marker.const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/src/components/marker/marker.const.js -------------------------------------------------------------------------------- /src/components/marker/marker.helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/src/components/marker/marker.helper.js -------------------------------------------------------------------------------- /src/components/node/Node.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/src/components/node/Node.jsx -------------------------------------------------------------------------------- /src/components/node/node.const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/src/components/node/node.const.js -------------------------------------------------------------------------------- /src/components/node/node.helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/src/components/node/node.helper.js -------------------------------------------------------------------------------- /src/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/src/const.js -------------------------------------------------------------------------------- /src/err.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/src/err.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/src/utils.js -------------------------------------------------------------------------------- /test/graph/__snapshots__/collapse.helper.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/graph/__snapshots__/collapse.helper.spec.js.snap -------------------------------------------------------------------------------- /test/graph/__snapshots__/graph.builder.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/graph/__snapshots__/graph.builder.spec.js.snap -------------------------------------------------------------------------------- /test/graph/__snapshots__/graph.helper.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/graph/__snapshots__/graph.helper.spec.js.snap -------------------------------------------------------------------------------- /test/graph/__snapshots__/graph.snapshot.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/graph/__snapshots__/graph.snapshot.spec.js.snap -------------------------------------------------------------------------------- /test/graph/collapse.helper.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/graph/collapse.helper.spec.js -------------------------------------------------------------------------------- /test/graph/graph.builder.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/graph/graph.builder.spec.js -------------------------------------------------------------------------------- /test/graph/graph.helper.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/graph/graph.helper.spec.js -------------------------------------------------------------------------------- /test/graph/graph.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/graph/graph.mock.js -------------------------------------------------------------------------------- /test/graph/graph.snapshot.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/graph/graph.snapshot.spec.js -------------------------------------------------------------------------------- /test/graph/graph.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/graph/graph.spec.js -------------------------------------------------------------------------------- /test/link/__snapshots__/link.snapshot.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/link/__snapshots__/link.snapshot.spec.js.snap -------------------------------------------------------------------------------- /test/link/link.helper.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/link/link.helper.spec.js -------------------------------------------------------------------------------- /test/link/link.snapshot.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/link/link.snapshot.spec.js -------------------------------------------------------------------------------- /test/link/link.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/link/link.spec.js -------------------------------------------------------------------------------- /test/marker/__snapshots__/marker.snapshot.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/marker/__snapshots__/marker.snapshot.spec.js.snap -------------------------------------------------------------------------------- /test/marker/marker.helper.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/marker/marker.helper.spec.js -------------------------------------------------------------------------------- /test/marker/marker.snapshot.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/marker/marker.snapshot.spec.js -------------------------------------------------------------------------------- /test/node/__snapshots__/node.snapshot.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/node/__snapshots__/node.snapshot.spec.js.snap -------------------------------------------------------------------------------- /test/node/node.snapshot.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/node/node.snapshot.spec.js -------------------------------------------------------------------------------- /test/node/node.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/node/node.spec.js -------------------------------------------------------------------------------- /test/utils.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/test/utils.spec.js -------------------------------------------------------------------------------- /tools/graph-config-jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/tools/graph-config-jsdoc.json -------------------------------------------------------------------------------- /tools/tooltips-docs-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/tools/tooltips-docs-generator.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/webpack.config.dist.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielcaldas/react-d3-graph/HEAD/webpack.config.js --------------------------------------------------------------------------------