brainsmatics 1.0.98 → 1.0.100
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/component/3d/auxiliary/index.d.ts +1 -0
- package/dist/component/3d/card/index.d.ts +10 -0
- package/dist/component/3d/pipeline/index.d.ts +1 -0
- package/dist/component/util/global.d.ts +13 -0
- package/dist/{deflate-b00c3ba5.js → deflate-2f57861a.js} +1 -1
- package/dist/{deflate-3de676da.mjs → deflate-48e3b945.mjs} +1 -1
- package/dist/{index-3d947682.mjs → index-07ec5648.mjs} +40679 -40550
- package/dist/{index-a3c82190.js → index-96dee17e.js} +413 -416
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/{lerc-9800b656.js → lerc-4a6d4269.js} +1 -1
- package/dist/{lerc-216552b9.mjs → lerc-9623992b.mjs} +1 -1
- package/dist/style.css +1 -1
- package/package.json +3 -3
|
@@ -109,6 +109,7 @@ interface AuxiliaryProps {
|
|
|
109
109
|
atlasData: string;
|
|
110
110
|
tip: string;
|
|
111
111
|
setTip: React.Dispatch<React.SetStateAction<string>>;
|
|
112
|
+
startRegionAnimation: React.MutableRefObject<boolean>;
|
|
112
113
|
}
|
|
113
114
|
declare const Auxiliary: React.FC<AuxiliaryProps>;
|
|
114
115
|
export default Auxiliary;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { brainRegionDataType } from "../../util/global";
|
|
2
|
+
import * as THREE from "three";
|
|
3
|
+
import React from "react";
|
|
4
|
+
import "./index.css";
|
|
5
|
+
interface CardProps {
|
|
6
|
+
data: brainRegionDataType;
|
|
7
|
+
position: THREE.Vector3;
|
|
8
|
+
}
|
|
9
|
+
declare const Card: React.FC<CardProps>;
|
|
10
|
+
export default Card;
|
|
@@ -78,6 +78,7 @@ interface propsType {
|
|
|
78
78
|
gridShow: boolean;
|
|
79
79
|
setNodeStr: React.Dispatch<React.SetStateAction<{}>>;
|
|
80
80
|
regionData: string;
|
|
81
|
+
mouseIsHoverbrainRegionPoints: React.MutableRefObject<boolean>;
|
|
81
82
|
}
|
|
82
83
|
export declare var sphereBig: THREE.Mesh<THREE.SphereGeometry, THREE.MeshPhongMaterial, THREE.Object3DEventMap>;
|
|
83
84
|
export declare var sphereMiddelClick: THREE.Mesh<THREE.ConeGeometry, THREE.MeshPhongMaterial, THREE.Object3DEventMap>;
|
|
@@ -15,3 +15,16 @@ export declare let bbox: {
|
|
|
15
15
|
min: THREE.Vector3;
|
|
16
16
|
max: THREE.Vector3;
|
|
17
17
|
};
|
|
18
|
+
export interface brainRegionDataType {
|
|
19
|
+
f1: number;
|
|
20
|
+
PMID: string;
|
|
21
|
+
Journal: string;
|
|
22
|
+
Journal_IF: string;
|
|
23
|
+
Year: string;
|
|
24
|
+
Authors: string[];
|
|
25
|
+
DOI: string;
|
|
26
|
+
Title: string;
|
|
27
|
+
Abstract: string;
|
|
28
|
+
Text: string;
|
|
29
|
+
Type: string;
|
|
30
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("./index-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("./index-96dee17e.js"),t=require("./basedecoder-0503cc54.js");require("react");require("react-dom");class d extends t.BaseDecoder{decodeBlock(e){return r.inflate_1(new Uint8Array(e)).buffer}}exports.default=d;
|