@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.
Files changed (35) hide show
  1. package/bin/af.js +0 -0
  2. package/bin/codev.js +0 -0
  3. package/bin/consult.js +0 -0
  4. package/bin/generate-image.js +0 -0
  5. package/dist/agent-farm/servers/dashboard-server.js +487 -5
  6. package/dist/agent-farm/servers/dashboard-server.js.map +1 -1
  7. package/dist/commands/adopt.d.ts.map +1 -1
  8. package/dist/commands/adopt.js +10 -0
  9. package/dist/commands/adopt.js.map +1 -1
  10. package/dist/commands/init.d.ts.map +1 -1
  11. package/dist/commands/init.js +8 -0
  12. package/dist/commands/init.js.map +1 -1
  13. package/package.json +1 -1
  14. package/skeleton/templates/projectlist-archive.md +21 -0
  15. package/skeleton/templates/projectlist.md +17 -0
  16. package/templates/dashboard/css/activity.css +151 -0
  17. package/templates/dashboard/css/dialogs.css +149 -0
  18. package/templates/dashboard/css/files.css +530 -0
  19. package/templates/dashboard/css/layout.css +124 -0
  20. package/templates/dashboard/css/projects.css +501 -0
  21. package/templates/dashboard/css/statusbar.css +23 -0
  22. package/templates/dashboard/css/tabs.css +314 -0
  23. package/templates/dashboard/css/utilities.css +50 -0
  24. package/templates/dashboard/css/variables.css +45 -0
  25. package/templates/dashboard/index.html +158 -0
  26. package/templates/dashboard/js/activity.js +238 -0
  27. package/templates/dashboard/js/dialogs.js +328 -0
  28. package/templates/dashboard/js/files.js +436 -0
  29. package/templates/dashboard/js/main.js +487 -0
  30. package/templates/dashboard/js/projects.js +544 -0
  31. package/templates/dashboard/js/state.js +91 -0
  32. package/templates/dashboard/js/tabs.js +500 -0
  33. package/templates/dashboard/js/utils.js +57 -0
  34. package/templates/dashboard-split.html +1186 -171
  35. package/templates/open.html +7 -2
@@ -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
- min-height: 100vh;
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
  }