@booboo-brain/panel 0.5.3 → 0.5.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/index.d.ts +2 -1
- package/dist/index.js +1186 -248
- package/dist-app/assets/index-DuaKsKpo.js +1090 -0
- package/dist-app/index.html +24 -19
- package/package.json +2 -2
- package/dist-app/assets/index-BhChad7x.js +0 -586
package/dist-app/index.html
CHANGED
|
@@ -1,20 +1,25 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8" />
|
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
-
<title>🐾 Booboo Panel</title>
|
|
7
|
-
<script>
|
|
8
|
-
/* set the theme before first paint so surfaces never flash the wrong colour */
|
|
9
|
-
try { document.documentElement.setAttribute("data-theme", localStorage.getItem("booboo-theme") === "
|
|
10
|
-
</script>
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<title>🐾 Booboo Panel</title>
|
|
7
|
+
<script>
|
|
8
|
+
/* set the theme before first paint so surfaces never flash the wrong colour */
|
|
9
|
+
try { var e_ = new URLSearchParams(location.search).get("embed"); document.documentElement.setAttribute("data-theme", (!e_ && localStorage.getItem("booboo-theme-v2") === "dark") ? "dark" : "light"); } catch (e) {}
|
|
10
|
+
</script>
|
|
11
|
+
<!-- the house type: loads when online (the hosted demo); the local CLI panel
|
|
12
|
+
degrades gracefully to the system stacks in panel.css -->
|
|
13
|
+
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
14
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
15
|
+
<link href="https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet" />
|
|
11
16
|
<style>
|
|
12
|
-
html, body, #root { margin: 0; height: 100%; background: var(--bg, #
|
|
13
|
-
:root[data-theme="
|
|
14
|
-
</style>
|
|
15
|
-
<script type="module" crossorigin src="./assets/index-
|
|
16
|
-
</head>
|
|
17
|
-
<body>
|
|
18
|
-
<div id="root"></div>
|
|
19
|
-
</body>
|
|
20
|
-
</html>
|
|
17
|
+
html, body, #root { margin: 0; height: 100%; background: var(--bg, #fcfbf9); }
|
|
18
|
+
:root[data-theme="dark"] { --bg: #0b0509; } /* so the fallback resolves dark before panel.css loads */
|
|
19
|
+
</style>
|
|
20
|
+
<script type="module" crossorigin src="./assets/index-DuaKsKpo.js"></script>
|
|
21
|
+
</head>
|
|
22
|
+
<body>
|
|
23
|
+
<div id="root"></div>
|
|
24
|
+
</body>
|
|
25
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@booboo-brain/panel",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.5",
|
|
4
4
|
"description": "Booboo panel — the organigram. Run your agents like a company: a drag-drop hierarchy your agents boot from, with buckets, reports, rules and the 3D graph, over one org file + snapshot.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"react-dom": ">=18"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@booboo-brain/spec": "0.3.
|
|
35
|
+
"@booboo-brain/spec": "0.3.1"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"react": "^19.0.0",
|