@schandlergarcia/sf-web-components 1.9.12 → 1.9.13

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@schandlergarcia/sf-web-components",
3
- "version": "1.9.12",
3
+ "version": "1.9.13",
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",
@@ -264,14 +264,14 @@ cat > "$ROUTES" << 'ROUTES_EOF'
264
264
  import type { RouteObject } from 'react-router';
265
265
  import Home from './pages/Home';
266
266
  import NotFound from './pages/NotFound';
267
- import AuthAppLayout from "./features/authentication/layouts/AuthAppLayout";
267
+ import AppLayout from './appLayout';
268
268
  import AccountSearch from "./features/object-search/__examples__/pages/AccountSearch";
269
269
  import AccountObjectDetail from "./features/object-search/__examples__/pages/AccountObjectDetailPage";
270
270
 
271
271
  export const routes: RouteObject[] = [
272
272
  {
273
273
  path: "/",
274
- element: <AuthAppLayout />,
274
+ element: <AppLayout />,
275
275
  children: [
276
276
  {
277
277
  index: true,