@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.js
CHANGED
|
@@ -24576,6 +24576,10 @@ Format: **Draw.io XML** (mxGraphModel). The renderer includes ALL draw.io shape
|
|
|
24576
24576
|
- Basic: \`rounded=1;whiteSpace=wrap;html=1;fillColor=#COLOR;strokeColor=#COLOR;fontColor=#fff;\` for simple boxes`;
|
|
24577
24577
|
}
|
|
24578
24578
|
const Xm = `
|
|
24579
|
+
/* ── Font: Roboto ── */
|
|
24580
|
+
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap');
|
|
24581
|
+
* { font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
|
|
24582
|
+
|
|
24579
24583
|
/* ── Banking Theme: CSS Custom Properties ── */
|
|
24580
24584
|
.theme-light {
|
|
24581
24585
|
--surface-primary: #ffffff;
|
|
@@ -24795,7 +24799,7 @@ function MetricCard({ label, value, trend, trendLabel, icon, iconColor = '#00C1D
|
|
|
24795
24799
|
<p className="text-text-secondary text-xs font-medium uppercase tracking-wide">{label}</p>
|
|
24796
24800
|
{IconComp && <IconComp className="w-4 h-4" style={{ color: iconColor }} />}
|
|
24797
24801
|
</div>
|
|
24798
|
-
<p className="text-
|
|
24802
|
+
<p className="text-xl font-bold text-text-primary tabular-nums">{value}</p>
|
|
24799
24803
|
{trend && (
|
|
24800
24804
|
<div className="flex items-center gap-1.5 mt-2">
|
|
24801
24805
|
<span className={cn('text-xs font-semibold', isPositive && 'text-status-positive', isNegative && 'text-status-negative')}>
|