@schandlergarcia/sf-web-components 2.3.7 → 2.3.8

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/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [2.3.8] - 2026-04-13
9
+
10
+ ### Changed
11
+ - **Engine theme overhauled for boldness** — Switched primary accent from cyan (#7DCBD9) to Engine's signature amber/gold (#FFB200) to match their actual website branding. Hero uses true Engine Black (#0D1117), surfaces have warm cream (#fef9ef), borders are gold-tinted (#e2c97a), chart-1 is now amber. Cyan moved to `--dash-info`. This makes the Engine theme dramatically different from the neutral blue theme.
12
+ - **Logo increased to h-14** — Engine logo in dashboard header now renders larger for stronger brand presence.
13
+
8
14
  ## [2.3.7] - 2026-04-11
9
15
 
10
16
  ### Changed
@@ -672,7 +672,7 @@ export default function PartnerHubDashboard() {
672
672
  <img
673
673
  src={engineLogo}
674
674
  alt="Engine"
675
- className="h-11 w-auto dark:invert dark:brightness-0 dark:contrast-100 transition-all duration-300"
675
+ className="h-14 w-auto dark:invert dark:brightness-0 dark:contrast-100 transition-all duration-300"
676
676
  />
677
677
  <div className="flex items-center gap-4">
678
678
  <div className="h-10 w-px bg-gradient-to-b from-transparent via-[var(--color-dash-label)]/40 to-transparent" />
@@ -766,7 +766,7 @@ export default function PartnerHubDashboard() {
766
766
  <div className="relative max-w-[1600px] mx-auto px-8 py-12 pb-20">
767
767
  <div className="max-w-3xl space-y-3 animate-fade-in">
768
768
  <h1 className="text-3xl lg:text-4xl font-bold text-white tracking-tight leading-tight">
769
- Hey there! Here's what's happening with your properties
769
+ Hey there Jamie! Here's what's happening with your properties
770
770
  </h1>
771
771
  <p className="text-lg text-white/70 leading-relaxed">
772
772
  Everything you need to manage your partnership with Engine — invoices, bookings, and any items that need your attention.
Binary file
@@ -93,21 +93,21 @@
93
93
 
94
94
  :root {
95
95
  --dash-text: #0D1117;
96
- --dash-muted: #4a5568;
97
- --dash-label: #9ca3af;
98
- --dash-surface: #f0fafb;
99
- --dash-border: #a8dde5;
100
- --dash-accent: #7DCBD9;
96
+ --dash-muted: #3d4047;
97
+ --dash-label: #8b8d91;
98
+ --dash-surface: #fef9ef;
99
+ --dash-border: #e2c97a;
100
+ --dash-accent: #FFB200;
101
101
  --dash-success: #1E9D6D;
102
- --dash-info: #157DE5;
103
- --dash-warning: #FFB200;
104
- --dash-danger: #FD4B23;
105
- --dash-dark: #0c3044;
106
- --dash-darker: #071d2a;
107
- --dash-chart-1: #7DCBD9;
102
+ --dash-info: #7DCBD9;
103
+ --dash-warning: #FD4B23;
104
+ --dash-danger: #dc2626;
105
+ --dash-dark: #0D1117;
106
+ --dash-darker: #06090d;
107
+ --dash-chart-1: #FFB200;
108
108
  --dash-chart-2: #1E9D6D;
109
- --dash-chart-3: #FD4B23;
110
- --dash-chart-4: #FFB200;
109
+ --dash-chart-3: #7DCBD9;
110
+ --dash-chart-4: #FD4B23;
111
111
  --color-dash-text: var(--dash-text);
112
112
  --color-dash-muted: var(--dash-muted);
113
113
  --color-dash-label: var(--dash-label);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schandlergarcia/sf-web-components",
3
- "version": "2.3.7",
3
+ "version": "2.3.8",
4
4
  "description": "Reusable Salesforce web components library with Tailwind CSS v4 and shadcn/ui",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",