shell-mirror 1.5.116 → 1.5.117
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/package.json +1 -1
- package/public/app/dashboard.css +18 -0
- package/public/app/dashboard.js +3 -0
package/package.json
CHANGED
package/public/app/dashboard.css
CHANGED
|
@@ -1034,3 +1034,21 @@ body {
|
|
|
1034
1034
|
.connection-status.connected { color: var(--success); }
|
|
1035
1035
|
.connection-status.disconnected { color: var(--warning); }
|
|
1036
1036
|
.connection-status.error { color: var(--danger); }
|
|
1037
|
+
|
|
1038
|
+
/* Usage Instructions - muted helper text */
|
|
1039
|
+
.usage-instructions {
|
|
1040
|
+
margin-top: 24px;
|
|
1041
|
+
text-align: center;
|
|
1042
|
+
color: var(--text-muted);
|
|
1043
|
+
font-size: 0.8rem;
|
|
1044
|
+
line-height: 1.6;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
.usage-instructions code {
|
|
1048
|
+
background: var(--bg-tertiary);
|
|
1049
|
+
padding: 2px 6px;
|
|
1050
|
+
border-radius: 4px;
|
|
1051
|
+
font-family: 'Monaco', 'Menlo', monospace;
|
|
1052
|
+
font-size: 0.75rem;
|
|
1053
|
+
color: var(--text-secondary);
|
|
1054
|
+
}
|
package/public/app/dashboard.js
CHANGED
|
@@ -672,6 +672,9 @@ class ShellMirrorDashboard {
|
|
|
672
672
|
${agentCount > 0 ? agentsHtml : this.renderEmptyAgentState()}
|
|
673
673
|
</div>
|
|
674
674
|
</div>
|
|
675
|
+
<div class="usage-instructions">
|
|
676
|
+
<p>New here? Install with <code>npm install -g shell-mirror</code> then run <code>shell-mirror</code></p>
|
|
677
|
+
</div>
|
|
675
678
|
`;
|
|
676
679
|
}
|
|
677
680
|
|