@beastmode-develeap/beastmode 0.1.357 β 0.1.359
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.js +7 -1
- package/dist/index.js.map +1 -1
- package/dist/web/board.html +11 -4
- package/dist/web/build-commit.txt +1 -1
- package/dist/web/build-stamp.txt +1 -1
- package/package.json +1 -1
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-233126-3c8106f";</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">
|
|
@@ -8833,6 +8833,7 @@ function ProjectsPage({ selectedProject, onProjectChange }) {
|
|
|
8833
8833
|
const [onboardingTier, setOnboardingTier] = useState('standard');
|
|
8834
8834
|
const [showPicker, setShowPicker] = useState(false);
|
|
8835
8835
|
const [adding, setAdding] = useState(false);
|
|
8836
|
+
const [highlightName, setHighlightName] = useState(null);
|
|
8836
8837
|
const [analysisStage, setAnalysisStage] = useState(null);
|
|
8837
8838
|
const [fullTierGuide, setFullTierGuide] = useState(null);
|
|
8838
8839
|
const [fullTierProject, setFullTierProject] = useState(null);
|
|
@@ -8862,6 +8863,8 @@ function ProjectsPage({ selectedProject, onProjectChange }) {
|
|
|
8862
8863
|
setNewPath('');
|
|
8863
8864
|
setGithubUrl('');
|
|
8864
8865
|
setCloneTarget('');
|
|
8866
|
+
setHighlightName(projName);
|
|
8867
|
+
setTimeout(() => setHighlightName(null), 4000);
|
|
8865
8868
|
setSuccess(isGithub ? `Cloned and added: ${registeredPath}` : 'Project added successfully');
|
|
8866
8869
|
|
|
8867
8870
|
if (onboardingTier === 'standard' || onboardingTier === 'full') {
|
|
@@ -9012,16 +9015,19 @@ function ProjectsPage({ selectedProject, onProjectChange }) {
|
|
|
9012
9015
|
<div class="form-group" style="flex:1;margin-bottom:0;">
|
|
9013
9016
|
<input class="form-input" placeholder="/home/ubuntu/repos/your-project"
|
|
9014
9017
|
value=${newPath}
|
|
9015
|
-
onInput=${e => setNewPath(e.target.value)} />
|
|
9018
|
+
onInput=${e => { setNewPath(e.target.value); setError(null); }} />
|
|
9016
9019
|
</div>
|
|
9017
9020
|
<button class="btn btn-secondary" style="padding:0 10px;" onClick=${() => setShowPicker(true)} title="Browse filesystem">π</button>
|
|
9018
9021
|
<button class="btn btn-primary" onClick=${addProject} disabled=${adding}>${adding ? 'Addingβ¦' : 'Add'}</button>
|
|
9019
9022
|
</div>
|
|
9023
|
+
<p style="font-size:12px;color:var(--text-secondary);margin:6px 0 0;" data-testid="local-path-hint">
|
|
9024
|
+
This is a <strong>container/server path</strong> β it must exist on the BeastMode server, not on your local machine (valid roots: <code>$HOME</code>, <code>PROJECT_DIR</code>, <code>BEASTMODE_CLONE_DIR</code>). Use π Browse to pick a valid directory, or switch to the GitHub URL tab to clone a repo.
|
|
9025
|
+
</p>
|
|
9020
9026
|
` : html`
|
|
9021
9027
|
<div class="form-group" style="margin-bottom:8px;">
|
|
9022
9028
|
<input class="form-input" placeholder="https://github.com/owner/repo (or git@github.com:owner/repo.git)"
|
|
9023
9029
|
value=${githubUrl}
|
|
9024
|
-
onInput=${e => setGithubUrl(e.target.value)} />
|
|
9030
|
+
onInput=${e => { setGithubUrl(e.target.value); setError(null); }} />
|
|
9025
9031
|
</div>
|
|
9026
9032
|
<div class="inline-form" style="margin-bottom:0;">
|
|
9027
9033
|
<div class="form-group" style="flex:1;margin-bottom:0;">
|
|
@@ -9048,7 +9054,8 @@ function ProjectsPage({ selectedProject, onProjectChange }) {
|
|
|
9048
9054
|
title="No projects yet"
|
|
9049
9055
|
description="Add a project path to start building." />`
|
|
9050
9056
|
: projects.map(proj => html`
|
|
9051
|
-
<div class="ext-item" key=${proj.name} style="flex-wrap:wrap;"
|
|
9057
|
+
<div class="ext-item" key=${proj.name} style="flex-wrap:wrap;${proj.name === highlightName ? 'border-left:3px solid var(--success);background:var(--bg-secondary);' : ''}"
|
|
9058
|
+
data-testid=${proj.name === highlightName ? 'project-card-highlighted' : 'project-card'}>
|
|
9052
9059
|
<div class="ext-info">
|
|
9053
9060
|
<div class="ext-name">${proj.name}</div>
|
|
9054
9061
|
<div class="ext-meta">
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
3c8106fc2b0c7b86e599c6e05f415b27b3707354
|
package/dist/web/build-stamp.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
20260604-
|
|
1
|
+
20260604-233126-3c8106f
|