anentrypoint-design 0.0.411 → 0.0.413
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 +18 -0
- package/dist/247420.js +22 -22
- package/package.json +1 -1
- package/src/components/freddie/pages-missing.js +159 -0
- package/src/components/freddie.js +4 -0
package/dist/247420.css
CHANGED
|
@@ -12290,6 +12290,24 @@
|
|
|
12290
12290
|
.ds-247420 .cm-server-rail, .ds-247420 .cm-channel-sidebar, .ds-247420 .cm-member-list, .ds-247420 .cm-mobile-header, .ds-247420 .cm-voice-strip { display: none !important; }
|
|
12291
12291
|
.ds-247420 .cm-main, .ds-247420 .cm-channel-list { overflow: visible; height: auto; }
|
|
12292
12292
|
}
|
|
12293
|
+
/* Freddie dashboard surface utilities — freddie src/web/index.html inline
|
|
12294
|
+
styles migrated here so NO design content lives in the consumer app. */
|
|
12295
|
+
/* Cap raw-JSON/code dumps so unbounded payloads scroll instead of blowing
|
|
12296
|
+
the page layout. */
|
|
12297
|
+
.ds-247420 .fd-pre { max-height: 60vh; overflow: auto; }
|
|
12298
|
+
/* Topbar leaf layout (sampler pill + theme toggle). */
|
|
12299
|
+
.ds-247420 .fd-topbar-leaf { display: inline-flex; gap: var(--space-2, 8px); align-items: center; }
|
|
12300
|
+
/* Ctrl+K search hint in the topbar. */
|
|
12301
|
+
.ds-247420 .fd-search-hint {
|
|
12302
|
+
font-size: var(--fs-pico, 11px); opacity: 0.5;
|
|
12303
|
+
padding: var(--space-1, 4px) var(--space-2, 8px);
|
|
12304
|
+
border: 1px solid var(--rule, currentColor); border-radius: var(--r-0, 4px);
|
|
12305
|
+
pointer-events: none;
|
|
12306
|
+
}
|
|
12307
|
+
/* Status bar items — inline flex with gap. */
|
|
12308
|
+
.ds-247420 .fd-status-item { display: inline-flex; align-items: center; gap: var(--space-1, 4px); }
|
|
12309
|
+
/* Page error display — scrollable pre block for stack traces. */
|
|
12310
|
+
.ds-247420 .fd-page-error { max-height: 60vh; overflow: auto; white-space: pre-wrap; word-break: break-all; }
|
|
12293
12311
|
|
|
12294
12312
|
/* gm-prose.css */
|
|
12295
12313
|
/* ============================================================
|