@illuma-ai/codeviz 1.0.5 → 1.0.7
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/index.cjs +5 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/ui/components.d.ts +1 -1
- package/dist/ui/theme.d.ts +1 -1
- package/dist/ui/theme.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1364,6 +1364,10 @@ Format: **Draw.io XML** (mxGraphModel). The renderer includes ALL draw.io shape
|
|
|
1364
1364
|
- K8s: \`mxgraph.kubernetes.*\` (pod, node2, svc, deploy, ns)
|
|
1365
1365
|
- Network: \`mxgraph.network.*\` (server, firewall, cloud, rack_unit)
|
|
1366
1366
|
- Basic: \`rounded=1;whiteSpace=wrap;html=1;fillColor=#COLOR;strokeColor=#COLOR;fontColor=#fff;\` for simple boxes`}const Dm=`
|
|
1367
|
+
/* ── Font: Roboto ── */
|
|
1368
|
+
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap');
|
|
1369
|
+
* { font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
|
|
1370
|
+
|
|
1367
1371
|
/* ── Banking Theme: CSS Custom Properties ── */
|
|
1368
1372
|
.theme-light {
|
|
1369
1373
|
--surface-primary: #ffffff;
|
|
@@ -1583,7 +1587,7 @@ function MetricCard({ label, value, trend, trendLabel, icon, iconColor = '#00C1D
|
|
|
1583
1587
|
<p className="text-text-secondary text-xs font-medium uppercase tracking-wide">{label}</p>
|
|
1584
1588
|
{IconComp && <IconComp className="w-4 h-4" style={{ color: iconColor }} />}
|
|
1585
1589
|
</div>
|
|
1586
|
-
<p className="text-
|
|
1590
|
+
<p className="text-xl font-bold text-text-primary tabular-nums">{value}</p>
|
|
1587
1591
|
{trend && (
|
|
1588
1592
|
<div className="flex items-center gap-1.5 mt-2">
|
|
1589
1593
|
<span className={cn('text-xs font-semibold', isPositive && 'text-status-positive', isNegative && 'text-status-negative')}>
|