create-bw-app 0.18.0 → 0.18.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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-bw-app",
3
3
  "private": false,
4
- "version": "0.18.0",
4
+ "version": "0.18.2",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "create-bw-app": "bin/create-bw-app.mjs",
package/src/constants.mjs CHANGED
@@ -166,14 +166,14 @@ export const PLATFORM_STARTER_FILES = [
166
166
  ];
167
167
 
168
168
  export const APP_DEPENDENCY_DEFAULTS = {
169
- "@brightweblabs/app-shell": "^0.7.0",
170
- "@brightweblabs/core-auth": "^0.7.0",
169
+ "@brightweblabs/app-shell": "^0.7.1",
170
+ "@brightweblabs/core-auth": "^0.7.1",
171
171
  "@brightweblabs/infra": "^0.4.0",
172
- "@brightweblabs/module-admin": "^0.5.6",
173
- "@brightweblabs/module-crm": "^0.9.1",
174
- "@brightweblabs/module-marketing": "^0.2.5",
175
- "@brightweblabs/module-orgs": "^0.3.6",
176
- "@brightweblabs/module-projects": "^0.7.1",
172
+ "@brightweblabs/module-admin": "^0.5.7",
173
+ "@brightweblabs/module-crm": "^0.9.2",
174
+ "@brightweblabs/module-marketing": "^0.2.6",
175
+ "@brightweblabs/module-orgs": "^0.3.7",
176
+ "@brightweblabs/module-projects": "^0.8.0",
177
177
  "@brightweblabs/theme": "^0.5.0",
178
178
  "@brightweblabs/ui": "^1.1.1",
179
179
  "geist": "1.7.2",
@@ -110,6 +110,7 @@ export function ShellLayoutClient({
110
110
  toolsExpanded={isGroupOpen(config.toolsSection.key)}
111
111
  visiblePrimaryNav={config.primaryNav}
112
112
  visibleToolNav={config.toolsSection.items}
113
+ navGroups={config.moduleGroups}
113
114
  isNavItemActive={isActive}
114
115
  isToolLinkActive={isActive}
115
116
  onToggleTools={() => toggleGroup(config.toolsSection.key)}
@@ -12,8 +12,8 @@ import {
12
12
 
13
13
  const navigation = {
14
14
  listHref: "/projetos",
15
- detailHref: (id: string) => `/projetos/${id}`,
16
- boardHref: (id: string) => `/projetos/${id}/tarefas`,
15
+ detailHrefPattern: "/projetos/:projectId",
16
+ boardHrefPattern: "/projetos/:projectId/tarefas",
17
17
  };
18
18
 
19
19
  export async function ProjectsServerMount() {