@rovela-ai/sdk 0.5.13 → 0.5.14

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.
@@ -545,6 +545,28 @@
545
545
  color: hsl(var(--admin-foreground));
546
546
  }
547
547
 
548
+ /* Full-page heading + subtitle used by admin detail pages (OrderDetails,
549
+ CustomerDetails, …). These MUST carry an explicit font-size: the admin panel
550
+ ships inside the merchant's own Next app, whose storefront `h1`/`h2` live in
551
+ the shared globals `@layer base`. Without a size here the admin `<h1
552
+ className="admin-page-title">` inherits the storefront display heading (which
553
+ can be clamp(3.5rem, 8vw, 6rem) ≈ 56–96px) and renders enormous. This rule is
554
+ unlayered (like the rest of admin-theme.css), so it wins over the store's
555
+ layered base heading regardless of the store's typography. */
556
+ .rovela-admin-theme .admin-page-title {
557
+ font-size: var(--admin-text-3xl);
558
+ font-weight: var(--admin-font-bold);
559
+ line-height: var(--admin-leading-tight);
560
+ letter-spacing: var(--admin-tracking-tight);
561
+ color: hsl(var(--admin-foreground));
562
+ }
563
+ .rovela-admin-theme .admin-page-subtitle {
564
+ font-size: var(--admin-text-sm);
565
+ font-weight: var(--admin-font-normal);
566
+ line-height: var(--admin-leading-normal);
567
+ color: hsl(var(--admin-foreground-muted));
568
+ }
569
+
548
570
  .rovela-admin-theme .admin-heading-3 {
549
571
  font-size: var(--admin-text-xl);
550
572
  font-weight: var(--admin-font-semibold);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rovela-ai/sdk",
3
- "version": "0.5.13",
3
+ "version": "0.5.14",
4
4
  "description": "Rovela SDK - Pre-built e-commerce components for AI-powered store generation",
5
5
  "type": "module",
6
6
  "license": "MIT",