anentrypoint-design 0.0.340 → 0.0.342

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/chat.css CHANGED
@@ -826,6 +826,20 @@ button.chat-composer-context:focus-visible { outline: var(--focus-w) solid var(-
826
826
  background: var(--bg-2); color: var(--fg-2); font-size: var(--fs-tiny);
827
827
  }
828
828
  .chat-msg-notice.is-incomplete { border-style: dashed; }
829
+ /* Error is the one genuine failure state among these notices — reserving
830
+ the destructive tone for it (unlike stopped/incomplete, which are neutral
831
+ "not a finished answer" states, not failures). */
832
+ .chat-msg-notice.is-error {
833
+ border-color: var(--danger); color: var(--danger-ink, var(--danger));
834
+ display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap;
835
+ }
836
+ .chat-msg-retry-btn {
837
+ border: var(--bw-hair) solid var(--danger); border-radius: var(--r-1);
838
+ background: transparent; color: var(--danger-ink, var(--danger));
839
+ font: inherit; font-size: var(--fs-tiny); padding: 2px 10px; cursor: pointer;
840
+ }
841
+ .chat-msg-retry-btn:hover { background: var(--danger); color: var(--bg); }
842
+ .chat-msg-retry-btn:focus-visible { outline: var(--focus-w) solid var(--focus-color); outline-offset: var(--focus-offset); }
829
843
 
830
844
  /* Tail-window streaming head ('streaming · N KB so far'). */
831
845
  .chat-stream-head {
package/dist/247420.css CHANGED
@@ -5410,6 +5410,19 @@
5410
5410
  .ds-247420 .ds-chat-detail { display: block; position: sticky; top: 0; }
5411
5411
  }
5412
5412
 
5413
+ /* Avatar — generic identity disc primitive (content.js Avatar). Sized
5414
+ variants mirror the existing chat-avatar/community-avatar footprints so
5415
+ any consumer gets a consistent disc without duplicating the CSS. */
5416
+ .ds-247420 .ds-avatar {
5417
+ display: inline-flex; align-items: center; justify-content: center;
5418
+ border-radius: 50%; background: var(--bg-3); color: var(--fg);
5419
+ font-family: var(--ff-mono); font-weight: 600; text-transform: lowercase;
5420
+ letter-spacing: 0.02em; user-select: none; flex-shrink: 0; object-fit: cover;
5421
+ }
5422
+ .ds-247420 .ds-avatar-sm { width: 24px; height: 24px; font-size: 10px; }
5423
+ .ds-247420 .ds-avatar-md { width: 36px; height: 36px; font-size: 12px; }
5424
+ .ds-247420 .ds-avatar-lg { width: 48px; height: 48px; font-size: 15px; }
5425
+
5413
5426
  /* community.css */
5414
5427
  /* ============================================================
5415
5428
  247420 design system — community surface (Discord-style chat)
@@ -7886,6 +7899,20 @@
7886
7899
  background: var(--bg-2); color: var(--fg-2); font-size: var(--fs-tiny);
7887
7900
  }
7888
7901
  .ds-247420 .chat-msg-notice.is-incomplete { border-style: dashed; }
7902
+ /* Error is the one genuine failure state among these notices — reserving
7903
+ the destructive tone for it (unlike stopped/incomplete, which are neutral
7904
+ "not a finished answer" states, not failures). */
7905
+ .ds-247420 .chat-msg-notice.is-error {
7906
+ border-color: var(--danger); color: var(--danger-ink, var(--danger));
7907
+ display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap;
7908
+ }
7909
+ .ds-247420 .chat-msg-retry-btn {
7910
+ border: var(--bw-hair) solid var(--danger); border-radius: var(--r-1);
7911
+ background: transparent; color: var(--danger-ink, var(--danger));
7912
+ font: inherit; font-size: var(--fs-tiny); padding: 2px 10px; cursor: pointer;
7913
+ }
7914
+ .ds-247420 .chat-msg-retry-btn:hover { background: var(--danger); color: var(--bg); }
7915
+ .ds-247420 .chat-msg-retry-btn:focus-visible { outline: var(--focus-w) solid var(--focus-color); outline-offset: var(--focus-offset); }
7889
7916
 
7890
7917
  /* Tail-window streaming head ('streaming · N KB so far'). */
7891
7918
  .ds-247420 .chat-stream-head {