From 56cb8d9103e22320fd65cdc22df62415cf112284 Mon Sep 17 00:00:00 2001 From: Firman Ramdhani <33869609+firmanramdhani@users.noreply.github.com> Date: Thu, 23 Jul 2026 17:26:51 +0700 Subject: [PATCH] fix(docs): update paths in configuration and core app shell documentation --- apps/docs-dev/src/apps/desktop/CONFIGURATION.md | 2 +- apps/docs-dev/src/packages/core-api/transformers.md | 8 ++++---- apps/docs-dev/src/packages/ui/CORE-APP-SHELL.md | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/docs-dev/src/apps/desktop/CONFIGURATION.md b/apps/docs-dev/src/apps/desktop/CONFIGURATION.md index ba63405..2bb648a 100644 --- a/apps/docs-dev/src/apps/desktop/CONFIGURATION.md +++ b/apps/docs-dev/src/apps/desktop/CONFIGURATION.md @@ -230,7 +230,7 @@ In the target web app's entry point (e.g., `apps/web/src/apps/index.tsx`): } ``` -All routes transition to hash-based addressing: `#/app/dashboard`, `#/auth/login`, `#/showcase`. +All routes transition to hash-based addressing: `#/app/dashboard`, `#/auth/login`. ### Step 2: Decommission the Custom Protocol — Main Process diff --git a/apps/docs-dev/src/packages/core-api/transformers.md b/apps/docs-dev/src/packages/core-api/transformers.md index 614eb39..9a1b1a7 100644 --- a/apps/docs-dev/src/packages/core-api/transformers.md +++ b/apps/docs-dev/src/packages/core-api/transformers.md @@ -317,7 +317,7 @@ A full working example is available in the showcase booking feature: | File | Description | | ---- | ----------- | -| `apps/web/.../booking/data/booking.transformer.ts` | Basic transformer with snake_case ↔ camelCase mapping | -| `apps/web/.../booking/data/booking.data-services.ts` | Data service with injected transformer | -| `apps/web/.../booking/data/advanced-booking.transformer.ts` | Extended transformer with custom chart method | -| `apps/web/.../booking/data/advanced-booking.data-services.ts` | Extended service with custom `getAvailabilityChart()` | +| `apps/showcase/.../booking/data/booking.transformer.ts` | Basic transformer with snake_case ↔ camelCase mapping | +| `apps/showcase/.../booking/data/booking.data-services.ts` | Data service with injected transformer | +| `apps/showcase/.../booking/data/advanced-booking.transformer.ts` | Extended transformer with custom chart method | +| `apps/showcase/.../booking/data/advanced-booking.data-services.ts` | Extended service with custom `getAvailabilityChart()` | diff --git a/apps/docs-dev/src/packages/ui/CORE-APP-SHELL.md b/apps/docs-dev/src/packages/ui/CORE-APP-SHELL.md index 98d34da..ca9c16b 100644 --- a/apps/docs-dev/src/packages/ui/CORE-APP-SHELL.md +++ b/apps/docs-dev/src/packages/ui/CORE-APP-SHELL.md @@ -418,7 +418,7 @@ function App() { ### Interactive Config Builder -The showcase demo at `apps/web/src/apps/showcase/shell-demo/` demonstrates a live, interactive config builder where every feature toggle and variant switch updates the layout in real-time. The key pattern is managing `config` state externally and passing it as a prop: +The showcase demo at `apps/showcase/src/pages/showcase-original/shell-demo/` demonstrates a live, interactive config builder where every feature toggle and variant switch updates the layout in real-time. The key pattern is managing `config` state externally and passing it as a prop: ```tsx import { useState, useMemo } from 'react';