├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── stale.yml └── workflows │ ├── test.yml │ └── website.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── eslint.config.mjs ├── lerna.json ├── package.json ├── packages ├── core │ ├── README.md │ ├── package.json │ ├── rollup.config.mjs │ ├── src │ │ ├── assets │ │ │ ├── icons │ │ │ │ ├── compress-solid.svg │ │ │ │ ├── dot-circle-regular.svg │ │ │ │ ├── expand-solid.svg │ │ │ │ ├── minus-solid.svg │ │ │ │ └── plus-solid.svg │ │ │ └── index.css │ │ ├── components │ │ │ ├── SigmaContainer.tsx │ │ │ └── controls │ │ │ │ ├── ControlsContainer.tsx │ │ │ │ ├── FullScreenControl.tsx │ │ │ │ └── ZoomControl.tsx │ │ ├── hooks │ │ │ ├── context.ts │ │ │ ├── useCamera.ts │ │ │ ├── useFullScreen.ts │ │ │ ├── useLoadGraph.ts │ │ │ ├── useRegisterEvents.ts │ │ │ ├── useSetSettings.ts │ │ │ └── useSigma.ts │ │ ├── index.ts │ │ ├── svg.d.ts │ │ ├── types.ts │ │ └── utils.ts │ └── tsconfig.json ├── graph-search │ ├── README.md │ ├── package.json │ ├── rollup.config.mjs │ ├── src │ │ ├── Edge.tsx │ │ ├── GraphSearch.tsx │ │ ├── GraphSearchInput.tsx │ │ ├── Node.tsx │ │ ├── assets │ │ │ ├── icons │ │ │ │ └── magnifying-glass.svg │ │ │ └── index.css │ │ ├── context.tsx │ │ ├── index.ts │ │ ├── svg.d.ts │ │ ├── types.ts │ │ ├── useGraphSearch.tsx │ │ └── utils.tsx │ └── tsconfig.json ├── layout-circlepack │ ├── README.md │ ├── package.json │ ├── rollup.config.mjs │ ├── src │ │ ├── index.ts │ │ └── useLayoutCirclepack.ts │ └── tsconfig.json ├── layout-circular │ ├── README.md │ ├── package.json │ ├── rollup.config.mjs │ ├── src │ │ ├── index.ts │ │ └── useLayoutCircular.ts │ └── tsconfig.json ├── layout-core │ ├── README.md │ ├── package.json │ ├── rollup.config.mjs │ ├── src │ │ ├── WorkerLayoutControl.tsx │ │ ├── assets │ │ │ └── icons │ │ │ │ ├── play-solid.svg │ │ │ │ └── stop-solid.svg │ │ ├── index.ts │ │ ├── svg.d.ts │ │ ├── useLayoutFactory.ts │ │ └── useWorkerLayoutFactory.ts │ └── tsconfig.json ├── layout-force │ ├── README.md │ ├── package.json │ ├── rollup.config.mjs │ ├── src │ │ ├── LayoutForceControl.tsx │ │ ├── index.ts │ │ ├── useLayoutForce.ts │ │ └── useWorkerLayoutForce.ts │ └── tsconfig.json ├── layout-forceatlas2 │ ├── README.md │ ├── package.json │ ├── rollup.config.mjs │ ├── src │ │ ├── LayoutForceAtlas2Control.tsx │ │ ├── index.ts │ │ ├── useLayoutForceAtlas2.ts │ │ └── useWorkerLayoutForceAtlas2.ts │ └── tsconfig.json ├── layout-noverlap │ ├── README.md │ ├── package.json │ ├── rollup.config.mjs │ ├── src │ │ ├── LayoutNoverlapControl.tsx │ │ ├── index.ts │ │ ├── useLayoutNoverlap.ts │ │ └── useWorkerLayoutNoverlap.ts │ └── tsconfig.json ├── layout-random │ ├── README.md │ ├── package.json │ ├── rollup.config.mjs │ ├── src │ │ ├── index.ts │ │ └── useLayoutRandom.ts │ └── tsconfig.json ├── minimap │ ├── README.md │ ├── package.json │ ├── rollup.config.mjs │ ├── src │ │ ├── Minimap.tsx │ │ └── index.ts │ └── tsconfig.json ├── storybook │ ├── .gitignore │ ├── .storybook │ │ ├── main.ts │ │ ├── preview.ts │ │ └── style.css │ ├── e2e │ │ ├── screenshots.spec.ts │ │ └── screenshots.spec.ts-snapshots │ │ │ ├── complete-chromium-linux.png │ │ │ ├── custom-renderer-chromium-linux.png │ │ │ ├── demo-chromium-linux.png │ │ │ ├── drag-n-drop-chromium-linux.png │ │ │ ├── edge-curve-chromium-linux.png │ │ │ ├── events-chromium-linux.png │ │ │ ├── external-chromium-linux.png │ │ │ ├── graph-search-chromium-linux.png │ │ │ ├── layout-circular-chromium-linux.png │ │ │ ├── layout-fa2-control-chromium-linux.png │ │ │ ├── load-graph-hook-chromium-linux.png │ │ │ ├── load-graph-prop-chromium-linux.png │ │ │ ├── minimap-chromium-linux.png │ │ │ ├── multi-chromium-linux.png │ │ │ ├── multi-directed-chromium-linux.png │ │ │ └── node-border-chromium-linux.png │ ├── package.json │ ├── playwright.config.ts │ ├── public │ │ └── react-sigma │ │ │ └── demo │ │ │ ├── dataset.json │ │ │ └── images │ │ │ ├── charttype.svg │ │ │ ├── company.svg │ │ │ ├── concept.svg │ │ │ ├── field.svg │ │ │ ├── list.svg │ │ │ ├── method.svg │ │ │ ├── organization.svg │ │ │ ├── person.svg │ │ │ ├── technology.svg │ │ │ ├── tool.svg │ │ │ └── unknown.svg │ ├── stories │ │ ├── Complete.stories.tsx │ │ ├── Complete.tsx │ │ ├── CustomRender.stories.tsx │ │ ├── CustomRender.tsx │ │ ├── Demo.stories.tsx │ │ ├── Demo.tsx │ │ ├── DragNdrop.stories.tsx │ │ ├── DragNdrop.tsx │ │ ├── EdgeCurve.stories.tsx │ │ ├── Events.stories.tsx │ │ ├── Events.tsx │ │ ├── External.stories.tsx │ │ ├── External.tsx │ │ ├── GraphSearch.stories.tsx │ │ ├── GraphSearch.tsx │ │ ├── LayoutCircular.stories.tsx │ │ ├── LayoutCircular.tsx │ │ ├── LayoutFA2.stories.tsx │ │ ├── LayoutFA2.tsx │ │ ├── LayoutFA2Control.stories.tsx │ │ ├── LayoutFA2Control.tsx │ │ ├── Lifecycle.stories.tsx │ │ ├── Lifecycle.tsx │ │ ├── LoadGraphWithHook.stories.tsx │ │ ├── LoadGraphWithHook.tsx │ │ ├── LoadGraphWithProp.stories.tsx │ │ ├── LoadGraphWithProp.tsx │ │ ├── Minimap.stories.tsx │ │ ├── Minimap.tsx │ │ ├── MultiDirectedGraph.stories.tsx │ │ ├── MultiDirectedGraph.tsx │ │ ├── Multiple.stories.tsx │ │ ├── Multiple.tsx │ │ ├── NodeBorder.stories.tsx │ │ ├── NodeBorder.tsx │ │ ├── NodeImage.stories.tsx │ │ ├── NodeImage.tsx │ │ ├── UpdateGraphReference.stories.tsx │ │ ├── UpdateGraphReference.tsx │ │ └── common │ │ │ ├── FocusOnNode.tsx │ │ │ ├── LayoutsControl.tsx │ │ │ ├── SampleGraph.tsx │ │ │ └── useRandom.tsx │ ├── tsconfig.json │ └── types.d.ts └── website │ ├── babel.config.js │ ├── docs │ ├── api.md │ ├── changelog.mdx │ ├── example │ │ ├── 01_load-graph.mdx │ │ ├── 02_events.mdx │ │ ├── 03_drag_n_drop.mdx │ │ ├── 04_layouts.mdx │ │ ├── 05_controls.mdx │ │ ├── 06_external_state.mdx │ │ ├── 07_graph-search.mdx │ │ └── 08_minimap.mdx │ ├── faq.md │ ├── start-installation.md │ ├── start-introduction.md │ └── start-setup.md │ ├── docusaurus.config.ts │ ├── package.json │ ├── sidebars.js │ ├── src │ ├── components │ │ ├── CodePreview.tsx │ │ ├── HomepageFeatures.module.css │ │ └── HomepageFeatures.tsx │ ├── css │ │ └── custom.scss │ └── pages │ │ ├── index.module.css │ │ └── index.tsx │ ├── static │ ├── demo │ │ ├── dataset.json │ │ └── images │ │ │ ├── charttype.svg │ │ │ ├── company.svg │ │ │ ├── concept.svg │ │ │ ├── field.svg │ │ │ ├── list.svg │ │ │ ├── method.svg │ │ │ ├── organization.svg │ │ │ ├── person.svg │ │ │ ├── technology.svg │ │ │ ├── tool.svg │ │ │ └── unknown.svg │ └── img │ │ ├── favicon.ico │ │ ├── graphology-logo.svg │ │ ├── logo-white.svg │ │ ├── logo.svg │ │ ├── react-logo.svg │ │ └── sigmajs-logo.svg │ └── tsconfig.json ├── prettier.config.mjs ├── rollup.base.mjs ├── tsconfig.base.json └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/.github/workflows/website.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/package.json -------------------------------------------------------------------------------- /packages/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/README.md -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/rollup.config.mjs -------------------------------------------------------------------------------- /packages/core/src/assets/icons/compress-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/assets/icons/compress-solid.svg -------------------------------------------------------------------------------- /packages/core/src/assets/icons/dot-circle-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/assets/icons/dot-circle-regular.svg -------------------------------------------------------------------------------- /packages/core/src/assets/icons/expand-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/assets/icons/expand-solid.svg -------------------------------------------------------------------------------- /packages/core/src/assets/icons/minus-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/assets/icons/minus-solid.svg -------------------------------------------------------------------------------- /packages/core/src/assets/icons/plus-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/assets/icons/plus-solid.svg -------------------------------------------------------------------------------- /packages/core/src/assets/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/assets/index.css -------------------------------------------------------------------------------- /packages/core/src/components/SigmaContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/components/SigmaContainer.tsx -------------------------------------------------------------------------------- /packages/core/src/components/controls/ControlsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/components/controls/ControlsContainer.tsx -------------------------------------------------------------------------------- /packages/core/src/components/controls/FullScreenControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/components/controls/FullScreenControl.tsx -------------------------------------------------------------------------------- /packages/core/src/components/controls/ZoomControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/components/controls/ZoomControl.tsx -------------------------------------------------------------------------------- /packages/core/src/hooks/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/hooks/context.ts -------------------------------------------------------------------------------- /packages/core/src/hooks/useCamera.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/hooks/useCamera.ts -------------------------------------------------------------------------------- /packages/core/src/hooks/useFullScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/hooks/useFullScreen.ts -------------------------------------------------------------------------------- /packages/core/src/hooks/useLoadGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/hooks/useLoadGraph.ts -------------------------------------------------------------------------------- /packages/core/src/hooks/useRegisterEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/hooks/useRegisterEvents.ts -------------------------------------------------------------------------------- /packages/core/src/hooks/useSetSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/hooks/useSetSettings.ts -------------------------------------------------------------------------------- /packages/core/src/hooks/useSigma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/hooks/useSigma.ts -------------------------------------------------------------------------------- /packages/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/index.ts -------------------------------------------------------------------------------- /packages/core/src/svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/svg.d.ts -------------------------------------------------------------------------------- /packages/core/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/types.ts -------------------------------------------------------------------------------- /packages/core/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/src/utils.ts -------------------------------------------------------------------------------- /packages/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/core/tsconfig.json -------------------------------------------------------------------------------- /packages/graph-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/graph-search/README.md -------------------------------------------------------------------------------- /packages/graph-search/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/graph-search/package.json -------------------------------------------------------------------------------- /packages/graph-search/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/graph-search/rollup.config.mjs -------------------------------------------------------------------------------- /packages/graph-search/src/Edge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/graph-search/src/Edge.tsx -------------------------------------------------------------------------------- /packages/graph-search/src/GraphSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/graph-search/src/GraphSearch.tsx -------------------------------------------------------------------------------- /packages/graph-search/src/GraphSearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/graph-search/src/GraphSearchInput.tsx -------------------------------------------------------------------------------- /packages/graph-search/src/Node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/graph-search/src/Node.tsx -------------------------------------------------------------------------------- /packages/graph-search/src/assets/icons/magnifying-glass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/graph-search/src/assets/icons/magnifying-glass.svg -------------------------------------------------------------------------------- /packages/graph-search/src/assets/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/graph-search/src/assets/index.css -------------------------------------------------------------------------------- /packages/graph-search/src/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/graph-search/src/context.tsx -------------------------------------------------------------------------------- /packages/graph-search/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/graph-search/src/index.ts -------------------------------------------------------------------------------- /packages/graph-search/src/svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/graph-search/src/svg.d.ts -------------------------------------------------------------------------------- /packages/graph-search/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/graph-search/src/types.ts -------------------------------------------------------------------------------- /packages/graph-search/src/useGraphSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/graph-search/src/useGraphSearch.tsx -------------------------------------------------------------------------------- /packages/graph-search/src/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/graph-search/src/utils.tsx -------------------------------------------------------------------------------- /packages/graph-search/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/graph-search/tsconfig.json -------------------------------------------------------------------------------- /packages/layout-circlepack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-circlepack/README.md -------------------------------------------------------------------------------- /packages/layout-circlepack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-circlepack/package.json -------------------------------------------------------------------------------- /packages/layout-circlepack/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-circlepack/rollup.config.mjs -------------------------------------------------------------------------------- /packages/layout-circlepack/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-circlepack/src/index.ts -------------------------------------------------------------------------------- /packages/layout-circlepack/src/useLayoutCirclepack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-circlepack/src/useLayoutCirclepack.ts -------------------------------------------------------------------------------- /packages/layout-circlepack/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-circlepack/tsconfig.json -------------------------------------------------------------------------------- /packages/layout-circular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-circular/README.md -------------------------------------------------------------------------------- /packages/layout-circular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-circular/package.json -------------------------------------------------------------------------------- /packages/layout-circular/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-circular/rollup.config.mjs -------------------------------------------------------------------------------- /packages/layout-circular/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useLayoutCircular'; 2 | -------------------------------------------------------------------------------- /packages/layout-circular/src/useLayoutCircular.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-circular/src/useLayoutCircular.ts -------------------------------------------------------------------------------- /packages/layout-circular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-circular/tsconfig.json -------------------------------------------------------------------------------- /packages/layout-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-core/README.md -------------------------------------------------------------------------------- /packages/layout-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-core/package.json -------------------------------------------------------------------------------- /packages/layout-core/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-core/rollup.config.mjs -------------------------------------------------------------------------------- /packages/layout-core/src/WorkerLayoutControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-core/src/WorkerLayoutControl.tsx -------------------------------------------------------------------------------- /packages/layout-core/src/assets/icons/play-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-core/src/assets/icons/play-solid.svg -------------------------------------------------------------------------------- /packages/layout-core/src/assets/icons/stop-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-core/src/assets/icons/stop-solid.svg -------------------------------------------------------------------------------- /packages/layout-core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-core/src/index.ts -------------------------------------------------------------------------------- /packages/layout-core/src/svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-core/src/svg.d.ts -------------------------------------------------------------------------------- /packages/layout-core/src/useLayoutFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-core/src/useLayoutFactory.ts -------------------------------------------------------------------------------- /packages/layout-core/src/useWorkerLayoutFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-core/src/useWorkerLayoutFactory.ts -------------------------------------------------------------------------------- /packages/layout-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-core/tsconfig.json -------------------------------------------------------------------------------- /packages/layout-force/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-force/README.md -------------------------------------------------------------------------------- /packages/layout-force/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-force/package.json -------------------------------------------------------------------------------- /packages/layout-force/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-force/rollup.config.mjs -------------------------------------------------------------------------------- /packages/layout-force/src/LayoutForceControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-force/src/LayoutForceControl.tsx -------------------------------------------------------------------------------- /packages/layout-force/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-force/src/index.ts -------------------------------------------------------------------------------- /packages/layout-force/src/useLayoutForce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-force/src/useLayoutForce.ts -------------------------------------------------------------------------------- /packages/layout-force/src/useWorkerLayoutForce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-force/src/useWorkerLayoutForce.ts -------------------------------------------------------------------------------- /packages/layout-force/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-force/tsconfig.json -------------------------------------------------------------------------------- /packages/layout-forceatlas2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-forceatlas2/README.md -------------------------------------------------------------------------------- /packages/layout-forceatlas2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-forceatlas2/package.json -------------------------------------------------------------------------------- /packages/layout-forceatlas2/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-forceatlas2/rollup.config.mjs -------------------------------------------------------------------------------- /packages/layout-forceatlas2/src/LayoutForceAtlas2Control.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-forceatlas2/src/LayoutForceAtlas2Control.tsx -------------------------------------------------------------------------------- /packages/layout-forceatlas2/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-forceatlas2/src/index.ts -------------------------------------------------------------------------------- /packages/layout-forceatlas2/src/useLayoutForceAtlas2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-forceatlas2/src/useLayoutForceAtlas2.ts -------------------------------------------------------------------------------- /packages/layout-forceatlas2/src/useWorkerLayoutForceAtlas2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-forceatlas2/src/useWorkerLayoutForceAtlas2.ts -------------------------------------------------------------------------------- /packages/layout-forceatlas2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-forceatlas2/tsconfig.json -------------------------------------------------------------------------------- /packages/layout-noverlap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-noverlap/README.md -------------------------------------------------------------------------------- /packages/layout-noverlap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-noverlap/package.json -------------------------------------------------------------------------------- /packages/layout-noverlap/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-noverlap/rollup.config.mjs -------------------------------------------------------------------------------- /packages/layout-noverlap/src/LayoutNoverlapControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-noverlap/src/LayoutNoverlapControl.tsx -------------------------------------------------------------------------------- /packages/layout-noverlap/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-noverlap/src/index.ts -------------------------------------------------------------------------------- /packages/layout-noverlap/src/useLayoutNoverlap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-noverlap/src/useLayoutNoverlap.ts -------------------------------------------------------------------------------- /packages/layout-noverlap/src/useWorkerLayoutNoverlap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-noverlap/src/useWorkerLayoutNoverlap.ts -------------------------------------------------------------------------------- /packages/layout-noverlap/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-noverlap/tsconfig.json -------------------------------------------------------------------------------- /packages/layout-random/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-random/README.md -------------------------------------------------------------------------------- /packages/layout-random/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-random/package.json -------------------------------------------------------------------------------- /packages/layout-random/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-random/rollup.config.mjs -------------------------------------------------------------------------------- /packages/layout-random/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useLayoutRandom'; 2 | -------------------------------------------------------------------------------- /packages/layout-random/src/useLayoutRandom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-random/src/useLayoutRandom.ts -------------------------------------------------------------------------------- /packages/layout-random/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/layout-random/tsconfig.json -------------------------------------------------------------------------------- /packages/minimap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/minimap/README.md -------------------------------------------------------------------------------- /packages/minimap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/minimap/package.json -------------------------------------------------------------------------------- /packages/minimap/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/minimap/rollup.config.mjs -------------------------------------------------------------------------------- /packages/minimap/src/Minimap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/minimap/src/Minimap.tsx -------------------------------------------------------------------------------- /packages/minimap/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Minimap'; 2 | -------------------------------------------------------------------------------- /packages/minimap/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/minimap/tsconfig.json -------------------------------------------------------------------------------- /packages/storybook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/.gitignore -------------------------------------------------------------------------------- /packages/storybook/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/.storybook/main.ts -------------------------------------------------------------------------------- /packages/storybook/.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/.storybook/preview.ts -------------------------------------------------------------------------------- /packages/storybook/.storybook/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/.storybook/style.css -------------------------------------------------------------------------------- /packages/storybook/e2e/screenshots.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/e2e/screenshots.spec.ts -------------------------------------------------------------------------------- /packages/storybook/e2e/screenshots.spec.ts-snapshots/complete-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/e2e/screenshots.spec.ts-snapshots/complete-chromium-linux.png -------------------------------------------------------------------------------- /packages/storybook/e2e/screenshots.spec.ts-snapshots/custom-renderer-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/e2e/screenshots.spec.ts-snapshots/custom-renderer-chromium-linux.png -------------------------------------------------------------------------------- /packages/storybook/e2e/screenshots.spec.ts-snapshots/demo-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/e2e/screenshots.spec.ts-snapshots/demo-chromium-linux.png -------------------------------------------------------------------------------- /packages/storybook/e2e/screenshots.spec.ts-snapshots/drag-n-drop-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/e2e/screenshots.spec.ts-snapshots/drag-n-drop-chromium-linux.png -------------------------------------------------------------------------------- /packages/storybook/e2e/screenshots.spec.ts-snapshots/edge-curve-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/e2e/screenshots.spec.ts-snapshots/edge-curve-chromium-linux.png -------------------------------------------------------------------------------- /packages/storybook/e2e/screenshots.spec.ts-snapshots/events-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/e2e/screenshots.spec.ts-snapshots/events-chromium-linux.png -------------------------------------------------------------------------------- /packages/storybook/e2e/screenshots.spec.ts-snapshots/external-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/e2e/screenshots.spec.ts-snapshots/external-chromium-linux.png -------------------------------------------------------------------------------- /packages/storybook/e2e/screenshots.spec.ts-snapshots/graph-search-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/e2e/screenshots.spec.ts-snapshots/graph-search-chromium-linux.png -------------------------------------------------------------------------------- /packages/storybook/e2e/screenshots.spec.ts-snapshots/layout-circular-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/e2e/screenshots.spec.ts-snapshots/layout-circular-chromium-linux.png -------------------------------------------------------------------------------- /packages/storybook/e2e/screenshots.spec.ts-snapshots/layout-fa2-control-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/e2e/screenshots.spec.ts-snapshots/layout-fa2-control-chromium-linux.png -------------------------------------------------------------------------------- /packages/storybook/e2e/screenshots.spec.ts-snapshots/load-graph-hook-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/e2e/screenshots.spec.ts-snapshots/load-graph-hook-chromium-linux.png -------------------------------------------------------------------------------- /packages/storybook/e2e/screenshots.spec.ts-snapshots/load-graph-prop-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/e2e/screenshots.spec.ts-snapshots/load-graph-prop-chromium-linux.png -------------------------------------------------------------------------------- /packages/storybook/e2e/screenshots.spec.ts-snapshots/minimap-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/e2e/screenshots.spec.ts-snapshots/minimap-chromium-linux.png -------------------------------------------------------------------------------- /packages/storybook/e2e/screenshots.spec.ts-snapshots/multi-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/e2e/screenshots.spec.ts-snapshots/multi-chromium-linux.png -------------------------------------------------------------------------------- /packages/storybook/e2e/screenshots.spec.ts-snapshots/multi-directed-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/e2e/screenshots.spec.ts-snapshots/multi-directed-chromium-linux.png -------------------------------------------------------------------------------- /packages/storybook/e2e/screenshots.spec.ts-snapshots/node-border-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/e2e/screenshots.spec.ts-snapshots/node-border-chromium-linux.png -------------------------------------------------------------------------------- /packages/storybook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/package.json -------------------------------------------------------------------------------- /packages/storybook/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/playwright.config.ts -------------------------------------------------------------------------------- /packages/storybook/public/react-sigma/demo/dataset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/public/react-sigma/demo/dataset.json -------------------------------------------------------------------------------- /packages/storybook/public/react-sigma/demo/images/charttype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/public/react-sigma/demo/images/charttype.svg -------------------------------------------------------------------------------- /packages/storybook/public/react-sigma/demo/images/company.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/public/react-sigma/demo/images/company.svg -------------------------------------------------------------------------------- /packages/storybook/public/react-sigma/demo/images/concept.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/public/react-sigma/demo/images/concept.svg -------------------------------------------------------------------------------- /packages/storybook/public/react-sigma/demo/images/field.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/public/react-sigma/demo/images/field.svg -------------------------------------------------------------------------------- /packages/storybook/public/react-sigma/demo/images/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/public/react-sigma/demo/images/list.svg -------------------------------------------------------------------------------- /packages/storybook/public/react-sigma/demo/images/method.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/public/react-sigma/demo/images/method.svg -------------------------------------------------------------------------------- /packages/storybook/public/react-sigma/demo/images/organization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/public/react-sigma/demo/images/organization.svg -------------------------------------------------------------------------------- /packages/storybook/public/react-sigma/demo/images/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/public/react-sigma/demo/images/person.svg -------------------------------------------------------------------------------- /packages/storybook/public/react-sigma/demo/images/technology.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/public/react-sigma/demo/images/technology.svg -------------------------------------------------------------------------------- /packages/storybook/public/react-sigma/demo/images/tool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/public/react-sigma/demo/images/tool.svg -------------------------------------------------------------------------------- /packages/storybook/public/react-sigma/demo/images/unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/public/react-sigma/demo/images/unknown.svg -------------------------------------------------------------------------------- /packages/storybook/stories/Complete.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/Complete.stories.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/Complete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/Complete.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/CustomRender.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/CustomRender.stories.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/CustomRender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/CustomRender.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/Demo.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/Demo.stories.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/Demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/Demo.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/DragNdrop.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/DragNdrop.stories.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/DragNdrop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/DragNdrop.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/EdgeCurve.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/EdgeCurve.stories.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/Events.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/Events.stories.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/Events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/Events.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/External.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/External.stories.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/External.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/External.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/GraphSearch.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/GraphSearch.stories.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/GraphSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/GraphSearch.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/LayoutCircular.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/LayoutCircular.stories.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/LayoutCircular.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/LayoutCircular.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/LayoutFA2.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/LayoutFA2.stories.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/LayoutFA2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/LayoutFA2.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/LayoutFA2Control.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/LayoutFA2Control.stories.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/LayoutFA2Control.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/LayoutFA2Control.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/Lifecycle.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/Lifecycle.stories.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/Lifecycle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/Lifecycle.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/LoadGraphWithHook.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/LoadGraphWithHook.stories.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/LoadGraphWithHook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/LoadGraphWithHook.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/LoadGraphWithProp.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/LoadGraphWithProp.stories.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/LoadGraphWithProp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/LoadGraphWithProp.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/Minimap.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/Minimap.stories.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/Minimap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/Minimap.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/MultiDirectedGraph.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/MultiDirectedGraph.stories.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/MultiDirectedGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/MultiDirectedGraph.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/Multiple.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/Multiple.stories.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/Multiple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/Multiple.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/NodeBorder.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/NodeBorder.stories.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/NodeBorder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/NodeBorder.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/NodeImage.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/NodeImage.stories.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/NodeImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/NodeImage.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/UpdateGraphReference.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/UpdateGraphReference.stories.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/UpdateGraphReference.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/UpdateGraphReference.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/common/FocusOnNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/common/FocusOnNode.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/common/LayoutsControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/common/LayoutsControl.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/common/SampleGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/common/SampleGraph.tsx -------------------------------------------------------------------------------- /packages/storybook/stories/common/useRandom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/stories/common/useRandom.tsx -------------------------------------------------------------------------------- /packages/storybook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/tsconfig.json -------------------------------------------------------------------------------- /packages/storybook/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/storybook/types.d.ts -------------------------------------------------------------------------------- /packages/website/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/babel.config.js -------------------------------------------------------------------------------- /packages/website/docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/docs/api.md -------------------------------------------------------------------------------- /packages/website/docs/changelog.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/docs/changelog.mdx -------------------------------------------------------------------------------- /packages/website/docs/example/01_load-graph.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/docs/example/01_load-graph.mdx -------------------------------------------------------------------------------- /packages/website/docs/example/02_events.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/docs/example/02_events.mdx -------------------------------------------------------------------------------- /packages/website/docs/example/03_drag_n_drop.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/docs/example/03_drag_n_drop.mdx -------------------------------------------------------------------------------- /packages/website/docs/example/04_layouts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/docs/example/04_layouts.mdx -------------------------------------------------------------------------------- /packages/website/docs/example/05_controls.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/docs/example/05_controls.mdx -------------------------------------------------------------------------------- /packages/website/docs/example/06_external_state.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/docs/example/06_external_state.mdx -------------------------------------------------------------------------------- /packages/website/docs/example/07_graph-search.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/docs/example/07_graph-search.mdx -------------------------------------------------------------------------------- /packages/website/docs/example/08_minimap.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/docs/example/08_minimap.mdx -------------------------------------------------------------------------------- /packages/website/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/docs/faq.md -------------------------------------------------------------------------------- /packages/website/docs/start-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/docs/start-installation.md -------------------------------------------------------------------------------- /packages/website/docs/start-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/docs/start-introduction.md -------------------------------------------------------------------------------- /packages/website/docs/start-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/docs/start-setup.md -------------------------------------------------------------------------------- /packages/website/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/docusaurus.config.ts -------------------------------------------------------------------------------- /packages/website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/package.json -------------------------------------------------------------------------------- /packages/website/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/sidebars.js -------------------------------------------------------------------------------- /packages/website/src/components/CodePreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/src/components/CodePreview.tsx -------------------------------------------------------------------------------- /packages/website/src/components/HomepageFeatures.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/src/components/HomepageFeatures.module.css -------------------------------------------------------------------------------- /packages/website/src/components/HomepageFeatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/src/components/HomepageFeatures.tsx -------------------------------------------------------------------------------- /packages/website/src/css/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/src/css/custom.scss -------------------------------------------------------------------------------- /packages/website/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/src/pages/index.module.css -------------------------------------------------------------------------------- /packages/website/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/src/pages/index.tsx -------------------------------------------------------------------------------- /packages/website/static/demo/dataset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/static/demo/dataset.json -------------------------------------------------------------------------------- /packages/website/static/demo/images/charttype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/static/demo/images/charttype.svg -------------------------------------------------------------------------------- /packages/website/static/demo/images/company.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/static/demo/images/company.svg -------------------------------------------------------------------------------- /packages/website/static/demo/images/concept.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/static/demo/images/concept.svg -------------------------------------------------------------------------------- /packages/website/static/demo/images/field.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/static/demo/images/field.svg -------------------------------------------------------------------------------- /packages/website/static/demo/images/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/static/demo/images/list.svg -------------------------------------------------------------------------------- /packages/website/static/demo/images/method.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/static/demo/images/method.svg -------------------------------------------------------------------------------- /packages/website/static/demo/images/organization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/static/demo/images/organization.svg -------------------------------------------------------------------------------- /packages/website/static/demo/images/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/static/demo/images/person.svg -------------------------------------------------------------------------------- /packages/website/static/demo/images/technology.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/static/demo/images/technology.svg -------------------------------------------------------------------------------- /packages/website/static/demo/images/tool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/static/demo/images/tool.svg -------------------------------------------------------------------------------- /packages/website/static/demo/images/unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/static/demo/images/unknown.svg -------------------------------------------------------------------------------- /packages/website/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/static/img/favicon.ico -------------------------------------------------------------------------------- /packages/website/static/img/graphology-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/static/img/graphology-logo.svg -------------------------------------------------------------------------------- /packages/website/static/img/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/static/img/logo-white.svg -------------------------------------------------------------------------------- /packages/website/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/static/img/logo.svg -------------------------------------------------------------------------------- /packages/website/static/img/react-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/static/img/react-logo.svg -------------------------------------------------------------------------------- /packages/website/static/img/sigmajs-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/static/img/sigmajs-logo.svg -------------------------------------------------------------------------------- /packages/website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/packages/website/tsconfig.json -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /rollup.base.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/rollup.base.mjs -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sim51/react-sigma/HEAD/tsconfig.json --------------------------------------------------------------------------------