agentgui 1.0.111 → 1.0.113

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/.prd CHANGED
@@ -1,3 +1,18 @@
1
+ # CSS WIDTH FIX - COMPLETED ✅
2
+
3
+ ## Completed Work
4
+ - [x] Fixed conversation area to use full width (100%)
5
+ - [x] Removed max-width constraint
6
+ - [x] Removed centering alignment
7
+ - [x] Simplified padding to consistent values
8
+ - [x] Tested in browser - full width confirmed
9
+ - [x] Committed and pushed to remote
10
+
11
+ ## Files Modified
12
+ - static/index.html (lines 317-327)
13
+
14
+ ---
15
+
1
16
  EXHAUSTIVE CORNER CASE TESTING - 2026-02-06
2
17
 
3
18
  WAVE 1: SESSION MANAGEMENT CORNER CASES (Independent - can parallel)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.111",
3
+ "version": "1.0.113",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
package/static/index.html CHANGED
@@ -363,15 +363,13 @@
363
363
  }
364
364
 
365
365
  .messages-wrapper {
366
- max-width: var(--msg-max-width);
367
- margin: 0 auto;
366
+ max-width: 100%;
367
+ margin: 0;
368
368
  width: 100%;
369
369
  padding: 1.5rem 2rem;
370
370
  display: flex;
371
371
  flex-direction: column;
372
372
  min-height: 100%;
373
- padding-left: calc(max(2rem, (100vw - 900px) / 2));
374
- padding-right: calc(max(2rem, (100vw - 900px) / 2));
375
373
  }
376
374
 
377
375
  #output {