Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bot] Auto update template #52

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"vite": "^4.4.9"
},
"dependencies": {
"@cmi-dair/brainviewer": "^0.1.4",
"@childmindresearch/brainviewer": "^0.1.4",
"@sveltejs/adapter-static": "^2.0.3",
"three": "^0.150.1"
}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/lib/components/viewer/Controls.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import { seedSide, seedSpecies, seedVertex, similarity } from "$lib/store";
import { Legend, colorInterpolates } from "@cmi-dair/brainviewer";
import { Legend, colorInterpolates } from "@childmindresearch/brainviewer";
import { onMount } from "svelte";
import RangeSlider from "svelte-range-slider-pips";
import Toggle from "svelte-toggle";
Expand Down
5 changes: 4 additions & 1 deletion frontend/src/lib/components/viewer/client.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import { ViewerClient, colorInterpolates } from "@cmi-dair/brainviewer";
import {
ViewerClient,
colorInterpolates,
} from "@childmindresearch/brainviewer";
import CameraControls from "camera-controls";
import * as THREE from "three";
import { speciesScale } from "./constants";
Expand Down
6 changes: 5 additions & 1 deletion frontend/src/lib/components/viewer/events.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import { getCrossSpeciesSimilarity, getNeuroQuery } from "$lib/api";
import { seedSide, seedSpecies, seedVertex, terms } from "$lib/store";
import { Legend, MeshColors, colorInterpolates } from "@cmi-dair/brainviewer";
import {
Legend,
MeshColors,
colorInterpolates,
} from "@childmindresearch/brainviewer";
import toast from "svelte-french-toast";
import * as THREE from "three";
import type { Viewer } from "./client";
Expand Down
6 changes: 5 additions & 1 deletion frontend/src/lib/components/viewer/fetch.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import { terms } from "$lib/store";
import type { ApiSurface } from "$lib/types";
import { MeshColors, Surface, SurfaceMesh } from "@cmi-dair/brainviewer";
import {
MeshColors,
Surface,
SurfaceMesh,
} from "@childmindresearch/brainviewer";
import {
getCrossSpeciesSimilarity,
getNeuroQuery,
Expand Down
5 changes: 4 additions & 1 deletion frontend/src/lib/components/viewer/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import type { Surface, colorInterpolates } from "@cmi-dair/brainviewer";
import type {
Surface,
colorInterpolates,
} from "@childmindresearch/brainviewer";

export interface ViewerSettings {
cameraLock: boolean;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/routes/Header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<NavLi href="https://github.com/TingsterX/alignment_macaque-human">
Data Repository
</NavLi>
<NavLi href="https://github.com/cmi-dair/cross-species-mapper">
<NavLi href="https://github.com/childmindresearch/cross-species-mapper">
Source Code
</NavLi>
</NavUl>
Expand Down
Loading