anentrypoint-design 0.0.256 → 0.0.258
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/app-shell.css +44 -0
- package/chat.css +6 -0
- package/dist/247420.css +50 -0
- package/dist/247420.js +15 -15
- package/package.json +1 -1
- package/src/components/content.js +37 -2
- package/src/components.js +1 -1
package/app-shell.css
CHANGED
|
@@ -972,6 +972,41 @@ table tr.clickable:focus-visible td { background: var(--bg-2); }
|
|
|
972
972
|
font-weight: 600; margin-top: 8px;
|
|
973
973
|
letter-spacing: var(--tr-caps); text-transform: uppercase;
|
|
974
974
|
}
|
|
975
|
+
.kpi-foot {
|
|
976
|
+
display: flex; align-items: center; justify-content: space-between;
|
|
977
|
+
margin-top: var(--space-2);
|
|
978
|
+
}
|
|
979
|
+
.kpi-delta {
|
|
980
|
+
display: inline-flex; align-items: center; gap: var(--space-hair);
|
|
981
|
+
font-size: var(--fs-xs); font-weight: 600;
|
|
982
|
+
}
|
|
983
|
+
.kpi-delta-up { color: var(--success); }
|
|
984
|
+
.kpi-delta-down { color: var(--danger); }
|
|
985
|
+
.ds-sparkline path { stroke: currentColor; }
|
|
986
|
+
.ds-sparkline-up { color: var(--success); }
|
|
987
|
+
.ds-sparkline-down { color: var(--danger); }
|
|
988
|
+
|
|
989
|
+
/* ============================================================
|
|
990
|
+
BarChart
|
|
991
|
+
============================================================ */
|
|
992
|
+
.ds-barchart { display: flex; flex-direction: column; gap: var(--space-2); }
|
|
993
|
+
.ds-barchart-row {
|
|
994
|
+
display: grid; grid-template-columns: minmax(90px, 25%) 1fr auto;
|
|
995
|
+
align-items: center; gap: var(--space-2);
|
|
996
|
+
}
|
|
997
|
+
.ds-barchart-label { font-size: var(--fs-sm); color: var(--fg-2); }
|
|
998
|
+
.ds-barchart-track {
|
|
999
|
+
height: var(--space-2); border-radius: var(--r-pill);
|
|
1000
|
+
background: var(--bg-3); overflow: hidden;
|
|
1001
|
+
}
|
|
1002
|
+
.ds-barchart-fill {
|
|
1003
|
+
height: 100%; width: var(--bar-pct, 0%);
|
|
1004
|
+
background: var(--accent); border-radius: var(--r-pill);
|
|
1005
|
+
}
|
|
1006
|
+
.ds-barchart-value {
|
|
1007
|
+
font-size: var(--fs-xs); font-weight: 600; color: var(--fg-3);
|
|
1008
|
+
font-variant-numeric: tabular-nums;
|
|
1009
|
+
}
|
|
975
1010
|
|
|
976
1011
|
/* ============================================================
|
|
977
1012
|
Empty state
|
|
@@ -1649,6 +1684,15 @@ table tr.clickable:focus-visible td { background: var(--bg-2); }
|
|
|
1649
1684
|
font-size: var(--fs-sm); color: var(--fg-3);
|
|
1650
1685
|
}
|
|
1651
1686
|
.ds-page-header-dense .ds-page-header-right { flex: 0 0 auto; margin-left: auto; }
|
|
1687
|
+
/* Below ~480px the single-line ellipsis truncates the majority of the lede
|
|
1688
|
+
text with no way to recover it (no title attr, no expand) - let the row
|
|
1689
|
+
wrap and the lede break onto its own line instead of clipping. */
|
|
1690
|
+
@media (max-width: 480px) {
|
|
1691
|
+
.ds-page-header-dense-row { flex-wrap: wrap; }
|
|
1692
|
+
.ds-page-header-dense-lede {
|
|
1693
|
+
flex-basis: 100%; overflow: visible; text-overflow: clip; white-space: normal;
|
|
1694
|
+
}
|
|
1695
|
+
}
|
|
1652
1696
|
.ds-file-toolbar-left,
|
|
1653
1697
|
.ds-file-toolbar-right {
|
|
1654
1698
|
display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap;
|
package/chat.css
CHANGED
|
@@ -534,6 +534,12 @@
|
|
|
534
534
|
font-family: var(--ff-mono); font-size: var(--fs-tiny);
|
|
535
535
|
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
|
|
536
536
|
}
|
|
537
|
+
/* Below ~480px a single nowrap line silently truncates most of the agent /
|
|
538
|
+
model / cwd context (no way to recover it - no title attr on the container,
|
|
539
|
+
only on individual bits). Let it wrap instead of clipping. */
|
|
540
|
+
@media (max-width: 480px) {
|
|
541
|
+
.chat-composer-context { white-space: normal; overflow: visible; text-overflow: clip; }
|
|
542
|
+
}
|
|
537
543
|
button.chat-composer-context { cursor: pointer; }
|
|
538
544
|
button.chat-composer-context:hover { color: var(--fg-2); }
|
|
539
545
|
button.chat-composer-context:focus-visible { outline: var(--focus-w) solid var(--focus-color); outline-offset: var(--focus-offset); }
|
package/dist/247420.css
CHANGED
|
@@ -1478,6 +1478,41 @@
|
|
|
1478
1478
|
font-weight: 600; margin-top: 8px;
|
|
1479
1479
|
letter-spacing: var(--tr-caps); text-transform: uppercase;
|
|
1480
1480
|
}
|
|
1481
|
+
.ds-247420 .kpi-foot {
|
|
1482
|
+
display: flex; align-items: center; justify-content: space-between;
|
|
1483
|
+
margin-top: var(--space-2);
|
|
1484
|
+
}
|
|
1485
|
+
.ds-247420 .kpi-delta {
|
|
1486
|
+
display: inline-flex; align-items: center; gap: var(--space-hair);
|
|
1487
|
+
font-size: var(--fs-xs); font-weight: 600;
|
|
1488
|
+
}
|
|
1489
|
+
.ds-247420 .kpi-delta-up { color: var(--success); }
|
|
1490
|
+
.ds-247420 .kpi-delta-down { color: var(--danger); }
|
|
1491
|
+
.ds-247420 .ds-sparkline path { stroke: currentColor; }
|
|
1492
|
+
.ds-247420 .ds-sparkline-up { color: var(--success); }
|
|
1493
|
+
.ds-247420 .ds-sparkline-down { color: var(--danger); }
|
|
1494
|
+
|
|
1495
|
+
/* ============================================================
|
|
1496
|
+
BarChart
|
|
1497
|
+
============================================================ */
|
|
1498
|
+
.ds-247420 .ds-barchart { display: flex; flex-direction: column; gap: var(--space-2); }
|
|
1499
|
+
.ds-247420 .ds-barchart-row {
|
|
1500
|
+
display: grid; grid-template-columns: minmax(90px, 25%) 1fr auto;
|
|
1501
|
+
align-items: center; gap: var(--space-2);
|
|
1502
|
+
}
|
|
1503
|
+
.ds-247420 .ds-barchart-label { font-size: var(--fs-sm); color: var(--fg-2); }
|
|
1504
|
+
.ds-247420 .ds-barchart-track {
|
|
1505
|
+
height: var(--space-2); border-radius: var(--r-pill);
|
|
1506
|
+
background: var(--bg-3); overflow: hidden;
|
|
1507
|
+
}
|
|
1508
|
+
.ds-247420 .ds-barchart-fill {
|
|
1509
|
+
height: 100%; width: var(--bar-pct, 0%);
|
|
1510
|
+
background: var(--accent); border-radius: var(--r-pill);
|
|
1511
|
+
}
|
|
1512
|
+
.ds-247420 .ds-barchart-value {
|
|
1513
|
+
font-size: var(--fs-xs); font-weight: 600; color: var(--fg-3);
|
|
1514
|
+
font-variant-numeric: tabular-nums;
|
|
1515
|
+
}
|
|
1481
1516
|
|
|
1482
1517
|
/* ============================================================
|
|
1483
1518
|
Empty state
|
|
@@ -2155,6 +2190,15 @@
|
|
|
2155
2190
|
font-size: var(--fs-sm); color: var(--fg-3);
|
|
2156
2191
|
}
|
|
2157
2192
|
.ds-247420 .ds-page-header-dense .ds-page-header-right { flex: 0 0 auto; margin-left: auto; }
|
|
2193
|
+
/* Below ~480px the single-line ellipsis truncates the majority of the lede
|
|
2194
|
+
text with no way to recover it (no title attr, no expand) - let the row
|
|
2195
|
+
wrap and the lede break onto its own line instead of clipping. */
|
|
2196
|
+
@media (max-width: 480px) {
|
|
2197
|
+
.ds-247420 .ds-page-header-dense-row { flex-wrap: wrap; }
|
|
2198
|
+
.ds-247420 .ds-page-header-dense-lede {
|
|
2199
|
+
flex-basis: 100%; overflow: visible; text-overflow: clip; white-space: normal;
|
|
2200
|
+
}
|
|
2201
|
+
}
|
|
2158
2202
|
.ds-247420 .ds-file-toolbar-left,
|
|
2159
2203
|
.ds-247420 .ds-file-toolbar-right {
|
|
2160
2204
|
display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap;
|
|
@@ -6939,6 +6983,12 @@
|
|
|
6939
6983
|
font-family: var(--ff-mono); font-size: var(--fs-tiny);
|
|
6940
6984
|
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
|
|
6941
6985
|
}
|
|
6986
|
+
/* Below ~480px a single nowrap line silently truncates most of the agent /
|
|
6987
|
+
model / cwd context (no way to recover it - no title attr on the container,
|
|
6988
|
+
only on individual bits). Let it wrap instead of clipping. */
|
|
6989
|
+
@media (max-width: 480px) {
|
|
6990
|
+
.ds-247420 .chat-composer-context { white-space: normal; overflow: visible; text-overflow: clip; }
|
|
6991
|
+
}
|
|
6942
6992
|
.ds-247420 button.chat-composer-context { cursor: pointer; }
|
|
6943
6993
|
.ds-247420 button.chat-composer-context:hover { color: var(--fg-2); }
|
|
6944
6994
|
.ds-247420 button.chat-composer-context:focus-visible { outline: var(--focus-w) solid var(--focus-color); outline-offset: var(--focus-offset); }
|