@beastmode-develeap/beastmode 0.1.355 → 0.1.356
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/web/board.html
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
}
|
|
16
16
|
</script>
|
|
17
17
|
<!--BOARD_DATA-->
|
|
18
|
-
<script>window.__BUILD_STAMP__ = "20260604-
|
|
18
|
+
<script>window.__BUILD_STAMP__ = "20260604-125024-3044cb3";</script>
|
|
19
19
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
20
20
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
21
21
|
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
@@ -4284,7 +4284,7 @@ function Sidebar({ currentHash, factoryName, theme, onToggleTheme, selectedProje
|
|
|
4284
4284
|
}, []);
|
|
4285
4285
|
|
|
4286
4286
|
const links = [
|
|
4287
|
-
{ path: '#/', icon: 'dashboard', label: 'Dashboard' },
|
|
4287
|
+
{ path: '#/dashboard', icon: 'dashboard', label: 'Dashboard' },
|
|
4288
4288
|
...(selectedProject !== 'all' ? [{ path: '#/board', icon: 'board', label: 'Board' }] : []),
|
|
4289
4289
|
...(selectedProject !== 'all' ? [{ path: '#/strategy', icon: 'strategy', label: 'Strategy' }] : []),
|
|
4290
4290
|
{ path: '#/runs', icon: 'runs', label: 'Runs' },
|
|
@@ -12028,9 +12028,6 @@ function OnboardingTour() {
|
|
|
12028
12028
|
try {
|
|
12029
12029
|
if (localStorage.getItem('beastmode-tour-completed')) return;
|
|
12030
12030
|
} catch (_) { return; }
|
|
12031
|
-
if (!location.hash || location.hash === '#/' || location.hash === '#') {
|
|
12032
|
-
navigate('#/board');
|
|
12033
|
-
}
|
|
12034
12031
|
const t = setTimeout(() => {
|
|
12035
12032
|
if (!cancelled) setCurrentStep(0);
|
|
12036
12033
|
}, 600);
|
|
@@ -12228,6 +12225,7 @@ function App() {
|
|
|
12228
12225
|
case '#/quick-brainstorm': navigate('#/strategy-start/free-form'); page = html`<${SkeletonLoader} type="page" />`; break;
|
|
12229
12226
|
case '#/settings': page = html`<${SettingsPage} selectedProject=${selectedProject} />`; break;
|
|
12230
12227
|
case '#/help': page = html`<${HelpPage} />`; break;
|
|
12228
|
+
case '#/dashboard': page = html`<${DashboardPage} selectedProject=${selectedProject} onProjectChange=${setSelectedProject} />`; break;
|
|
12231
12229
|
default:
|
|
12232
12230
|
if (route.startsWith('#/strategy-start/')) {
|
|
12233
12231
|
const sessionType = route.replace('#/strategy-start/', '');
|
|
@@ -12236,7 +12234,11 @@ function App() {
|
|
|
12236
12234
|
const sessionId = route.replace('#/strategy-session/', '');
|
|
12237
12235
|
page = html`<${ChatPage} selectedProject=${selectedProject} resumeSession=${sessionId} />`;
|
|
12238
12236
|
} else {
|
|
12239
|
-
|
|
12237
|
+
// FR-1: the home/default route (''/'#'/'#/') renders the full-screen
|
|
12238
|
+
// Captain view — the same surface served at #/chat — not the dashboard
|
|
12239
|
+
// and not the board. display:contents keeps the wrapper layout-neutral
|
|
12240
|
+
// so ChatPage fills .main exactly as it does at #/chat.
|
|
12241
|
+
page = html`<div data-testid="captain-fullscreen" style="display:contents"><${ChatPage} selectedProject=${selectedProject} /></div>`;
|
|
12240
12242
|
}
|
|
12241
12243
|
break;
|
|
12242
12244
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
3044cb3a3af5673380c36d201cdd2de641a7a036
|
package/dist/web/build-stamp.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
20260604-
|
|
1
|
+
20260604-125024-3044cb3
|