anentrypoint-design 0.0.357 → 0.0.358
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 +10 -0
- package/dist/247420.js +23 -23
- package/package.json +1 -1
- package/src/components/data-density.js +14 -0
- package/src/components.js +5 -0
- package/src/css/app-shell/data-density.css +10 -0
package/dist/247420.css
CHANGED
|
@@ -4967,6 +4967,16 @@
|
|
|
4967
4967
|
.ds-247420 .ds-stat-val.err-rate { font-size: clamp(24px, 7cqi, 32px); color: var(--warn); }
|
|
4968
4968
|
.ds-247420 .ds-stat-lbl { font-size: var(--fs-micro); color: var(--fg-3); margin-top: 2px; }
|
|
4969
4969
|
|
|
4970
|
+
/* RateCell — tone-colored numeric table cell (success-rate / percentile-latency
|
|
4971
|
+
columns), ported from docstudio's endpointsView() success-rate coloring.
|
|
4972
|
+
Neutral at rest; color carries meaning only, matching Table's sortable-header
|
|
4973
|
+
restraint pattern. */
|
|
4974
|
+
.ds-247420 .ds-rate-cell { font-variant-numeric: tabular-nums; font-weight: 600; }
|
|
4975
|
+
.ds-247420 .ds-rate-cell-neutral { color: var(--fg-2); font-weight: 400; }
|
|
4976
|
+
.ds-247420 .ds-rate-cell-good { color: var(--success); }
|
|
4977
|
+
.ds-247420 .ds-rate-cell-warn { color: var(--warn); }
|
|
4978
|
+
.ds-247420 .ds-rate-cell-bad { color: var(--danger); }
|
|
4979
|
+
|
|
4970
4980
|
/* Inline row — flex row with centered items and a small gap, for demo/kit
|
|
4971
4981
|
markup that needs to lay siblings out horizontally without an inline style. */
|
|
4972
4982
|
.ds-247420 .ds-inline-row { display: flex; align-items: center; gap: var(--space-2, 8px); }
|