hippo-memory 1.12.10 → 1.12.11
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/dashboard.d.ts.map +1 -1
- package/dist/dashboard.js +21 -211
- package/dist/dashboard.js.map +1 -1
- package/dist/src/dashboard.js +21 -211
- package/dist/src/dashboard.js.map +1 -1
- package/dist/src/store.js +45 -20
- package/dist/src/store.js.map +1 -1
- package/dist/store.d.ts.map +1 -1
- package/dist/store.js +45 -20
- package/dist/store.js.map +1 -1
- package/dist-ui/assets/d3-BiWEKnn4.js +1 -0
- package/dist-ui/assets/index-Bvp8ClXc.css +1 -0
- package/dist-ui/assets/index-DbMxaBZ3.js +61 -0
- package/dist-ui/assets/react-DS1lvn1H.js +17 -0
- package/dist-ui/assets/three-BDgTxR1l.js +4112 -0
- package/dist-ui/index.html +7 -23
- package/package.json +1 -1
- package/dist-ui/assets/index-CxxqB9Wc.js +0 -4308
package/dist-ui/index.html
CHANGED
|
@@ -3,29 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
-
<title>Hippo Brain Observatory</title>
|
|
7
|
-
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
8
|
-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
9
|
-
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet" />
|
|
6
|
+
<title>Hippo Brain Observatory</title>
|
|
10
7
|
<style>
|
|
11
|
-
:root {
|
|
12
|
-
--bg: #0a0c10;
|
|
13
|
-
--surface: #14161e;
|
|
14
|
-
--border: rgba(255, 255, 255, 0.06);
|
|
15
|
-
--text: #e1e4ed;
|
|
16
|
-
--muted: #6b7084;
|
|
17
|
-
--accent: #7c5cff;
|
|
18
|
-
--green: #34d399;
|
|
19
|
-
--yellow: #f0a030;
|
|
20
|
-
--red: #f87171;
|
|
21
|
-
--purple: #a78bfa;
|
|
22
|
-
--font-mono: 'JetBrains Mono', 'Fira Code', monospace;
|
|
23
|
-
--font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
|
|
24
|
-
--glass-bg: rgba(10, 12, 16, 0.82);
|
|
25
|
-
--glass-blur: blur(16px);
|
|
26
|
-
--glass-border: 1px solid rgba(255, 255, 255, 0.06);
|
|
27
|
-
}
|
|
28
|
-
|
|
29
8
|
* {
|
|
30
9
|
margin: 0;
|
|
31
10
|
padding: 0;
|
|
@@ -34,6 +13,7 @@
|
|
|
34
13
|
|
|
35
14
|
body {
|
|
36
15
|
background: var(--bg);
|
|
16
|
+
background-image: var(--texture-cross-hatch);
|
|
37
17
|
color: var(--text);
|
|
38
18
|
font-family: var(--font-body);
|
|
39
19
|
overflow: hidden;
|
|
@@ -44,7 +24,11 @@
|
|
|
44
24
|
height: 100vh;
|
|
45
25
|
}
|
|
46
26
|
</style>
|
|
47
|
-
<script type="module" crossorigin src="/assets/index-
|
|
27
|
+
<script type="module" crossorigin src="/assets/index-DbMxaBZ3.js"></script>
|
|
28
|
+
<link rel="modulepreload" crossorigin href="/assets/react-DS1lvn1H.js">
|
|
29
|
+
<link rel="modulepreload" crossorigin href="/assets/three-BDgTxR1l.js">
|
|
30
|
+
<link rel="modulepreload" crossorigin href="/assets/d3-BiWEKnn4.js">
|
|
31
|
+
<link rel="stylesheet" crossorigin href="/assets/index-Bvp8ClXc.css">
|
|
48
32
|
</head>
|
|
49
33
|
<body>
|
|
50
34
|
<div id="root"></div>
|