@design.estate/dees-catalog 3.52.1 → 3.52.2

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.
@@ -157197,6 +157197,9 @@ var _DeesChartLog = class _DeesChartLog extends (_a55 = DeesElement, _label_dec6
157197
157197
  }
157198
157198
  updated(changedProperties) {
157199
157199
  super.updated(changedProperties);
157200
+ if (changedProperties.has("goBright") && this.terminal) {
157201
+ this.terminal.options.theme = this.getTerminalTheme();
157202
+ }
157200
157203
  if (changedProperties.has("logEntries") && this.terminalReady && this.logEntries.length > 0) {
157201
157204
  const oldEntries = changedProperties.get("logEntries") || [];
157202
157205
  const newEntries = this.logEntries;
@@ -157222,7 +157225,7 @@ var _DeesChartLog = class _DeesChartLog extends (_a55 = DeesElement, _label_dec6
157222
157225
  }
157223
157226
  }
157224
157227
  getTerminalTheme() {
157225
- const isDark = this.domtoolsInstance?.themeManager?.isDarkMode ?? true;
157228
+ const isDark = !this.goBright;
157226
157229
  return isDark ? {
157227
157230
  background: "#0a0a0a",
157228
157231
  foreground: "#e0e0e0",
@@ -173668,6 +173671,45 @@ var DemoViewDashboard = class extends (_a89 = DeesElement) {
173668
173671
  console.log("Tile action:", e11.detail);
173669
173672
  }}
173670
173673
  ></dees-statsgrid>
173674
+
173675
+ <h2 style="margin-top: 40px;">Recent Activity</h2>
173676
+ <p>Below is a log of recent system events and user activity to demonstrate scrollable content.</p>
173677
+
173678
+ ${[
173679
+ { time: "2 min ago", event: "User john@example.com logged in from 192.168.1.42", type: "info" },
173680
+ { time: "5 min ago", event: "Deployment v3.52.1 completed successfully on production", type: "success" },
173681
+ { time: "12 min ago", event: "Database backup finished \u2014 2.4 GB compressed", type: "info" },
173682
+ { time: "18 min ago", event: "SSL certificate renewed for api.example.com (expires 2027-04-03)", type: "success" },
173683
+ { time: "25 min ago", event: "Memory usage spike on worker-03 (92%) \u2014 auto-scaled to 4 instances", type: "warning" },
173684
+ { time: "31 min ago", event: "New user registration: sarah@company.io", type: "info" },
173685
+ { time: "45 min ago", event: 'Scheduled job "cleanup-temp-files" completed \u2014 removed 1,247 files', type: "info" },
173686
+ { time: "1 hour ago", event: "API rate limit reached for client app-mobile-ios (429 responses)", type: "warning" },
173687
+ { time: "1.5 hours ago", event: "CDN cache purged for /assets/* \u2014 340 objects invalidated", type: "info" },
173688
+ { time: "2 hours ago", event: "Failed login attempt for admin@example.com from 203.0.113.50 (blocked)", type: "error" },
173689
+ { time: "2.5 hours ago", event: "Webhook delivery to https://hooks.slack.com succeeded (200 OK)", type: "info" },
173690
+ { time: "3 hours ago", event: 'Cron job "generate-reports" started \u2014 processing Q1 2026 data', type: "info" },
173691
+ { time: "3.5 hours ago", event: "Load balancer health check: all 8 nodes healthy", type: "success" },
173692
+ { time: "4 hours ago", event: "DNS propagation complete for new subdomain staging.example.com", type: "success" }
173693
+ ].map((item) => b2`
173694
+ <div style="
173695
+ display: flex;
173696
+ align-items: baseline;
173697
+ gap: 12px;
173698
+ padding: 10px 0;
173699
+ border-bottom: 1px solid ${cssManager.bdTheme("hsl(0 0% 90%)", "hsl(0 0% 12%)")};
173700
+ font-size: 13px;
173701
+ ">
173702
+ <span style="
173703
+ flex-shrink: 0;
173704
+ width: 100px;
173705
+ font-size: 11px;
173706
+ color: ${cssManager.bdTheme("hsl(0 0% 55%)", "hsl(0 0% 45%)")};
173707
+ ">${item.time}</span>
173708
+ <span style="
173709
+ color: ${item.type === "error" ? cssManager.bdTheme("hsl(0 72% 50%)", "hsl(0 72% 65%)") : item.type === "warning" ? cssManager.bdTheme("hsl(25 95% 50%)", "hsl(25 95% 63%)") : item.type === "success" ? cssManager.bdTheme("hsl(142 70% 40%)", "hsl(142 70% 55%)") : cssManager.bdTheme("hsl(0 0% 30%)", "hsl(0 0% 75%)")};
173710
+ ">${item.event}</span>
173711
+ </div>
173712
+ `)}
173671
173713
  `;
173672
173714
  }
173673
173715
  };
@@ -174371,15 +174413,51 @@ __publicField(_DeesSimpleAppDash, "styles", [
174371
174413
  overscroll-behavior: contain;
174372
174414
  }
174373
174415
 
174416
+ .appcontent::before {
174417
+ content: '';
174418
+ position: sticky;
174419
+ top: 0;
174420
+ left: 0;
174421
+ right: 0;
174422
+ display: block;
174423
+ height: 8px;
174424
+ margin-bottom: -8px;
174425
+ z-index: 10;
174426
+ pointer-events: none;
174427
+ background: linear-gradient(
174428
+ to bottom,
174429
+ ${cssManager.bdTheme("hsl(0 0% 0% / 0.08)", "hsl(0 0% 0% / 0.4)")},
174430
+ ${cssManager.bdTheme("hsl(0 0% 0% / 0.03)", "hsl(0 0% 0% / 0.12)")},
174431
+ transparent
174432
+ );
174433
+ }
174434
+
174435
+ .controlbar::before {
174436
+ content: '';
174437
+ position: absolute;
174438
+ top: -8px;
174439
+ left: 240px;
174440
+ right: 0;
174441
+ height: 8px;
174442
+ pointer-events: none;
174443
+ background: linear-gradient(
174444
+ to top,
174445
+ ${cssManager.bdTheme("hsl(0 0% 0% / 0.08)", "hsl(0 0% 0% / 0.4)")},
174446
+ ${cssManager.bdTheme("hsl(0 0% 0% / 0.03)", "hsl(0 0% 0% / 0.12)")},
174447
+ transparent
174448
+ );
174449
+ }
174450
+
174374
174451
  .controlbar {
174375
- color: #fff;
174452
+ color: ${cssManager.bdTheme("hsl(0 0% 45%)", "hsl(0 0% 55%)")};
174376
174453
  position: absolute;
174377
174454
  bottom: 0px;
174378
174455
  left: 0px;
174379
174456
  width: 100%;
174380
174457
  height: 24px;
174381
- background: ${cssManager.bdTheme("hsl(220 13% 18%)", "hsl(220 13% 12%)")};
174382
- z-index: 2;
174458
+ background: ${cssManager.bdTheme("hsl(0 0% 100%)", "hsl(0 0% 3.9%)")};
174459
+ border-top: 1px solid ${cssManager.bdTheme("hsl(0 0% 89.8%)", "hsl(0 0% 14.9%)")};
174460
+ z-index: 11;
174383
174461
  display: flex;
174384
174462
  justify-content: flex-end;
174385
174463
  align-items: center;
@@ -174397,9 +174475,10 @@ __publicField(_DeesSimpleAppDash, "styles", [
174397
174475
  height: 100%;
174398
174476
  white-space: nowrap;
174399
174477
  cursor: default;
174400
- color: hsl(0 0% 70%);
174478
+ color: ${cssManager.bdTheme("hsl(0 0% 55%)", "hsl(0 0% 50%)")};
174401
174479
  transition: all 0.15s ease;
174402
- border-left: 1px solid hsl(0 0% 100% / 0.08);
174480
+ border-left: 1px solid ${cssManager.bdTheme("hsl(0 0% 89.8%)", "hsl(0 0% 14.9%)")};
174481
+
174403
174482
  }
174404
174483
 
174405
174484
  .control:first-child {
@@ -174407,8 +174486,8 @@ __publicField(_DeesSimpleAppDash, "styles", [
174407
174486
  }
174408
174487
 
174409
174488
  .control:hover {
174410
- background: hsl(0 0% 100% / 0.06);
174411
- color: hsl(0 0% 95%);
174489
+ background: ${cssManager.bdTheme("hsl(0 0% 0% / 0.04)", "hsl(0 0% 100% / 0.06)")};
174490
+ color: ${cssManager.bdTheme("hsl(0 0% 20%)", "hsl(0 0% 90%)")};
174412
174491
  }
174413
174492
 
174414
174493
  .control dees-icon {