@wenathlan/extension 1.1.64 → 1.1.66

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 (63) hide show
  1. package/README.md +5 -3
  2. package/dist/attentionfeed.d.ts +74 -0
  3. package/dist/attentionfeed.d.ts.map +1 -0
  4. package/dist/backgroundruns.d.ts +71 -0
  5. package/dist/backgroundruns.d.ts.map +1 -0
  6. package/dist/datagrid.d.ts +46 -0
  7. package/dist/datagrid.d.ts.map +1 -0
  8. package/dist/evidenceviews.d.ts +45 -0
  9. package/dist/evidenceviews.d.ts.map +1 -0
  10. package/dist/flowlibrary.d.ts +147 -0
  11. package/dist/flowlibrary.d.ts.map +1 -0
  12. package/dist/index.d.ts +15 -1
  13. package/dist/index.d.ts.map +1 -1
  14. package/dist/index.js +1437 -3
  15. package/dist/index.js.map +4 -4
  16. package/dist/memory.d.ts +104 -1
  17. package/dist/memory.d.ts.map +1 -1
  18. package/dist/outputcompare.d.ts +68 -0
  19. package/dist/outputcompare.d.ts.map +1 -0
  20. package/dist/pickerviews.d.ts +72 -0
  21. package/dist/pickerviews.d.ts.map +1 -0
  22. package/dist/policy.d.ts +122 -1
  23. package/dist/policy.d.ts.map +1 -1
  24. package/dist/portability.d.ts +35 -0
  25. package/dist/portability.d.ts.map +1 -0
  26. package/dist/protocol.d.ts +281 -1
  27. package/dist/protocol.d.ts.map +1 -1
  28. package/dist/quickactions.d.ts +46 -0
  29. package/dist/quickactions.d.ts.map +1 -0
  30. package/dist/runreplay.d.ts +53 -0
  31. package/dist/runreplay.d.ts.map +1 -0
  32. package/dist/siteprefs.d.ts +45 -0
  33. package/dist/siteprefs.d.ts.map +1 -0
  34. package/dist/statusviews.d.ts +65 -0
  35. package/dist/statusviews.d.ts.map +1 -0
  36. package/dist/surfaces.d.ts +2 -2
  37. package/dist/surfaces.d.ts.map +1 -1
  38. package/dist/syncbridge.d.ts +80 -0
  39. package/dist/syncbridge.d.ts.map +1 -0
  40. package/dist/tourviews.d.ts +28 -0
  41. package/dist/tourviews.d.ts.map +1 -0
  42. package/dist/types.d.ts +444 -5
  43. package/dist/types.d.ts.map +1 -1
  44. package/dist/version.d.ts +1 -1
  45. package/extension/dist/background.js +1841 -5
  46. package/extension/dist/background.js.map +4 -4
  47. package/extension/dist/dashboardpage.html +3 -0
  48. package/extension/dist/dashboardpage.js +108 -0
  49. package/extension/dist/dashboardpage.js.map +2 -2
  50. package/extension/dist/manifest.json +1 -1
  51. package/extension/dist/optionspage.html +5 -0
  52. package/extension/dist/optionspage.js +222 -0
  53. package/extension/dist/optionspage.js.map +2 -2
  54. package/extension/dist/pagebridge.js.map +1 -1
  55. package/extension/dist/popup.html +2 -2
  56. package/extension/dist/popup.js +102 -0
  57. package/extension/dist/popup.js.map +2 -2
  58. package/extension/dist/sidepanel.html +2 -2
  59. package/extension/dist/sidepanel.js +219 -3
  60. package/extension/dist/sidepanel.js.map +2 -2
  61. package/extension/dist/style.css +3 -1
  62. package/extension/manifest.json +1 -1
  63. package/package.json +1 -1
@@ -1,6 +1,8 @@
1
+ /* Darklight theme tokens of the 1.1.65 family: the surfaces write --theme-* custom properties from the resolved darklight tokens while every rule keeps the shipped fallback, so a surface without tokens renders exactly as before and a themed surface renders dark or light from the same rules. */
2
+ :root { --theme-surface: #090d16; --theme-elevated: #11192a; --theme-border: #26334b; --theme-text: #eff6ff; --theme-muted: #9aa8bd; --theme-accent: #74e8c1; --theme-error: #ff7b8e; --theme-success: #9ae6b4; --theme-warning: #ffd166; }
1
3
  :root { color-scheme: dark; --base: #090d16; --panel: #11192a; --line: #26334b; --text: #eff6ff; --muted: #9aa8bd; --accent: #74e8c1; --danger: #ff7b8e; font-family: Inter, ui-sans-serif, system-ui, sans-serif; }
2
4
  * { box-sizing: border-box; }
3
- body { margin: 0; background: radial-gradient(circle at top right, #193b4c 0, transparent 35%), var(--base); color: var(--text); min-width: 360px; }
5
+ body { margin: 0; background: radial-gradient(circle at top right, #193b4c 0, transparent 35%), var(--theme-surface, var(--base)); color: var(--theme-text, var(--text)); min-width: 360px; }
4
6
  main { padding: 20px; max-width: 460px; margin: auto; } main.wide { max-width: 680px; }
5
7
  header { border-bottom: 1px solid var(--line); margin-bottom: 18px; } h1 { margin: 3px 0 8px; font-size: 25px; letter-spacing: -0.04em; } h2 { font-size: 15px; margin: 0 0 10px; } p { color: var(--muted); line-height: 1.5; } .eyebrow { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: 0.14em; margin: 0; }
6
8
  label { display: block; font-size: 12px; color: var(--muted); margin: 14px 0 6px; } input, textarea { width: 100%; color: var(--text); background: #0c1321; border: 1px solid var(--line); border-radius: 10px; padding: 11px; font: inherit; } textarea { resize: vertical; }
@@ -2,7 +2,7 @@
2
2
  "manifest_version": 3,
3
3
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnOEjO8Z0PDgQyfvawGcaO2j+o0GLCFTLNj7TkYC/Avo9l2NenMRq7gp90Nfd7E9MViv/OMcCKSYZ5unv12QPRtv31C+a5UQWDFAOP/cH5mwMd6hsayElrSoW8ta+FwFqmr9dIFkn7cQEU3YhZr4Gcbs+ycUHOxVgDA4NBKB0rQ6e9VW5LvTw0isRYUrqM+M72vKxHk9zUIYYn/LGPvottKBYi2GLr0PHSeC2UE+Shmq7vcFIXj6hDjvD4kLJ5sKoUllEcZ1TPuBcnHUQ9ndKA5iktXDQOIJCUJmi7a0YJ2PGg7fvpYfT9k0ai/qZ+pIoRfoOEwE01bPoDn7NjeYnNQIDAQAB",
4
4
  "name": "Devthink",
5
- "version": "1.1.64",
5
+ "version": "1.1.66",
6
6
  "description": "A consent-first bridge for reviewed browser-agent tasks.",
7
7
  "permissions": [
8
8
  "activeTab",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wenathlan/extension",
3
- "version": "1.1.64",
3
+ "version": "1.1.66",
4
4
  "description": "Consent-first browser agent bridge and Manifest V3 extension.",
5
5
  "type": "module",
6
6
  "license": "GPL-3.0-only",