@cluesmith/codev 1.4.0 → 1.4.2
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/bin/af.js +0 -0
- package/bin/codev.js +0 -0
- package/bin/consult.js +0 -0
- package/bin/generate-image.js +0 -0
- package/dist/agent-farm/servers/dashboard-server.js +487 -5
- package/dist/agent-farm/servers/dashboard-server.js.map +1 -1
- package/dist/commands/adopt.d.ts.map +1 -1
- package/dist/commands/adopt.js +10 -0
- package/dist/commands/adopt.js.map +1 -1
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +8 -0
- package/dist/commands/init.js.map +1 -1
- package/package.json +1 -1
- package/skeleton/templates/projectlist-archive.md +21 -0
- package/skeleton/templates/projectlist.md +17 -0
- package/templates/dashboard/css/activity.css +151 -0
- package/templates/dashboard/css/dialogs.css +149 -0
- package/templates/dashboard/css/files.css +530 -0
- package/templates/dashboard/css/layout.css +124 -0
- package/templates/dashboard/css/projects.css +501 -0
- package/templates/dashboard/css/statusbar.css +23 -0
- package/templates/dashboard/css/tabs.css +314 -0
- package/templates/dashboard/css/utilities.css +50 -0
- package/templates/dashboard/css/variables.css +45 -0
- package/templates/dashboard/index.html +158 -0
- package/templates/dashboard/js/activity.js +238 -0
- package/templates/dashboard/js/dialogs.js +328 -0
- package/templates/dashboard/js/files.js +436 -0
- package/templates/dashboard/js/main.js +487 -0
- package/templates/dashboard/js/projects.js +544 -0
- package/templates/dashboard/js/state.js +91 -0
- package/templates/dashboard/js/tabs.js +500 -0
- package/templates/dashboard/js/utils.js +57 -0
- package/templates/dashboard-split.html +1186 -171
- package/templates/open.html +7 -2
package/templates/open.html
CHANGED
|
@@ -13,11 +13,14 @@
|
|
|
13
13
|
</script>
|
|
14
14
|
<style>
|
|
15
15
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
16
|
-
body {
|
|
16
|
+
html, body {
|
|
17
17
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
18
18
|
background: #1a1a1a;
|
|
19
19
|
color: #fff;
|
|
20
|
-
|
|
20
|
+
height: 100%;
|
|
21
|
+
}
|
|
22
|
+
body.preview-active {
|
|
23
|
+
overflow: hidden;
|
|
21
24
|
}
|
|
22
25
|
.header {
|
|
23
26
|
padding: 15px 20px;
|
|
@@ -785,12 +788,14 @@
|
|
|
785
788
|
renderPreview();
|
|
786
789
|
viewMode.style.display = 'none';
|
|
787
790
|
previewContainer.style.display = 'block';
|
|
791
|
+
document.body.classList.add('preview-active');
|
|
788
792
|
toggleIcon.textContent = '📝';
|
|
789
793
|
toggleText.textContent = 'Annotate';
|
|
790
794
|
} else {
|
|
791
795
|
// Switch back to annotated view
|
|
792
796
|
viewMode.style.display = 'grid';
|
|
793
797
|
previewContainer.style.display = 'none';
|
|
798
|
+
document.body.classList.remove('preview-active');
|
|
794
799
|
toggleIcon.textContent = '👁';
|
|
795
800
|
toggleText.textContent = 'Preview';
|
|
796
801
|
}
|