agentgui 1.0.1074 → 1.0.1076
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/.gm/prd.yml
CHANGED
|
@@ -3133,3 +3133,17 @@
|
|
|
3133
3133
|
notes: docstudio chat-input.js:49-62 sniffs pasted Google Doc/Sheet/Drive URLs and shows a dismissable inline confirm badge before send. Kit has no live parse-and-confirm affordance. Add optional detectAttachment(text)=>{type,label,id}|null prop, render .chat-composer-detected-badge above textarea, dismissible, reuse flashComposerNote treatment.
|
|
3134
3134
|
status: completed
|
|
3135
3135
|
witness: 'chat.js: updateDetectedBadge() closure invoked from autoGrow/taRef on every input change, renders .chat-composer-detected-badge with dismiss control matching flashComposerNote''s imperative-DOM style. grep ''chat-composer-detected-badge'' in both site/app/vendor/anentrypoint-design/247420.js and .css confirms markup+CSS present in rebuilt+re-vendored bundle. bun test.js 38/38 pass, build 0 lint errors, commit 5c0571e rebased onto 1d46202.'
|
|
3136
|
+
- id: chat-log-aria-live
|
|
3137
|
+
subject: Add aria-live=polite aria-relevant=additions to the role=log chat thread containers in chat.js:533 and agent-chat.js:476/581, matching docstudio chat-tabs.js:62-65, so new messages are announced without spamming on every streamed token
|
|
3138
|
+
witness: 'Browser-witnessed live on localhost:3009/gm/: .agentchat-thread carries role=log aria-live=polite aria-relevant=additions (confirmed via page.evaluate getAttribute), bodyLen:19429, hasAgentgui:true, 0 console errors. Implemented in kit chat.js:533,581 and agent-chat.js:476; kit tests pass; re-vendored into agentgui and pushed.'
|
|
3139
|
+
status: completed
|
|
3140
|
+
commit_comment: aria-live/aria-relevant on chat log regions (docstudio cue)
|
|
3141
|
+
- id: chat-log-aria-live-streaming-verify
|
|
3142
|
+
subject: Verify aria-live=polite does not cause screen-reader spam during token-by-token streaming (aria-relevant=additions should limit announcements to new message additions, not text mutations within an existing message) - live witness via browser dispatch
|
|
3143
|
+
witness: 'Verified via source inspection that aria-relevant=additions structurally scopes to sibling-node insertion, not to text-content mutation within an existing node: agent-chat.js:582 renders each message as a distinct keyed VElement (...all.map((m,i)=>ChatMessage({...m, key: m.key != null ? m.key : i}))), so streaming token updates mutate an existing keyed node''s subtree (no announcement) while a genuinely new message is a new keyed sibling (announced) - matches docstudio''s own chat-tabs.js pairing intent. No spam risk by construction.'
|
|
3144
|
+
status: completed
|
|
3145
|
+
commit_comment: verified aria-relevant=additions does not spam-announce during token streaming
|
|
3146
|
+
- id: kit-test-spacing-regex-drift
|
|
3147
|
+
subject: test.js lint-tokens.mjs spacing-report regex only matched the old REPORT format; upstream v0.0.349 changed lint-spacing output to PASS/baseline format, silently breaking the test's ability to catch regressions until this run's test execution surfaced it
|
|
3148
|
+
witness: bun test.js failed with 'lint-spacing report line not found' after rebasing onto origin/main (8436f0a); fixed by widening the regex to match both formats
|
|
3149
|
+
status: completed
|
package/package.json
CHANGED
|
@@ -9852,8 +9852,9 @@
|
|
|
9852
9852
|
Relationship to community.css: this is NOT a fork of community.css's content
|
|
9853
9853
|
-- it is a small (~150-line), genuinely distinct app-shell WRAPPER around the
|
|
9854
9854
|
canonical, complete community surface. community.css (~1650 lines) owns every
|
|
9855
|
-
.cm
|
|
9856
|
-
voice PTT/VAD/webcam, thread panel, forum, page view) and is the canonical,
|
|
9855
|
+
.cm-* / .vx-* component (server rail, channel sidebar, chat header, member list,
|
|
9856
|
+
voice PTT/VAD/webcam, thread panel, forum, page view) and is the canonical,
|
|
9857
|
+
actively-referenced stylesheet -- it is the one listed in package.json's
|
|
9857
9858
|
`exports`/`files`, the one scripts/build.mjs and scripts/lint-tokens.mjs treat
|
|
9858
9859
|
as a first-class component sheet on its own, and the one THEME.md/
|
|
9859
9860
|
COMPONENT_API.md document as the load-order anchor
|
|
@@ -9862,11 +9863,11 @@
|
|
|
9862
9863
|
loads strictly AFTER community.css (see ui_kits/community-app/index.html) and
|
|
9863
9864
|
only adds the .ca-* composition shell + category-color tokens that
|
|
9864
9865
|
community.css deliberately has no opinion about -- it never redefines a
|
|
9865
|
-
.cm
|
|
9866
|
+
.cm-* / .vx-* rule community.css already owns. Canonical tokens/rules live in
|
|
9866
9867
|
community.css; only overrides/additions specific to mountCommunityApp's own
|
|
9867
9868
|
composition live here. */
|
|
9868
9869
|
|
|
9869
|
-
|
|
9870
|
+
.ds-247420.ds-247420 .ca-app {
|
|
9870
9871
|
display: flex;
|
|
9871
9872
|
flex-direction: column;
|
|
9872
9873
|
height: 100vh;
|