├── .babelrc ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md ├── dependabot.yml └── workflows │ ├── develop-deployment.yml │ ├── develop-test.yml │ ├── master-deployment.yml │ └── master-test.yml ├── .gitignore ├── .husky ├── common.sh └── pre-commit ├── .lintstagedrc.json ├── .npmignore ├── .prettierignore ├── .prettierrc.json ├── Dockerfile ├── LICENSE ├── README.md ├── about.md ├── changelog.md ├── compose.yaml ├── conf └── default.conf.template ├── cypress.config.ts ├── cypress ├── Page.js ├── e2e │ ├── charts │ │ ├── array.cy.js │ │ ├── bar.cy.js │ │ └── table.cy.js │ └── start_page.cy.js ├── fixtures │ └── cypher_queries.js ├── index.js ├── plugins │ └── index.js └── support │ ├── commands.js │ └── e2e.ts ├── docs ├── README.md ├── antora.yml ├── modules │ └── ROOT │ │ ├── images │ │ ├── about.png │ │ ├── advanced-visualizations.png │ │ ├── areamap-countries.png │ │ ├── areamap-regions.png │ │ ├── bar.png │ │ ├── barstacked.png │ │ ├── choropleth.png │ │ ├── circlepacking.png │ │ ├── component-hierarchy.png │ │ ├── createform.png │ │ ├── cypress.png │ │ ├── dashboard.png │ │ ├── dashboard2.png │ │ ├── dashboardaccesscontrol.png │ │ ├── dashboardnew.png │ │ ├── dashboardnewsettings.png │ │ ├── dashboardsettings.png │ │ ├── englisheditor.png │ │ ├── extensionbutton.png │ │ ├── extensions.png │ │ ├── formbutton.png │ │ ├── forms.png │ │ ├── formselector.png │ │ ├── formsimple.png │ │ ├── gantt.png │ │ ├── gauge.png │ │ ├── graph.png │ │ ├── graph2.png │ │ ├── graph3d.png │ │ ├── graph3dvirtual.png │ │ ├── graphdrilldown.png │ │ ├── graphexploration.png │ │ ├── iframe.png │ │ ├── iframe2.png │ │ ├── json.png │ │ ├── line1.png │ │ ├── line2.png │ │ ├── llm-examples.png │ │ ├── llmconfiguration.png │ │ ├── map.png │ │ ├── map2.png │ │ ├── map3.png │ │ ├── map_cluster.png │ │ ├── map_heatmap.png │ │ ├── markdown.png │ │ ├── movereport.gif │ │ ├── page.png │ │ ├── pie.png │ │ ├── piedonut.png │ │ ├── publish.png │ │ ├── radar.png │ │ ├── report-actions.png │ │ ├── report.gif │ │ ├── reportactions.png │ │ ├── reportactionsbutton.png │ │ ├── resizereport.gif │ │ ├── rolelabelmodal.png │ │ ├── rolesmenu.png │ │ ├── rule-based-styling.png │ │ ├── rulebasedstyling.png │ │ ├── rulebasedstylingbutton.png │ │ ├── sankey.png │ │ ├── saveloadshare.png │ │ ├── select-multiple-table.png │ │ ├── select-single-table.png │ │ ├── select.png │ │ ├── select2.png │ │ ├── select3.png │ │ ├── select4.png │ │ ├── select5.png │ │ ├── standalone-architecture.png │ │ ├── sunburst.png │ │ ├── table1.png │ │ ├── table2.png │ │ ├── treemap.png │ │ ├── value.png │ │ └── value2.png │ │ ├── nav.adoc │ │ └── pages │ │ ├── banner.adoc │ │ ├── developer-guide │ │ ├── adding-visualizations.adoc │ │ ├── build-and-run.adoc │ │ ├── component-overview.adoc │ │ ├── configuration.adoc │ │ ├── contributing.adoc │ │ ├── deploy-a-build.adoc │ │ ├── design.adoc │ │ ├── index.adoc │ │ ├── session-storage.adoc │ │ ├── standalone-mode.adoc │ │ ├── state-management.adoc │ │ ├── style-configuration.adoc │ │ └── testing.adoc │ │ ├── index.adoc │ │ ├── quickstart.adoc │ │ └── user-guide │ │ ├── access-control.adoc │ │ ├── bloom-integration.adoc │ │ ├── dashboards.adoc │ │ ├── extensions │ │ ├── access-control-management.adoc │ │ ├── advanced-visualizations.adoc │ │ ├── forms.adoc │ │ ├── index.adoc │ │ ├── natural-language-queries.adoc │ │ ├── report-actions.adoc │ │ ├── rule-based-styling.adoc │ │ └── workflows.adoc │ │ ├── faq.adoc │ │ ├── index.adoc │ │ ├── pages.adoc │ │ ├── publishing.adoc │ │ └── reports │ │ ├── areamap.adoc │ │ ├── bar-chart.adoc │ │ ├── choropleth.adoc │ │ ├── circle-packing.adoc │ │ ├── form.adoc │ │ ├── gantt.adoc │ │ ├── gauge-chart.adoc │ │ ├── graph.adoc │ │ ├── graph3d.adoc │ │ ├── iframe.adoc │ │ ├── index.adoc │ │ ├── line-chart.adoc │ │ ├── map.adoc │ │ ├── markdown.adoc │ │ ├── parameter-select.adoc │ │ ├── pie-chart.adoc │ │ ├── radar.adoc │ │ ├── raw-json.adoc │ │ ├── sankey.adoc │ │ ├── single-value.adoc │ │ ├── sunburst.adoc │ │ ├── table.adoc │ │ └── treemap.adoc ├── package-lock.json ├── package.json ├── preview.yml ├── server.js └── yarn.lock ├── evolving.png ├── gallery ├── .env ├── .gitignore ├── LICENSE ├── README.md ├── dashboards │ ├── assessment.json │ ├── assessment.png │ ├── bom-english.json │ ├── bom.json │ ├── bom.png │ ├── citation.json │ ├── citation.png │ ├── domains.json │ ├── domains.png │ ├── fraud.json │ ├── fraud.png │ ├── jokes.json │ ├── jokes.png │ ├── movies.json │ ├── movies.png │ ├── recommendations.json │ ├── recommendations.png │ ├── twitter.json │ ├── twitter.png │ ├── wine.json │ └── wine.png ├── package.json ├── postcss.config.js ├── public │ ├── favicon.ico │ ├── favicon.png │ ├── index.html │ ├── manifest.json │ └── robots.txt ├── setup.md ├── src │ ├── App.css │ ├── App.tsx │ ├── index.css │ ├── index.tsx │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ └── setupTests.ts ├── tailwind.config.js ├── tsconfig.json └── yarn.lock ├── k8s-deploy ├── neodash │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ └── values.yaml └── sample-k8s-yamls │ ├── deployment.yaml │ └── service.yaml ├── package.json ├── postcss.config.js ├── public ├── README.md ├── accesscontrol2.jpg ├── advanced-visualizations.png ├── config.json ├── embed-test.html ├── favicon.ico ├── favicon.png ├── form.png ├── index.html ├── linenumbers.png ├── manifest.json ├── movereport.gif ├── neo4j-icon-color-full.png ├── neo4j-icon-color.png ├── neo4j-icon.png ├── report-actions.png ├── resizereport.gif ├── rule-based-styling.png ├── screenshot.png ├── style.config.json ├── style.css └── translator.png ├── release-notes.md ├── scripts ├── config-entrypoint.sh ├── docker-neo4j-initializer │ ├── docker-neo4j.sh │ ├── movies.cypher │ └── start-movies-db.sh └── message-entrypoint.sh ├── src ├── application │ ├── Application.tsx │ ├── ApplicationActions.ts │ ├── ApplicationReducer.ts │ ├── ApplicationSelectors.ts │ ├── ApplicationThunks.ts │ └── logging │ │ ├── LoggingActions.ts │ │ ├── LoggingReducer.ts │ │ ├── LoggingSelectors.ts │ │ └── LoggingThunk.ts ├── card │ ├── Card.tsx │ ├── CardActions.ts │ ├── CardAddButton.tsx │ ├── CardReducer.ts │ ├── CardSelectors.ts │ ├── CardStyle.ts │ ├── CardThunks.ts │ ├── settings │ │ ├── CardSettings.tsx │ │ ├── CardSettingsContent.tsx │ │ ├── CardSettingsFooter.tsx │ │ └── CardSettingsHeader.tsx │ └── view │ │ ├── CardView.tsx │ │ ├── CardViewFooter.tsx │ │ └── CardViewHeader.tsx ├── chart │ ├── Chart.ts │ ├── ChartUtils.ts │ ├── SettingsUtils.ts │ ├── Utils.ts │ ├── bar │ │ ├── BarChart.tsx │ │ └── util.ts │ ├── graph │ │ ├── GraphChart.tsx │ │ ├── GraphChartVisualization.ts │ │ ├── GraphChartVisualization2D.tsx │ │ ├── GraphChartVisualizationBase.tsx │ │ ├── component │ │ │ ├── GraphChartCanvas.tsx │ │ │ ├── GraphChartContextMenu.tsx │ │ │ ├── GraphChartEditModal.tsx │ │ │ ├── GraphChartInspectModal.tsx │ │ │ ├── GraphChartTooltip.tsx │ │ │ ├── GraphEntityInspectionTable.tsx │ │ │ ├── autocomplete │ │ │ │ ├── LabelTypeAutocomplete.tsx │ │ │ │ └── PropertyNameAutocomplete.tsx │ │ │ └── button │ │ │ │ ├── GraphChartDeepLinkButton.tsx │ │ │ │ ├── GraphChartFitViewButton.tsx │ │ │ │ ├── GraphChartLockButton.tsx │ │ │ │ └── modal │ │ │ │ └── DeletePropertyButton.tsx │ │ └── util │ │ │ ├── EditUtils.ts │ │ │ ├── ExplorationUtils.ts │ │ │ ├── NodeUtils.ts │ │ │ ├── RecordUtils.ts │ │ │ └── RelUtils.ts │ ├── iframe │ │ └── IFrameChart.tsx │ ├── json │ │ └── JSONChart.tsx │ ├── line │ │ └── LineChart.tsx │ ├── map │ │ ├── MapChart.tsx │ │ ├── MapUtils.ts │ │ └── layers │ │ │ ├── HeatmapLayer.tsx │ │ │ ├── LineLayer.tsx │ │ │ └── MarkerLayer.tsx │ ├── markdown │ │ └── MarkdownChart.tsx │ ├── parameter │ │ ├── ParameterSelectCardSettings.tsx │ │ ├── ParameterSelectionChart.tsx │ │ └── component │ │ │ ├── DateParameterSelect.tsx │ │ │ ├── FreeTextParameterSelect.tsx │ │ │ ├── NodePropertyParameterSelect.tsx │ │ │ ├── ParameterSelect.ts │ │ │ ├── QueryParameterSelect.tsx │ │ │ ├── RelationshipPropertyParameterSelect.tsx │ │ │ └── SelectionConfirmationButton.tsx │ ├── pie │ │ └── PieChart.tsx │ ├── scatter │ │ └── ScatterPlotChart.tsx │ ├── single │ │ └── SingleValueChart.tsx │ └── table │ │ ├── TableActionsHelper.ts │ │ └── TableChart.tsx ├── component │ ├── editor │ │ ├── CodeEditorComponent.tsx │ │ └── CodeViewerComponent.tsx │ ├── field │ │ ├── ColorPicker.tsx │ │ ├── DateField.tsx │ │ ├── Field.tsx │ │ └── Setting.tsx │ ├── misc │ │ └── DashboardConnectionUpdateHandler.tsx │ ├── sso │ │ ├── SSOLoginButton.tsx │ │ └── SSOUtils.ts │ └── theme │ │ └── Themes.tsx ├── config │ ├── ApplicationConfig.ts │ ├── CardConfig.ts │ ├── ColorConfig.ts │ ├── DashboardConfig.ts │ ├── ExampleConfig.ts │ ├── PageConfig.ts │ ├── ReportConfig.tsx │ └── StyleConfig.tsx ├── dashboard │ ├── Dashboard.tsx │ ├── DashboardActions.ts │ ├── DashboardReducer.ts │ ├── DashboardSelectors.ts │ ├── DashboardThunks.ts │ ├── header │ │ ├── DashboardHeader.tsx │ │ ├── DashboardHeaderAboutButton.tsx │ │ ├── DashboardHeaderDownloadImageButton.tsx │ │ ├── DashboardHeaderLogo.tsx │ │ ├── DashboardHeaderLogoutButton.tsx │ │ ├── DashboardHeaderPageList.tsx │ │ ├── DashboardHeaderPageTitle.tsx │ │ └── DashboardTitle.tsx │ ├── placeholder │ │ └── DashboardPlaceholder.tsx │ └── sidebar │ │ ├── DashboardSidebar.tsx │ │ ├── DashboardSidebarListItem.tsx │ │ ├── menu │ │ ├── DashboardSidebarCreateMenu.tsx │ │ ├── DashboardSidebarDashboardMenu.tsx │ │ └── DashboardSidebarDatabaseMenu.tsx │ │ └── modal │ │ ├── DashboardSidebarAccessModal.tsx │ │ ├── DashboardSidebarCreateModal.tsx │ │ ├── DashboardSidebarDeleteModal.tsx │ │ ├── DashboardSidebarExportModal.tsx │ │ ├── DashboardSidebarImportModal.tsx │ │ ├── DashboardSidebarInfoModal.tsx │ │ ├── DashboardSidebarLoadModal.tsx │ │ ├── DashboardSidebarSaveModal.tsx │ │ ├── DashboardSidebarShareModal.tsx │ │ └── legacy │ │ └── LegacyShareModal.tsx ├── extensions │ ├── ExtensionConfig.tsx │ ├── ExtensionUtils.ts │ ├── ExtensionsModal.tsx │ ├── actions │ │ └── ActionsRuleCreationModal.tsx │ ├── advancedcharts │ │ ├── AdvancedChartsExampleConfig.ts │ │ ├── AdvancedChartsReportConfig.tsx │ │ ├── Utils.ts │ │ ├── chart │ │ │ ├── areamap │ │ │ │ ├── AreaMapChart.tsx │ │ │ │ ├── PolygonLayer.tsx │ │ │ │ ├── constants.ts │ │ │ │ └── styles │ │ │ │ │ └── PolygonStyle.css │ │ │ ├── choropleth │ │ │ │ └── ChoroplethMapChart.tsx │ │ │ ├── circlepacking │ │ │ │ └── CirclePackingChart.tsx │ │ │ ├── gantt │ │ │ │ ├── GanttChart.tsx │ │ │ │ ├── Utils.ts │ │ │ │ └── frappe │ │ │ │ │ ├── GanttVisualization.tsx │ │ │ │ │ └── lib │ │ │ │ │ ├── arrow.ts │ │ │ │ │ ├── bar.ts │ │ │ │ │ ├── date_utils.js │ │ │ │ │ ├── gantt.css │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── popup.ts │ │ │ │ │ └── svg_utils.ts │ │ │ ├── gauge │ │ │ │ └── GaugeChart.tsx │ │ │ ├── graph3d │ │ │ │ ├── GraphChart3D.tsx │ │ │ │ └── GraphChartVisualization3D.tsx │ │ │ ├── radar │ │ │ │ └── RadarChart.tsx │ │ │ ├── sankey │ │ │ │ └── SankeyChart.tsx │ │ │ ├── sunburst │ │ │ │ └── SunburstChart.tsx │ │ │ └── treemap │ │ │ │ └── TreeMapChart.tsx │ │ └── component │ │ │ └── RefreshButton.tsx │ ├── forms │ │ ├── FormsExampleConfig.tsx │ │ ├── FormsReportConfig.tsx │ │ ├── chart │ │ │ └── NeoForm.tsx │ │ └── settings │ │ │ ├── NeoFormCardSettings.tsx │ │ │ ├── NeoFormCardSettingsModal.tsx │ │ │ └── list │ │ │ ├── NeoFormSortableItem.tsx │ │ │ ├── NeoFormSortableList.tsx │ │ │ └── NeoFormSortableOverlay.tsx │ ├── query-translator │ │ └── component │ │ │ └── OverrideCardQueryEditor.tsx │ ├── rbac │ │ ├── RBACManagementLabelButton.tsx │ │ ├── RBACManagementMenu.tsx │ │ ├── RBACManagementModal.tsx │ │ └── RBACUtils.ts │ ├── state │ │ ├── ExtensionActions.ts │ │ ├── ExtensionReducer.ts │ │ └── ExtensionSelectors.ts │ ├── styling │ │ ├── StyleRuleCreationModal.tsx │ │ └── StyleRuleEvaluator.ts │ └── text2cypher │ │ ├── QueryTranslatorConfig.ts │ │ ├── clients │ │ ├── AzureOpenAi │ │ │ ├── AzureOpenAiClient.ts │ │ │ └── AzureOpenAiLogo.png │ │ ├── ModelClient.ts │ │ ├── OpenAi │ │ │ ├── OpenAiClient.ts │ │ │ └── OpenAiLogo.png │ │ ├── VertexAiClient.ts │ │ └── const.ts │ │ ├── component │ │ ├── ClientSettings.tsx │ │ ├── LoadingIcon.tsx │ │ ├── OverrideCardQueryEditor.tsx │ │ ├── QueryTranslatorButton.tsx │ │ ├── QueryTranslatorSettingsModal.tsx │ │ └── model-examples │ │ │ ├── ExampleDisplayTable.tsx │ │ │ ├── ExampleEditorModal.tsx │ │ │ ├── QueryTranslatorSettingsModelExamples.tsx │ │ │ └── utils.ts │ │ ├── state │ │ ├── QueryTranslatorActions.ts │ │ ├── QueryTranslatorReducer.ts │ │ ├── QueryTranslatorSelector.ts │ │ └── QueryTranslatorThunks.ts │ │ └── util │ │ ├── Status.ts │ │ └── Util.ts ├── index.pcss ├── index.tsx ├── modal │ ├── AboutModal.tsx │ ├── ConnectionModal.tsx │ ├── DeletePageModal.tsx │ ├── ExportModal.tsx │ ├── LoadSharedDashboardModal.tsx │ ├── ModalSelectors.tsx │ ├── ModalUtils.tsx │ ├── NotificationModal.tsx │ ├── ReportExamplesModal.tsx │ ├── ReportHelpModal.tsx │ ├── UpgradeOldDashboardModal.tsx │ └── WelcomeScreenModal.tsx ├── page │ ├── Page.tsx │ ├── PageActions.ts │ ├── PageReducer.ts │ ├── PageSelectors.ts │ └── PageThunks.ts ├── report │ ├── Report.tsx │ ├── ReportQueryRunner.ts │ ├── ReportRecordProcessing.tsx │ └── ReportWrapper.tsx ├── sessionStorage │ ├── SessionStorageActions.ts │ ├── SessionStorageReducer.ts │ └── SessionStorageSelectors.ts ├── settings │ ├── SettingsActions.ts │ ├── SettingsModal.tsx │ ├── SettingsReducer.ts │ ├── SettingsSelectors.ts │ └── SettingsThunks.ts ├── store.ts └── utils │ ├── ObjectManipulation.ts │ ├── ReportUtils.ts │ ├── accessibility.ts │ ├── parameterUtils.ts │ └── uuid.ts ├── ssl ├── Dockerfile └── default.conf ├── tailwind.config.js ├── tsconfig.json ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/develop-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/.github/workflows/develop-deployment.yml -------------------------------------------------------------------------------- /.github/workflows/develop-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/.github/workflows/develop-test.yml -------------------------------------------------------------------------------- /.github/workflows/master-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/.github/workflows/master-deployment.yml -------------------------------------------------------------------------------- /.github/workflows/master-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/.github/workflows/master-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/.husky/common.sh -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | coverage 2 | dist 3 | node_modules 4 | docs -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/README.md -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/about.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/changelog.md -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/compose.yaml -------------------------------------------------------------------------------- /conf/default.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/conf/default.conf.template -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/cypress/Page.js -------------------------------------------------------------------------------- /cypress/e2e/charts/array.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/cypress/e2e/charts/array.cy.js -------------------------------------------------------------------------------- /cypress/e2e/charts/bar.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/cypress/e2e/charts/bar.cy.js -------------------------------------------------------------------------------- /cypress/e2e/charts/table.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/cypress/e2e/charts/table.cy.js -------------------------------------------------------------------------------- /cypress/e2e/start_page.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/cypress/e2e/start_page.cy.js -------------------------------------------------------------------------------- /cypress/fixtures/cypher_queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/cypress/fixtures/cypher_queries.js -------------------------------------------------------------------------------- /cypress/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/cypress/index.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/cypress/support/e2e.ts -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/antora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/antora.yml -------------------------------------------------------------------------------- /docs/modules/ROOT/images/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/about.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/advanced-visualizations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/advanced-visualizations.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/areamap-countries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/areamap-countries.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/areamap-regions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/areamap-regions.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/bar.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/barstacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/barstacked.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/choropleth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/choropleth.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/circlepacking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/circlepacking.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/component-hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/component-hierarchy.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/createform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/createform.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/cypress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/cypress.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/dashboard.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/dashboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/dashboard2.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/dashboardaccesscontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/dashboardaccesscontrol.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/dashboardnew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/dashboardnew.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/dashboardnewsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/dashboardnewsettings.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/dashboardsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/dashboardsettings.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/englisheditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/englisheditor.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/extensionbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/extensionbutton.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/extensions.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/formbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/formbutton.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/forms.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/formselector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/formselector.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/formsimple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/formsimple.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/gantt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/gantt.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/gauge.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/graph.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/graph2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/graph2.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/graph3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/graph3d.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/graph3dvirtual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/graph3dvirtual.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/graphdrilldown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/graphdrilldown.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/graphexploration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/graphexploration.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/iframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/iframe.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/iframe2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/iframe2.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/json.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/line1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/line1.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/line2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/line2.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/llm-examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/llm-examples.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/llmconfiguration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/llmconfiguration.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/map.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/map2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/map2.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/map3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/map3.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/map_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/map_cluster.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/map_heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/map_heatmap.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/markdown.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/movereport.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/movereport.gif -------------------------------------------------------------------------------- /docs/modules/ROOT/images/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/page.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/pie.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/piedonut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/piedonut.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/publish.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/radar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/radar.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/report-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/report-actions.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/report.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/report.gif -------------------------------------------------------------------------------- /docs/modules/ROOT/images/reportactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/reportactions.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/reportactionsbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/reportactionsbutton.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/resizereport.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/resizereport.gif -------------------------------------------------------------------------------- /docs/modules/ROOT/images/rolelabelmodal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/rolelabelmodal.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/rolesmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/rolesmenu.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/rule-based-styling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/rule-based-styling.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/rulebasedstyling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/rulebasedstyling.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/rulebasedstylingbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/rulebasedstylingbutton.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/sankey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/sankey.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/saveloadshare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/saveloadshare.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/select-multiple-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/select-multiple-table.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/select-single-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/select-single-table.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/select.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/select2.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/select3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/select3.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/select4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/select4.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/select5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/select5.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/standalone-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/standalone-architecture.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/sunburst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/sunburst.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/table1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/table1.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/table2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/table2.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/treemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/treemap.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/value.png -------------------------------------------------------------------------------- /docs/modules/ROOT/images/value2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/images/value2.png -------------------------------------------------------------------------------- /docs/modules/ROOT/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/nav.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/banner.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/banner.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/developer-guide/adding-visualizations.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/developer-guide/adding-visualizations.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/developer-guide/build-and-run.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/developer-guide/build-and-run.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/developer-guide/component-overview.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/developer-guide/component-overview.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/developer-guide/configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/developer-guide/configuration.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/developer-guide/contributing.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/developer-guide/contributing.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/developer-guide/deploy-a-build.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/developer-guide/deploy-a-build.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/developer-guide/design.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/developer-guide/design.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/developer-guide/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/developer-guide/index.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/developer-guide/session-storage.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/developer-guide/session-storage.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/developer-guide/standalone-mode.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/developer-guide/standalone-mode.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/developer-guide/state-management.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/developer-guide/state-management.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/developer-guide/style-configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/developer-guide/style-configuration.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/developer-guide/testing.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/developer-guide/testing.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/index.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/quickstart.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/quickstart.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/access-control.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/access-control.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/bloom-integration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/bloom-integration.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/dashboards.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/dashboards.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/extensions/access-control-management.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/extensions/access-control-management.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/extensions/advanced-visualizations.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/extensions/advanced-visualizations.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/extensions/forms.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/extensions/forms.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/extensions/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/extensions/index.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/extensions/natural-language-queries.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/extensions/natural-language-queries.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/extensions/report-actions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/extensions/report-actions.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/extensions/rule-based-styling.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/extensions/rule-based-styling.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/extensions/workflows.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/extensions/workflows.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/faq.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/faq.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/index.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/pages.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/pages.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/publishing.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/publishing.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/areamap.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/areamap.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/bar-chart.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/bar-chart.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/choropleth.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/choropleth.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/circle-packing.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/circle-packing.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/form.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/form.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/gantt.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/gantt.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/gauge-chart.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/gauge-chart.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/graph.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/graph.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/graph3d.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/graph3d.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/iframe.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/iframe.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/index.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/line-chart.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/line-chart.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/map.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/map.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/markdown.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/markdown.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/parameter-select.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/parameter-select.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/pie-chart.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/pie-chart.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/radar.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/radar.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/raw-json.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/raw-json.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/sankey.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/sankey.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/single-value.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/single-value.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/sunburst.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/sunburst.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/table.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/table.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/user-guide/reports/treemap.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/modules/ROOT/pages/user-guide/reports/treemap.adoc -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/preview.yml -------------------------------------------------------------------------------- /docs/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/server.js -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /evolving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/evolving.png -------------------------------------------------------------------------------- /gallery/.env: -------------------------------------------------------------------------------- 1 | PORT=4000 2 | PUBLIC_URL=https://s3.eu-west-2.amazonaws.com/neodash-gallery.graphapp.io/ -------------------------------------------------------------------------------- /gallery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/.gitignore -------------------------------------------------------------------------------- /gallery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/LICENSE -------------------------------------------------------------------------------- /gallery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/README.md -------------------------------------------------------------------------------- /gallery/dashboards/assessment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/assessment.json -------------------------------------------------------------------------------- /gallery/dashboards/assessment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/assessment.png -------------------------------------------------------------------------------- /gallery/dashboards/bom-english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/bom-english.json -------------------------------------------------------------------------------- /gallery/dashboards/bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/bom.json -------------------------------------------------------------------------------- /gallery/dashboards/bom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/bom.png -------------------------------------------------------------------------------- /gallery/dashboards/citation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/citation.json -------------------------------------------------------------------------------- /gallery/dashboards/citation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/citation.png -------------------------------------------------------------------------------- /gallery/dashboards/domains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/domains.json -------------------------------------------------------------------------------- /gallery/dashboards/domains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/domains.png -------------------------------------------------------------------------------- /gallery/dashboards/fraud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/fraud.json -------------------------------------------------------------------------------- /gallery/dashboards/fraud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/fraud.png -------------------------------------------------------------------------------- /gallery/dashboards/jokes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/jokes.json -------------------------------------------------------------------------------- /gallery/dashboards/jokes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/jokes.png -------------------------------------------------------------------------------- /gallery/dashboards/movies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/movies.json -------------------------------------------------------------------------------- /gallery/dashboards/movies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/movies.png -------------------------------------------------------------------------------- /gallery/dashboards/recommendations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/recommendations.json -------------------------------------------------------------------------------- /gallery/dashboards/recommendations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/recommendations.png -------------------------------------------------------------------------------- /gallery/dashboards/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/twitter.json -------------------------------------------------------------------------------- /gallery/dashboards/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/twitter.png -------------------------------------------------------------------------------- /gallery/dashboards/wine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/wine.json -------------------------------------------------------------------------------- /gallery/dashboards/wine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/dashboards/wine.png -------------------------------------------------------------------------------- /gallery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/package.json -------------------------------------------------------------------------------- /gallery/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/postcss.config.js -------------------------------------------------------------------------------- /gallery/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/public/favicon.ico -------------------------------------------------------------------------------- /gallery/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/public/favicon.png -------------------------------------------------------------------------------- /gallery/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/public/index.html -------------------------------------------------------------------------------- /gallery/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/public/manifest.json -------------------------------------------------------------------------------- /gallery/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/public/robots.txt -------------------------------------------------------------------------------- /gallery/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/setup.md -------------------------------------------------------------------------------- /gallery/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gallery/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/src/App.tsx -------------------------------------------------------------------------------- /gallery/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/src/index.css -------------------------------------------------------------------------------- /gallery/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/src/index.tsx -------------------------------------------------------------------------------- /gallery/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /gallery/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/src/reportWebVitals.ts -------------------------------------------------------------------------------- /gallery/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/src/setupTests.ts -------------------------------------------------------------------------------- /gallery/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/tailwind.config.js -------------------------------------------------------------------------------- /gallery/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/tsconfig.json -------------------------------------------------------------------------------- /gallery/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/gallery/yarn.lock -------------------------------------------------------------------------------- /k8s-deploy/neodash/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/k8s-deploy/neodash/.helmignore -------------------------------------------------------------------------------- /k8s-deploy/neodash/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/k8s-deploy/neodash/Chart.yaml -------------------------------------------------------------------------------- /k8s-deploy/neodash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/k8s-deploy/neodash/README.md -------------------------------------------------------------------------------- /k8s-deploy/neodash/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/k8s-deploy/neodash/templates/NOTES.txt -------------------------------------------------------------------------------- /k8s-deploy/neodash/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/k8s-deploy/neodash/templates/_helpers.tpl -------------------------------------------------------------------------------- /k8s-deploy/neodash/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/k8s-deploy/neodash/templates/deployment.yaml -------------------------------------------------------------------------------- /k8s-deploy/neodash/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/k8s-deploy/neodash/templates/hpa.yaml -------------------------------------------------------------------------------- /k8s-deploy/neodash/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/k8s-deploy/neodash/templates/ingress.yaml -------------------------------------------------------------------------------- /k8s-deploy/neodash/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/k8s-deploy/neodash/templates/service.yaml -------------------------------------------------------------------------------- /k8s-deploy/neodash/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/k8s-deploy/neodash/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /k8s-deploy/neodash/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/k8s-deploy/neodash/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /k8s-deploy/neodash/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/k8s-deploy/neodash/values.yaml -------------------------------------------------------------------------------- /k8s-deploy/sample-k8s-yamls/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/k8s-deploy/sample-k8s-yamls/deployment.yaml -------------------------------------------------------------------------------- /k8s-deploy/sample-k8s-yamls/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/k8s-deploy/sample-k8s-yamls/service.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/README.md -------------------------------------------------------------------------------- /public/accesscontrol2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/accesscontrol2.jpg -------------------------------------------------------------------------------- /public/advanced-visualizations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/advanced-visualizations.png -------------------------------------------------------------------------------- /public/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/config.json -------------------------------------------------------------------------------- /public/embed-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/embed-test.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/form.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/index.html -------------------------------------------------------------------------------- /public/linenumbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/linenumbers.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/movereport.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/movereport.gif -------------------------------------------------------------------------------- /public/neo4j-icon-color-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/neo4j-icon-color-full.png -------------------------------------------------------------------------------- /public/neo4j-icon-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/neo4j-icon-color.png -------------------------------------------------------------------------------- /public/neo4j-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/neo4j-icon.png -------------------------------------------------------------------------------- /public/report-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/report-actions.png -------------------------------------------------------------------------------- /public/resizereport.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/resizereport.gif -------------------------------------------------------------------------------- /public/rule-based-styling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/rule-based-styling.png -------------------------------------------------------------------------------- /public/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/screenshot.png -------------------------------------------------------------------------------- /public/style.config.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/style.css -------------------------------------------------------------------------------- /public/translator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/public/translator.png -------------------------------------------------------------------------------- /release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/release-notes.md -------------------------------------------------------------------------------- /scripts/config-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/scripts/config-entrypoint.sh -------------------------------------------------------------------------------- /scripts/docker-neo4j-initializer/docker-neo4j.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/scripts/docker-neo4j-initializer/docker-neo4j.sh -------------------------------------------------------------------------------- /scripts/docker-neo4j-initializer/movies.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/scripts/docker-neo4j-initializer/movies.cypher -------------------------------------------------------------------------------- /scripts/docker-neo4j-initializer/start-movies-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/scripts/docker-neo4j-initializer/start-movies-db.sh -------------------------------------------------------------------------------- /scripts/message-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/scripts/message-entrypoint.sh -------------------------------------------------------------------------------- /src/application/Application.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/application/Application.tsx -------------------------------------------------------------------------------- /src/application/ApplicationActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/application/ApplicationActions.ts -------------------------------------------------------------------------------- /src/application/ApplicationReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/application/ApplicationReducer.ts -------------------------------------------------------------------------------- /src/application/ApplicationSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/application/ApplicationSelectors.ts -------------------------------------------------------------------------------- /src/application/ApplicationThunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/application/ApplicationThunks.ts -------------------------------------------------------------------------------- /src/application/logging/LoggingActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/application/logging/LoggingActions.ts -------------------------------------------------------------------------------- /src/application/logging/LoggingReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/application/logging/LoggingReducer.ts -------------------------------------------------------------------------------- /src/application/logging/LoggingSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/application/logging/LoggingSelectors.ts -------------------------------------------------------------------------------- /src/application/logging/LoggingThunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/application/logging/LoggingThunk.ts -------------------------------------------------------------------------------- /src/card/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/card/Card.tsx -------------------------------------------------------------------------------- /src/card/CardActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/card/CardActions.ts -------------------------------------------------------------------------------- /src/card/CardAddButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/card/CardAddButton.tsx -------------------------------------------------------------------------------- /src/card/CardReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/card/CardReducer.ts -------------------------------------------------------------------------------- /src/card/CardSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/card/CardSelectors.ts -------------------------------------------------------------------------------- /src/card/CardStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/card/CardStyle.ts -------------------------------------------------------------------------------- /src/card/CardThunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/card/CardThunks.ts -------------------------------------------------------------------------------- /src/card/settings/CardSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/card/settings/CardSettings.tsx -------------------------------------------------------------------------------- /src/card/settings/CardSettingsContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/card/settings/CardSettingsContent.tsx -------------------------------------------------------------------------------- /src/card/settings/CardSettingsFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/card/settings/CardSettingsFooter.tsx -------------------------------------------------------------------------------- /src/card/settings/CardSettingsHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/card/settings/CardSettingsHeader.tsx -------------------------------------------------------------------------------- /src/card/view/CardView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/card/view/CardView.tsx -------------------------------------------------------------------------------- /src/card/view/CardViewFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/card/view/CardViewFooter.tsx -------------------------------------------------------------------------------- /src/card/view/CardViewHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/card/view/CardViewHeader.tsx -------------------------------------------------------------------------------- /src/chart/Chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/Chart.ts -------------------------------------------------------------------------------- /src/chart/ChartUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/ChartUtils.ts -------------------------------------------------------------------------------- /src/chart/SettingsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/SettingsUtils.ts -------------------------------------------------------------------------------- /src/chart/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/Utils.ts -------------------------------------------------------------------------------- /src/chart/bar/BarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/bar/BarChart.tsx -------------------------------------------------------------------------------- /src/chart/bar/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/bar/util.ts -------------------------------------------------------------------------------- /src/chart/graph/GraphChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/GraphChart.tsx -------------------------------------------------------------------------------- /src/chart/graph/GraphChartVisualization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/GraphChartVisualization.ts -------------------------------------------------------------------------------- /src/chart/graph/GraphChartVisualization2D.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/GraphChartVisualization2D.tsx -------------------------------------------------------------------------------- /src/chart/graph/GraphChartVisualizationBase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/GraphChartVisualizationBase.tsx -------------------------------------------------------------------------------- /src/chart/graph/component/GraphChartCanvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/component/GraphChartCanvas.tsx -------------------------------------------------------------------------------- /src/chart/graph/component/GraphChartContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/component/GraphChartContextMenu.tsx -------------------------------------------------------------------------------- /src/chart/graph/component/GraphChartEditModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/component/GraphChartEditModal.tsx -------------------------------------------------------------------------------- /src/chart/graph/component/GraphChartInspectModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/component/GraphChartInspectModal.tsx -------------------------------------------------------------------------------- /src/chart/graph/component/GraphChartTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/component/GraphChartTooltip.tsx -------------------------------------------------------------------------------- /src/chart/graph/component/GraphEntityInspectionTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/component/GraphEntityInspectionTable.tsx -------------------------------------------------------------------------------- /src/chart/graph/component/autocomplete/LabelTypeAutocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/component/autocomplete/LabelTypeAutocomplete.tsx -------------------------------------------------------------------------------- /src/chart/graph/component/autocomplete/PropertyNameAutocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/component/autocomplete/PropertyNameAutocomplete.tsx -------------------------------------------------------------------------------- /src/chart/graph/component/button/GraphChartDeepLinkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/component/button/GraphChartDeepLinkButton.tsx -------------------------------------------------------------------------------- /src/chart/graph/component/button/GraphChartFitViewButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/component/button/GraphChartFitViewButton.tsx -------------------------------------------------------------------------------- /src/chart/graph/component/button/GraphChartLockButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/component/button/GraphChartLockButton.tsx -------------------------------------------------------------------------------- /src/chart/graph/component/button/modal/DeletePropertyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/component/button/modal/DeletePropertyButton.tsx -------------------------------------------------------------------------------- /src/chart/graph/util/EditUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/util/EditUtils.ts -------------------------------------------------------------------------------- /src/chart/graph/util/ExplorationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/util/ExplorationUtils.ts -------------------------------------------------------------------------------- /src/chart/graph/util/NodeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/util/NodeUtils.ts -------------------------------------------------------------------------------- /src/chart/graph/util/RecordUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/util/RecordUtils.ts -------------------------------------------------------------------------------- /src/chart/graph/util/RelUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/graph/util/RelUtils.ts -------------------------------------------------------------------------------- /src/chart/iframe/IFrameChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/iframe/IFrameChart.tsx -------------------------------------------------------------------------------- /src/chart/json/JSONChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/json/JSONChart.tsx -------------------------------------------------------------------------------- /src/chart/line/LineChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/line/LineChart.tsx -------------------------------------------------------------------------------- /src/chart/map/MapChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/map/MapChart.tsx -------------------------------------------------------------------------------- /src/chart/map/MapUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/map/MapUtils.ts -------------------------------------------------------------------------------- /src/chart/map/layers/HeatmapLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/map/layers/HeatmapLayer.tsx -------------------------------------------------------------------------------- /src/chart/map/layers/LineLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/map/layers/LineLayer.tsx -------------------------------------------------------------------------------- /src/chart/map/layers/MarkerLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/map/layers/MarkerLayer.tsx -------------------------------------------------------------------------------- /src/chart/markdown/MarkdownChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/markdown/MarkdownChart.tsx -------------------------------------------------------------------------------- /src/chart/parameter/ParameterSelectCardSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/parameter/ParameterSelectCardSettings.tsx -------------------------------------------------------------------------------- /src/chart/parameter/ParameterSelectionChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/parameter/ParameterSelectionChart.tsx -------------------------------------------------------------------------------- /src/chart/parameter/component/DateParameterSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/parameter/component/DateParameterSelect.tsx -------------------------------------------------------------------------------- /src/chart/parameter/component/FreeTextParameterSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/parameter/component/FreeTextParameterSelect.tsx -------------------------------------------------------------------------------- /src/chart/parameter/component/NodePropertyParameterSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/parameter/component/NodePropertyParameterSelect.tsx -------------------------------------------------------------------------------- /src/chart/parameter/component/ParameterSelect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/parameter/component/ParameterSelect.ts -------------------------------------------------------------------------------- /src/chart/parameter/component/QueryParameterSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/parameter/component/QueryParameterSelect.tsx -------------------------------------------------------------------------------- /src/chart/parameter/component/RelationshipPropertyParameterSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/parameter/component/RelationshipPropertyParameterSelect.tsx -------------------------------------------------------------------------------- /src/chart/parameter/component/SelectionConfirmationButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/parameter/component/SelectionConfirmationButton.tsx -------------------------------------------------------------------------------- /src/chart/pie/PieChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/pie/PieChart.tsx -------------------------------------------------------------------------------- /src/chart/scatter/ScatterPlotChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/scatter/ScatterPlotChart.tsx -------------------------------------------------------------------------------- /src/chart/single/SingleValueChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/single/SingleValueChart.tsx -------------------------------------------------------------------------------- /src/chart/table/TableActionsHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/table/TableActionsHelper.ts -------------------------------------------------------------------------------- /src/chart/table/TableChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/chart/table/TableChart.tsx -------------------------------------------------------------------------------- /src/component/editor/CodeEditorComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/component/editor/CodeEditorComponent.tsx -------------------------------------------------------------------------------- /src/component/editor/CodeViewerComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/component/editor/CodeViewerComponent.tsx -------------------------------------------------------------------------------- /src/component/field/ColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/component/field/ColorPicker.tsx -------------------------------------------------------------------------------- /src/component/field/DateField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/component/field/DateField.tsx -------------------------------------------------------------------------------- /src/component/field/Field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/component/field/Field.tsx -------------------------------------------------------------------------------- /src/component/field/Setting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/component/field/Setting.tsx -------------------------------------------------------------------------------- /src/component/misc/DashboardConnectionUpdateHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/component/misc/DashboardConnectionUpdateHandler.tsx -------------------------------------------------------------------------------- /src/component/sso/SSOLoginButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/component/sso/SSOLoginButton.tsx -------------------------------------------------------------------------------- /src/component/sso/SSOUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/component/sso/SSOUtils.ts -------------------------------------------------------------------------------- /src/component/theme/Themes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/component/theme/Themes.tsx -------------------------------------------------------------------------------- /src/config/ApplicationConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/config/ApplicationConfig.ts -------------------------------------------------------------------------------- /src/config/CardConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/config/CardConfig.ts -------------------------------------------------------------------------------- /src/config/ColorConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/config/ColorConfig.ts -------------------------------------------------------------------------------- /src/config/DashboardConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/config/DashboardConfig.ts -------------------------------------------------------------------------------- /src/config/ExampleConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/config/ExampleConfig.ts -------------------------------------------------------------------------------- /src/config/PageConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/config/PageConfig.ts -------------------------------------------------------------------------------- /src/config/ReportConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/config/ReportConfig.tsx -------------------------------------------------------------------------------- /src/config/StyleConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/config/StyleConfig.tsx -------------------------------------------------------------------------------- /src/dashboard/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/Dashboard.tsx -------------------------------------------------------------------------------- /src/dashboard/DashboardActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/DashboardActions.ts -------------------------------------------------------------------------------- /src/dashboard/DashboardReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/DashboardReducer.ts -------------------------------------------------------------------------------- /src/dashboard/DashboardSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/DashboardSelectors.ts -------------------------------------------------------------------------------- /src/dashboard/DashboardThunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/DashboardThunks.ts -------------------------------------------------------------------------------- /src/dashboard/header/DashboardHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/header/DashboardHeader.tsx -------------------------------------------------------------------------------- /src/dashboard/header/DashboardHeaderAboutButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/header/DashboardHeaderAboutButton.tsx -------------------------------------------------------------------------------- /src/dashboard/header/DashboardHeaderDownloadImageButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/header/DashboardHeaderDownloadImageButton.tsx -------------------------------------------------------------------------------- /src/dashboard/header/DashboardHeaderLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/header/DashboardHeaderLogo.tsx -------------------------------------------------------------------------------- /src/dashboard/header/DashboardHeaderLogoutButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/header/DashboardHeaderLogoutButton.tsx -------------------------------------------------------------------------------- /src/dashboard/header/DashboardHeaderPageList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/header/DashboardHeaderPageList.tsx -------------------------------------------------------------------------------- /src/dashboard/header/DashboardHeaderPageTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/header/DashboardHeaderPageTitle.tsx -------------------------------------------------------------------------------- /src/dashboard/header/DashboardTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/header/DashboardTitle.tsx -------------------------------------------------------------------------------- /src/dashboard/placeholder/DashboardPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/placeholder/DashboardPlaceholder.tsx -------------------------------------------------------------------------------- /src/dashboard/sidebar/DashboardSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/sidebar/DashboardSidebar.tsx -------------------------------------------------------------------------------- /src/dashboard/sidebar/DashboardSidebarListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/sidebar/DashboardSidebarListItem.tsx -------------------------------------------------------------------------------- /src/dashboard/sidebar/menu/DashboardSidebarCreateMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/sidebar/menu/DashboardSidebarCreateMenu.tsx -------------------------------------------------------------------------------- /src/dashboard/sidebar/menu/DashboardSidebarDashboardMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/sidebar/menu/DashboardSidebarDashboardMenu.tsx -------------------------------------------------------------------------------- /src/dashboard/sidebar/menu/DashboardSidebarDatabaseMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/sidebar/menu/DashboardSidebarDatabaseMenu.tsx -------------------------------------------------------------------------------- /src/dashboard/sidebar/modal/DashboardSidebarAccessModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/sidebar/modal/DashboardSidebarAccessModal.tsx -------------------------------------------------------------------------------- /src/dashboard/sidebar/modal/DashboardSidebarCreateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/sidebar/modal/DashboardSidebarCreateModal.tsx -------------------------------------------------------------------------------- /src/dashboard/sidebar/modal/DashboardSidebarDeleteModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/sidebar/modal/DashboardSidebarDeleteModal.tsx -------------------------------------------------------------------------------- /src/dashboard/sidebar/modal/DashboardSidebarExportModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/sidebar/modal/DashboardSidebarExportModal.tsx -------------------------------------------------------------------------------- /src/dashboard/sidebar/modal/DashboardSidebarImportModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/sidebar/modal/DashboardSidebarImportModal.tsx -------------------------------------------------------------------------------- /src/dashboard/sidebar/modal/DashboardSidebarInfoModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/sidebar/modal/DashboardSidebarInfoModal.tsx -------------------------------------------------------------------------------- /src/dashboard/sidebar/modal/DashboardSidebarLoadModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/sidebar/modal/DashboardSidebarLoadModal.tsx -------------------------------------------------------------------------------- /src/dashboard/sidebar/modal/DashboardSidebarSaveModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/sidebar/modal/DashboardSidebarSaveModal.tsx -------------------------------------------------------------------------------- /src/dashboard/sidebar/modal/DashboardSidebarShareModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/sidebar/modal/DashboardSidebarShareModal.tsx -------------------------------------------------------------------------------- /src/dashboard/sidebar/modal/legacy/LegacyShareModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/dashboard/sidebar/modal/legacy/LegacyShareModal.tsx -------------------------------------------------------------------------------- /src/extensions/ExtensionConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/ExtensionConfig.tsx -------------------------------------------------------------------------------- /src/extensions/ExtensionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/ExtensionUtils.ts -------------------------------------------------------------------------------- /src/extensions/ExtensionsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/ExtensionsModal.tsx -------------------------------------------------------------------------------- /src/extensions/actions/ActionsRuleCreationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/actions/ActionsRuleCreationModal.tsx -------------------------------------------------------------------------------- /src/extensions/advancedcharts/AdvancedChartsExampleConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/AdvancedChartsExampleConfig.ts -------------------------------------------------------------------------------- /src/extensions/advancedcharts/AdvancedChartsReportConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/AdvancedChartsReportConfig.tsx -------------------------------------------------------------------------------- /src/extensions/advancedcharts/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/Utils.ts -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/areamap/AreaMapChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/areamap/AreaMapChart.tsx -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/areamap/PolygonLayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/areamap/PolygonLayer.tsx -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/areamap/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/areamap/constants.ts -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/areamap/styles/PolygonStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/areamap/styles/PolygonStyle.css -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/choropleth/ChoroplethMapChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/choropleth/ChoroplethMapChart.tsx -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/circlepacking/CirclePackingChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/circlepacking/CirclePackingChart.tsx -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/gantt/GanttChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/gantt/GanttChart.tsx -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/gantt/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/gantt/Utils.ts -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/gantt/frappe/GanttVisualization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/gantt/frappe/GanttVisualization.tsx -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/gantt/frappe/lib/arrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/gantt/frappe/lib/arrow.ts -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/gantt/frappe/lib/bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/gantt/frappe/lib/bar.ts -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/gantt/frappe/lib/date_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/gantt/frappe/lib/date_utils.js -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/gantt/frappe/lib/gantt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/gantt/frappe/lib/gantt.css -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/gantt/frappe/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/gantt/frappe/lib/index.ts -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/gantt/frappe/lib/popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/gantt/frappe/lib/popup.ts -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/gantt/frappe/lib/svg_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/gantt/frappe/lib/svg_utils.ts -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/gauge/GaugeChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/gauge/GaugeChart.tsx -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/graph3d/GraphChart3D.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/graph3d/GraphChart3D.tsx -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/graph3d/GraphChartVisualization3D.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/graph3d/GraphChartVisualization3D.tsx -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/radar/RadarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/radar/RadarChart.tsx -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/sankey/SankeyChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/sankey/SankeyChart.tsx -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/sunburst/SunburstChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/sunburst/SunburstChart.tsx -------------------------------------------------------------------------------- /src/extensions/advancedcharts/chart/treemap/TreeMapChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/chart/treemap/TreeMapChart.tsx -------------------------------------------------------------------------------- /src/extensions/advancedcharts/component/RefreshButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/advancedcharts/component/RefreshButton.tsx -------------------------------------------------------------------------------- /src/extensions/forms/FormsExampleConfig.tsx: -------------------------------------------------------------------------------- 1 | export const EXAMPLE_FORMS = []; 2 | -------------------------------------------------------------------------------- /src/extensions/forms/FormsReportConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/forms/FormsReportConfig.tsx -------------------------------------------------------------------------------- /src/extensions/forms/chart/NeoForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/forms/chart/NeoForm.tsx -------------------------------------------------------------------------------- /src/extensions/forms/settings/NeoFormCardSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/forms/settings/NeoFormCardSettings.tsx -------------------------------------------------------------------------------- /src/extensions/forms/settings/NeoFormCardSettingsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/forms/settings/NeoFormCardSettingsModal.tsx -------------------------------------------------------------------------------- /src/extensions/forms/settings/list/NeoFormSortableItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/forms/settings/list/NeoFormSortableItem.tsx -------------------------------------------------------------------------------- /src/extensions/forms/settings/list/NeoFormSortableList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/forms/settings/list/NeoFormSortableList.tsx -------------------------------------------------------------------------------- /src/extensions/forms/settings/list/NeoFormSortableOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/forms/settings/list/NeoFormSortableOverlay.tsx -------------------------------------------------------------------------------- /src/extensions/query-translator/component/OverrideCardQueryEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/query-translator/component/OverrideCardQueryEditor.tsx -------------------------------------------------------------------------------- /src/extensions/rbac/RBACManagementLabelButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/rbac/RBACManagementLabelButton.tsx -------------------------------------------------------------------------------- /src/extensions/rbac/RBACManagementMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/rbac/RBACManagementMenu.tsx -------------------------------------------------------------------------------- /src/extensions/rbac/RBACManagementModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/rbac/RBACManagementModal.tsx -------------------------------------------------------------------------------- /src/extensions/rbac/RBACUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/rbac/RBACUtils.ts -------------------------------------------------------------------------------- /src/extensions/state/ExtensionActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/state/ExtensionActions.ts -------------------------------------------------------------------------------- /src/extensions/state/ExtensionReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/state/ExtensionReducer.ts -------------------------------------------------------------------------------- /src/extensions/state/ExtensionSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/state/ExtensionSelectors.ts -------------------------------------------------------------------------------- /src/extensions/styling/StyleRuleCreationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/styling/StyleRuleCreationModal.tsx -------------------------------------------------------------------------------- /src/extensions/styling/StyleRuleEvaluator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/styling/StyleRuleEvaluator.ts -------------------------------------------------------------------------------- /src/extensions/text2cypher/QueryTranslatorConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/QueryTranslatorConfig.ts -------------------------------------------------------------------------------- /src/extensions/text2cypher/clients/AzureOpenAi/AzureOpenAiClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/clients/AzureOpenAi/AzureOpenAiClient.ts -------------------------------------------------------------------------------- /src/extensions/text2cypher/clients/AzureOpenAi/AzureOpenAiLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/clients/AzureOpenAi/AzureOpenAiLogo.png -------------------------------------------------------------------------------- /src/extensions/text2cypher/clients/ModelClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/clients/ModelClient.ts -------------------------------------------------------------------------------- /src/extensions/text2cypher/clients/OpenAi/OpenAiClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/clients/OpenAi/OpenAiClient.ts -------------------------------------------------------------------------------- /src/extensions/text2cypher/clients/OpenAi/OpenAiLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/clients/OpenAi/OpenAiLogo.png -------------------------------------------------------------------------------- /src/extensions/text2cypher/clients/VertexAiClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/clients/VertexAiClient.ts -------------------------------------------------------------------------------- /src/extensions/text2cypher/clients/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/clients/const.ts -------------------------------------------------------------------------------- /src/extensions/text2cypher/component/ClientSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/component/ClientSettings.tsx -------------------------------------------------------------------------------- /src/extensions/text2cypher/component/LoadingIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/component/LoadingIcon.tsx -------------------------------------------------------------------------------- /src/extensions/text2cypher/component/OverrideCardQueryEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/component/OverrideCardQueryEditor.tsx -------------------------------------------------------------------------------- /src/extensions/text2cypher/component/QueryTranslatorButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/component/QueryTranslatorButton.tsx -------------------------------------------------------------------------------- /src/extensions/text2cypher/component/QueryTranslatorSettingsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/component/QueryTranslatorSettingsModal.tsx -------------------------------------------------------------------------------- /src/extensions/text2cypher/component/model-examples/ExampleDisplayTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/component/model-examples/ExampleDisplayTable.tsx -------------------------------------------------------------------------------- /src/extensions/text2cypher/component/model-examples/ExampleEditorModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/component/model-examples/ExampleEditorModal.tsx -------------------------------------------------------------------------------- /src/extensions/text2cypher/component/model-examples/QueryTranslatorSettingsModelExamples.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/component/model-examples/QueryTranslatorSettingsModelExamples.tsx -------------------------------------------------------------------------------- /src/extensions/text2cypher/component/model-examples/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/component/model-examples/utils.ts -------------------------------------------------------------------------------- /src/extensions/text2cypher/state/QueryTranslatorActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/state/QueryTranslatorActions.ts -------------------------------------------------------------------------------- /src/extensions/text2cypher/state/QueryTranslatorReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/state/QueryTranslatorReducer.ts -------------------------------------------------------------------------------- /src/extensions/text2cypher/state/QueryTranslatorSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/state/QueryTranslatorSelector.ts -------------------------------------------------------------------------------- /src/extensions/text2cypher/state/QueryTranslatorThunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/state/QueryTranslatorThunks.ts -------------------------------------------------------------------------------- /src/extensions/text2cypher/util/Status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/util/Status.ts -------------------------------------------------------------------------------- /src/extensions/text2cypher/util/Util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/extensions/text2cypher/util/Util.ts -------------------------------------------------------------------------------- /src/index.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/index.pcss -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/modal/AboutModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/modal/AboutModal.tsx -------------------------------------------------------------------------------- /src/modal/ConnectionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/modal/ConnectionModal.tsx -------------------------------------------------------------------------------- /src/modal/DeletePageModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/modal/DeletePageModal.tsx -------------------------------------------------------------------------------- /src/modal/ExportModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/modal/ExportModal.tsx -------------------------------------------------------------------------------- /src/modal/LoadSharedDashboardModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/modal/LoadSharedDashboardModal.tsx -------------------------------------------------------------------------------- /src/modal/ModalSelectors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/modal/ModalSelectors.tsx -------------------------------------------------------------------------------- /src/modal/ModalUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/modal/ModalUtils.tsx -------------------------------------------------------------------------------- /src/modal/NotificationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/modal/NotificationModal.tsx -------------------------------------------------------------------------------- /src/modal/ReportExamplesModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/modal/ReportExamplesModal.tsx -------------------------------------------------------------------------------- /src/modal/ReportHelpModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/modal/ReportHelpModal.tsx -------------------------------------------------------------------------------- /src/modal/UpgradeOldDashboardModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/modal/UpgradeOldDashboardModal.tsx -------------------------------------------------------------------------------- /src/modal/WelcomeScreenModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/modal/WelcomeScreenModal.tsx -------------------------------------------------------------------------------- /src/page/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/page/Page.tsx -------------------------------------------------------------------------------- /src/page/PageActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/page/PageActions.ts -------------------------------------------------------------------------------- /src/page/PageReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/page/PageReducer.ts -------------------------------------------------------------------------------- /src/page/PageSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/page/PageSelectors.ts -------------------------------------------------------------------------------- /src/page/PageThunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/page/PageThunks.ts -------------------------------------------------------------------------------- /src/report/Report.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/report/Report.tsx -------------------------------------------------------------------------------- /src/report/ReportQueryRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/report/ReportQueryRunner.ts -------------------------------------------------------------------------------- /src/report/ReportRecordProcessing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/report/ReportRecordProcessing.tsx -------------------------------------------------------------------------------- /src/report/ReportWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/report/ReportWrapper.tsx -------------------------------------------------------------------------------- /src/sessionStorage/SessionStorageActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/sessionStorage/SessionStorageActions.ts -------------------------------------------------------------------------------- /src/sessionStorage/SessionStorageReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/sessionStorage/SessionStorageReducer.ts -------------------------------------------------------------------------------- /src/sessionStorage/SessionStorageSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/sessionStorage/SessionStorageSelectors.ts -------------------------------------------------------------------------------- /src/settings/SettingsActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/settings/SettingsActions.ts -------------------------------------------------------------------------------- /src/settings/SettingsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/settings/SettingsModal.tsx -------------------------------------------------------------------------------- /src/settings/SettingsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/settings/SettingsReducer.ts -------------------------------------------------------------------------------- /src/settings/SettingsSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/settings/SettingsSelectors.ts -------------------------------------------------------------------------------- /src/settings/SettingsThunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/settings/SettingsThunks.ts -------------------------------------------------------------------------------- /src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/store.ts -------------------------------------------------------------------------------- /src/utils/ObjectManipulation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/utils/ObjectManipulation.ts -------------------------------------------------------------------------------- /src/utils/ReportUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/utils/ReportUtils.ts -------------------------------------------------------------------------------- /src/utils/accessibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/utils/accessibility.ts -------------------------------------------------------------------------------- /src/utils/parameterUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/utils/parameterUtils.ts -------------------------------------------------------------------------------- /src/utils/uuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/src/utils/uuid.ts -------------------------------------------------------------------------------- /ssl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/ssl/Dockerfile -------------------------------------------------------------------------------- /ssl/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/ssl/default.conf -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-labs/neodash/HEAD/yarn.lock --------------------------------------------------------------------------------