@schandlergarcia/sf-web-components 1.9.58 → 1.9.59

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,20 @@ 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
+ ## [1.9.59] - 2026-04-01
9
+
10
+ ### Fixed
11
+ - **src/templates/config/routes.tsx.template** - Restored navigation bar on Home and Accounts pages
12
+ - Issue: Routes were missing `showNavBar: true` in the handle object
13
+ - AppLayout checks for `handle.showNavBar === true` to determine whether to render the nav bar
14
+ - Without this flag, nav bar was hidden even though pages had `showInNavigation: true`
15
+ - Added `showNavBar: true` to Home and Accounts route handles
16
+ - Now matches the reset script pattern which already had this flag
17
+ - Navigation bar now appears on outer app pages (Home, Accounts) as expected
18
+
19
+ ### Context
20
+ The outer app (Home, Accounts pages) uses neutral shadcn styling, NOT Engine brand colors. Engine branding (#5BC8C8 teal, coral, orange) is only applied inside `.heroui-scope` (CommandCenter wrapper around dashboards). This is intentional.
21
+
8
22
  ## [1.9.58] - 2026-04-01
9
23
 
10
24
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schandlergarcia/sf-web-components",
3
- "version": "1.9.58",
3
+ "version": "1.9.59",
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",
@@ -13,12 +13,12 @@ export const routes: RouteObject[] = [
13
13
  {
14
14
  index: true,
15
15
  element: <Home />,
16
- handle: { showInNavigation: true, label: "Home" }
16
+ handle: { showInNavigation: true, showNavBar: true, label: "Home" }
17
17
  },
18
18
  {
19
19
  path: 'accounts',
20
20
  element: <AccountSearch />,
21
- handle: { showInNavigation: true, label: "Accounts" }
21
+ handle: { showInNavigation: true, showNavBar: true, label: "Accounts" }
22
22
  },
23
23
  {
24
24
  path: 'accounts/:recordId',