gitextract_lgiult8p/ ├── .circleci/ │ └── config.yml ├── .codeclimate.yml ├── .config/ │ ├── .eslintrc │ ├── .prettierrc.js │ ├── Dockerfile │ ├── README.md │ ├── jest/ │ │ ├── mocks/ │ │ │ └── react-inlinesvg.tsx │ │ └── utils.js │ ├── jest-setup.js │ ├── jest.config.js │ ├── tsconfig.json │ ├── types/ │ │ └── custom.d.ts │ └── webpack/ │ ├── constants.ts │ ├── utils.ts │ └── webpack.config.ts ├── .editorconfig ├── .eslintrc ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ └── question.md │ └── workflows/ │ └── build.yml ├── .gitignore ├── .nvmrc ├── .prettierrc.js ├── .release-it.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── appveyor.yml ├── docker-compose.yaml ├── docs/ │ └── README.md ├── jest-setup.js ├── jest.config.js ├── package.json ├── provisioning/ │ ├── dashboards/ │ │ └── dashboards.yml │ └── home/ │ └── home.json ├── scripts/ │ └── create-signed-plugin.sh ├── src/ │ ├── assets/ │ │ └── icons/ │ │ └── icon_index.json │ ├── css/ │ │ └── novatec-service-dependency-graph-panel.css │ ├── dummy_data_frame.ts │ ├── migration/ │ │ └── PanelMigration.tsx │ ├── module.test.ts │ ├── module.ts │ ├── options/ │ │ ├── DefaultSettings.tsx │ │ ├── TypeAheadTextfield/ │ │ │ ├── TypeaheadTextfield.css │ │ │ └── TypeaheadTextfield.tsx │ │ ├── dummyDataSwitch/ │ │ │ └── DummyDataSwitch.tsx │ │ ├── iconMapping/ │ │ │ ├── IconMapping.css │ │ │ └── IconMapping.tsx │ │ └── options.tsx │ ├── panel/ │ │ ├── PanelController.tsx │ │ ├── asset_utils.tsx │ │ ├── canvas/ │ │ │ ├── collision_detector.ts │ │ │ ├── graph_canvas.ts │ │ │ └── particle_engine.ts │ │ ├── layout_options.ts │ │ ├── serviceDependencyGraph/ │ │ │ ├── ServiceDependencyGraph.css │ │ │ └── ServiceDependencyGraph.tsx │ │ └── statistics/ │ │ ├── IncomingStatistics.tsx │ │ ├── NodeStatistics.tsx │ │ ├── SortableTable.tsx │ │ ├── Statistics.css │ │ ├── Statistics.tsx │ │ └── utils/ │ │ └── Utils.ts │ ├── plugin.json │ ├── processing/ │ │ ├── graph_generator.ts │ │ ├── node_substitutor.ts │ │ ├── node_tree.ts │ │ ├── pre_processor.ts │ │ └── utils/ │ │ └── Utils.ts │ ├── types.tsx │ └── typings/ │ └── index.d.ts └── tsconfig.json