anentrypoint-design 0.0.87 → 0.0.89

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/dist/247420.css CHANGED
@@ -2800,14 +2800,32 @@
2800
2800
  /* freddie voice page */
2801
2801
  .ds-247420 .fd-voice-controls { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; padding: 4px 0 10px; }
2802
2802
  .ds-247420 .fd-voice-partial { font-style: italic; color: var(--panel-text-2); font-family: var(--ff-mono); font-size: 12.5px; }
2803
- .ds-247420 .fd-voice-log { display: flex; flex-direction: column; gap: 4px; max-height: 320px; overflow-y: auto; padding: 8px; background: var(--panel-2); border-radius: 10px; }
2804
- .ds-247420 .fd-voice-line { display: grid; grid-template-columns: 80px 1fr; gap: 12px; padding: 4px 8px; border-radius: 6px; }
2805
- .ds-247420 .fd-voice-line:nth-child(even) { background: var(--panel-3); }
2806
- .ds-247420 .fd-voice-ts { font-family: var(--ff-mono); font-size: 11px; color: var(--panel-text-3); }
2807
- .ds-247420 .fd-voice-text { line-height: 1.5; }
2808
2803
  .ds-247420 .fd-voice-tts { display: flex; flex-direction: column; gap: 8px; }
2809
2804
  .ds-247420 .fd-voice-tts textarea { padding: 8px 10px; font-family: var(--ff-ui); font-size: 13.5px; background: var(--panel-2); color: var(--panel-text); border: 0; border-radius: 10px; resize: vertical; }
2810
2805
  .ds-247420 .fd-voice-tts textarea:focus { outline: 2px solid var(--mascot, #F07AA8); outline-offset: 1px; }
2811
2806
 
2812
2807
  /* freddie page-error pre — replaces the inline style from app.js */
2813
2808
  .ds-247420 .fd-page-error { max-height: 200px; overflow-y: auto; }
2809
+
2810
+ /* freddie unified list primitive — used by sessions, agents/recent, analytics, cron, skills, models */
2811
+ .ds-247420 .fd-list { display: flex; flex-direction: column; gap: 2px; }
2812
+ .ds-247420 .fd-list-row { display: grid; grid-template-columns: 56px minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 10px 14px; border-radius: 10px; background: var(--panel-1); cursor: default; box-shadow: inset 4px 0 0 transparent; transition: background 80ms ease, box-shadow 80ms ease; }
2813
+ .ds-247420 .fd-list-row:nth-child(even) { background: var(--panel-2); }
2814
+ .ds-247420 .fd-list-row[role="button"] { cursor: pointer; }
2815
+ .ds-247420 .fd-list-row[role="button"]:hover { background: var(--panel-hover); }
2816
+ .ds-247420 .fd-list-row[role="button"]:focus { outline: 2px solid var(--panel-accent); outline-offset: 2px; }
2817
+ .ds-247420 .fd-list-row[data-cat="kit"] { box-shadow: inset 4px 0 0 var(--green); }
2818
+ .ds-247420 .fd-list-row[data-cat="deck"] { box-shadow: inset 4px 0 0 var(--sun); }
2819
+ .ds-247420 .fd-list-row[data-cat="preview"] { box-shadow: inset 4px 0 0 var(--purple); }
2820
+ .ds-247420 .fd-list-row[data-cat="doc"] { box-shadow: inset 4px 0 0 var(--mascot); }
2821
+ .ds-247420 .fd-list-row[data-cat="external"] { box-shadow: inset 4px 0 0 var(--sky); }
2822
+ .ds-247420 .fd-list-code { font-family: var(--ff-mono); font-size: 11.5px; color: var(--panel-text-3); letter-spacing: 0.02em; text-align: right; }
2823
+ .ds-247420 .fd-list-main { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
2824
+ .ds-247420 .fd-list-title { font-size: 14px; line-height: 1.35; color: var(--panel-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
2825
+ .ds-247420 .fd-list-title.fd-mono { font-family: var(--ff-mono); font-size: 12.5px; }
2826
+ .ds-247420 .fd-list-sub { font-size: 12px; color: var(--panel-text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
2827
+ .ds-247420 .fd-list-meta { display: inline-flex; gap: 10px; align-items: center; flex-shrink: 0; }
2828
+ .ds-247420 .fd-list-meta-mono { font-family: var(--ff-mono); font-size: 11.5px; color: var(--panel-text-3); white-space: nowrap; }
2829
+ .ds-247420 .fd-list-meta-rel { font-size: 11.5px; color: var(--panel-text-2); white-space: nowrap; }
2830
+ .ds-247420 .fd-list-compact .fd-list-row { padding: 6px 12px; }
2831
+ .ds-247420 .fd-list-compact .fd-list-title { font-size: 13px; }