agentgui 1.0.871 → 1.0.872
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/CHANGELOG.md +9 -0
- package/package.json +1 -1
- package/static/css/main.css +34 -1
- package/static/index.html +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [Unreleased] - GUI a11y pass
|
|
2
|
+
|
|
3
|
+
- index.html: remove `maximum-scale=1.0` and `user-scalable=no` from viewport (WCAG 1.4.4 — low-vision users need pinch-zoom)
|
|
4
|
+
- index.html: add `theme-color` meta with light/dark media queries (native tab/chrome tinting on mobile)
|
|
5
|
+
- index.html: add skip-to-conversation link as first body child for keyboard users
|
|
6
|
+
- main.css: add `:focus-visible` outline for keyboard nav (previously no default visible focus ring)
|
|
7
|
+
- main.css: add `@media (prefers-reduced-motion: reduce)` to collapse animations/transitions for users with vestibular disorders or motion-sensitivity OS setting
|
|
8
|
+
- main.css: `.skip-link` styles (off-screen until focused)
|
|
9
|
+
|
|
1
10
|
## [Unreleased] - GUI observability + workflow-plugin fix
|
|
2
11
|
|
|
3
12
|
- Fix regression from prior commit: workflow-plugin.js declared `dependencies: ['git','database']` but git plugin was deleted; plugin init failed with "Plugin git not found in registry". Removed unused git dep and stale binding.
|
package/package.json
CHANGED
package/static/css/main.css
CHANGED
|
@@ -3248,4 +3248,37 @@
|
|
|
3248
3248
|
color: var(--color-text);
|
|
3249
3249
|
max-width: 120px;
|
|
3250
3250
|
}
|
|
3251
|
-
|
|
3251
|
+
|
|
3252
|
+
|
|
3253
|
+
.skip-link {
|
|
3254
|
+
position: absolute;
|
|
3255
|
+
top: -40px;
|
|
3256
|
+
left: 0;
|
|
3257
|
+
background: var(--color-primary, #3b82f6);
|
|
3258
|
+
color: #fff;
|
|
3259
|
+
padding: 8px 16px;
|
|
3260
|
+
z-index: 10000;
|
|
3261
|
+
text-decoration: none;
|
|
3262
|
+
border-radius: 0 0 4px 0;
|
|
3263
|
+
font-weight: 600;
|
|
3264
|
+
}
|
|
3265
|
+
.skip-link:focus {
|
|
3266
|
+
top: 0;
|
|
3267
|
+
}
|
|
3268
|
+
|
|
3269
|
+
:focus-visible {
|
|
3270
|
+
outline: 2px solid var(--color-primary, #3b82f6);
|
|
3271
|
+
outline-offset: 2px;
|
|
3272
|
+
border-radius: 2px;
|
|
3273
|
+
}
|
|
3274
|
+
|
|
3275
|
+
@media (prefers-reduced-motion: reduce) {
|
|
3276
|
+
*,
|
|
3277
|
+
*::before,
|
|
3278
|
+
*::after {
|
|
3279
|
+
animation-duration: 0.01ms !important;
|
|
3280
|
+
animation-iteration-count: 1 !important;
|
|
3281
|
+
transition-duration: 0.01ms !important;
|
|
3282
|
+
scroll-behavior: auto !important;
|
|
3283
|
+
}
|
|
3284
|
+
}
|
package/static/index.html
CHANGED
|
@@ -43,6 +43,8 @@
|
|
|
43
43
|
<link rel="stylesheet" href="/gm/css/tools-popup.css" media="print" onload="this.media='all'">
|
|
44
44
|
</head>
|
|
45
45
|
<body>
|
|
46
|
+
<a href="#app" class="skip-link">Skip to conversation</a>
|
|
47
|
+
|
|
46
48
|
<!-- Sidebar overlay (mobile) -->
|
|
47
49
|
<div class="sidebar-overlay" data-sidebar-overlay></div>
|
|
48
50
|
|