create-bw-app 0.24.6 → 0.24.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-bw-app",
3
3
  "private": false,
4
- "version": "0.24.6",
4
+ "version": "0.24.7",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "create-bw-app": "bin/create-bw-app.mjs",
package/src/constants.mjs CHANGED
@@ -175,16 +175,16 @@ export const PLATFORM_STARTER_FILES = [
175
175
  ];
176
176
 
177
177
  export const APP_DEPENDENCY_DEFAULTS = {
178
- "@brightweblabs/app-shell": "^0.12.0",
179
- "@brightweblabs/core-auth": "^0.10.3",
178
+ "@brightweblabs/app-shell": "^0.14.0",
179
+ "@brightweblabs/core-auth": "^0.10.4",
180
180
  "@brightweblabs/infra": "^0.7.0",
181
- "@brightweblabs/module-admin": "^0.8.11",
182
- "@brightweblabs/module-crm": "^0.15.7",
183
- "@brightweblabs/module-marketing": "^0.4.6",
184
- "@brightweblabs/module-orgs": "^0.4.6",
185
- "@brightweblabs/module-projects": "^0.15.0",
181
+ "@brightweblabs/module-admin": "^0.8.13",
182
+ "@brightweblabs/module-crm": "^0.15.10",
183
+ "@brightweblabs/module-marketing": "^0.4.8",
184
+ "@brightweblabs/module-orgs": "^0.4.8",
185
+ "@brightweblabs/module-projects": "^0.16.1",
186
186
  "@brightweblabs/theme": "^0.7.4",
187
- "@brightweblabs/ui": "^1.4.7",
187
+ "@brightweblabs/ui": "^1.4.8",
188
188
  "geist": "1.7.2",
189
189
  "lucide-react": "^1.8.0",
190
190
  "next": "^16.0.0",
@@ -19,7 +19,6 @@ import {
19
19
  type ShellNavStateGroup,
20
20
  } from "@brightweblabs/app-shell";
21
21
  import { createAuthUiClient } from "@brightweblabs/core-auth/ui";
22
- import { Toaster } from "@brightweblabs/ui";
23
22
  import { getModuleToolbarControls } from "../../config/module-toolbar-controls";
24
23
  import { getStarterShellConfig } from "../../config/shell";
25
24
  import "@brightweblabs/app-shell/dashboard.css";
@@ -65,7 +64,6 @@ function ShellLayoutInner({
65
64
  const { isSidebarCollapsed, isGroupOpen, toggleGroup, toggleSidebar } =
66
65
  useShellNavState({ pathname, groups: shellGroups });
67
66
  const notifications = useShellNotifications({ enabled: viewer.isStaff });
68
- const isAdminSurface = pathname === "/admin" || pathname.startsWith("/admin/");
69
67
  const shellNavItems = [
70
68
  ...config.primaryNav,
71
69
  ...(config.adminNavItem ? [config.adminNavItem] : []),
@@ -174,7 +172,6 @@ function ShellLayoutInner({
174
172
  >
175
173
  <ShellRealtimeBridge viewer={viewer} />
176
174
  {children}
177
- {isAdminSurface || pathname === "/account" ? <Toaster /> : null}
178
175
  </AppShellFrame>
179
176
  );
180
177
  }