brainsmatics 1.1.3 → 1.1.5
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 +2 -0
- package/dist/component/3d/contractBox/index.d.ts +10 -0
- package/dist/component/3d/pipeline/index.d.ts +1 -0
- package/dist/component/3d/sideBar/index.d.ts +8 -2
- package/dist/{deflate-15fb7dad.mjs → deflate-b1f206c4.mjs} +1 -1
- package/dist/{deflate-7af54791.js → deflate-e2887a39.js} +1 -1
- package/dist/{index-de4a2866.js → index-44ddd96f.js} +483 -452
- package/dist/{index-0b91bfdf.mjs → index-49695b33.mjs} +52625 -52321
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/{lerc-a22e97ff.js → lerc-30ae082d.js} +1 -1
- package/dist/{lerc-6bddd197.mjs → lerc-5738cae9.mjs} +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -112,6 +112,8 @@ interface AuxiliaryProps {
|
|
|
112
112
|
setTip: React.Dispatch<React.SetStateAction<string>>;
|
|
113
113
|
startRegionAnimation: React.MutableRefObject<boolean>;
|
|
114
114
|
setFunctionLoopSwcData: React.Dispatch<React.SetStateAction<SwcTreeItem[]>>;
|
|
115
|
+
setAzimuth: React.Dispatch<React.SetStateAction<number>>;
|
|
116
|
+
azimuth: number;
|
|
115
117
|
}
|
|
116
118
|
declare const Auxiliary: React.FC<AuxiliaryProps>;
|
|
117
119
|
export default Auxiliary;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import "./index.css";
|
|
3
|
+
interface contractProps {
|
|
4
|
+
type: "left" | "right";
|
|
5
|
+
leftWidth?: number;
|
|
6
|
+
rightWidth?: number;
|
|
7
|
+
onWindowResize: () => void;
|
|
8
|
+
}
|
|
9
|
+
declare const ContractBox: React.FC<contractProps>;
|
|
10
|
+
export default ContractBox;
|
|
@@ -80,6 +80,7 @@ interface propsType {
|
|
|
80
80
|
regionData: string;
|
|
81
81
|
mouseIsHoverbrainRegionPoints: React.MutableRefObject<boolean>;
|
|
82
82
|
auxRef: React.MutableRefObject<any>;
|
|
83
|
+
azimuth: number;
|
|
83
84
|
}
|
|
84
85
|
export declare var sphereBig: THREE.Mesh<THREE.SphereGeometry, THREE.MeshPhongMaterial, THREE.Object3DEventMap>;
|
|
85
86
|
export declare var sphereMiddelClick: THREE.Mesh<THREE.ConeGeometry, THREE.MeshPhongMaterial, THREE.Object3DEventMap>;
|
|
@@ -14,12 +14,16 @@ interface dataType extends DataNode {
|
|
|
14
14
|
y: string;
|
|
15
15
|
z: string;
|
|
16
16
|
cname: string;
|
|
17
|
+
"2D": boolean;
|
|
18
|
+
"3D": boolean;
|
|
17
19
|
}
|
|
18
20
|
interface SideBarProps {
|
|
19
21
|
regionData: string;
|
|
20
22
|
treeDatas: dataType[];
|
|
21
23
|
fbxTreeDatas?: dataType[];
|
|
22
|
-
vesselObj: React.MutableRefObject<{
|
|
24
|
+
vesselObj: React.MutableRefObject<{
|
|
25
|
+
[key: string]: any;
|
|
26
|
+
}>;
|
|
23
27
|
offset_factor_R?: React.MutableRefObject<number>;
|
|
24
28
|
type: string;
|
|
25
29
|
leftTreeRef?: React.RefObject<HTMLDivElement>;
|
|
@@ -51,7 +55,9 @@ interface SideBarProps {
|
|
|
51
55
|
axon: string[];
|
|
52
56
|
id: number;
|
|
53
57
|
}>;
|
|
54
|
-
swcnameMesh?: React.MutableRefObject<{
|
|
58
|
+
swcnameMesh?: React.MutableRefObject<{
|
|
59
|
+
[key: string]: any;
|
|
60
|
+
}>;
|
|
55
61
|
updatePage?: {};
|
|
56
62
|
childRef?: React.MutableRefObject<undefined>;
|
|
57
63
|
setEchartValue?: React.Dispatch<React.SetStateAction<string>>;
|
|
@@ -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-44ddd96f.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;
|