@salesforce/webapp-template-feature-react-chart-experimental 1.53.1 → 1.53.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/README.md +1 -1
- package/dist/.a4drules/build-validation.md +1 -1
- package/dist/.a4drules/react.md +1 -1
- package/dist/AGENT.md +1 -1
- package/dist/CHANGELOG.md +11 -0
- package/dist/force-app/main/default/webapplications/feature-react-chart/package-lock.json +520 -532
- package/dist/force-app/main/default/webapplications/feature-react-chart/package.json +1 -1
- package/dist/force-app/main/default/webapplications/feature-react-chart/src/appLayout.tsx +75 -3
- package/dist/package.json +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -66,7 +66,7 @@ npm run lint # Run ESLint (always available)
|
|
|
66
66
|
|
|
67
67
|
## Key Commands (web app directory)
|
|
68
68
|
```bash
|
|
69
|
-
npm run
|
|
69
|
+
npm run dev # Start development server (vite)
|
|
70
70
|
npm run build # TypeScript + Vite build; check deployment readiness
|
|
71
71
|
npm run lint # Run ESLint
|
|
72
72
|
```
|
package/dist/.a4drules/react.md
CHANGED
|
@@ -33,7 +33,7 @@ The layout file is: `force-app/main/default/webapplications/<appName>/src/appLay
|
|
|
33
33
|
- Main entry component: `force-app/main/default/webapplications/<appName>/src/App.tsx`
|
|
34
34
|
- **Theme/layout shell**: `force-app/main/default/webapplications/<appName>/src/appLayout.tsx` — wraps all routed content (navigation, header, sidebar, outlet). Routes use `<AppLayout />` as the layout element; page content renders inside it via `<Outlet />`. When making UI edits that affect global layout, navigation, header, footer, sidebar, or theme, **you must consider and edit appLayout.tsx** in addition to page or component files; do not only edit individual pages and omit the layout.
|
|
35
35
|
- Running Development Server (from the web app directory):
|
|
36
|
-
- `npm run
|
|
36
|
+
- `npm run dev` — starts the Vite dev server
|
|
37
37
|
- You can generally assume the dev server is already running and don't need to start it.
|
|
38
38
|
- Build (from the web app directory):
|
|
39
39
|
- `npm run build` — TypeScript check + Vite build
|
package/dist/AGENT.md
CHANGED
|
@@ -38,7 +38,7 @@ cd force-app/main/default/webapplications/<appName>
|
|
|
38
38
|
|
|
39
39
|
| Command | Purpose |
|
|
40
40
|
|---------|---------|
|
|
41
|
-
| `npm run
|
|
41
|
+
| `npm run dev` | Start Vite dev server |
|
|
42
42
|
| `npm run build` | TypeScript (`tsc -b`) + Vite build |
|
|
43
43
|
| `npm run lint` | ESLint for the React app |
|
|
44
44
|
| `npm run test` | Vitest |
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.53.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.53.1...v1.53.2) (2026-02-25)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* move ACC from layout embed to route-based page approach ([#156](https://github.com/salesforce-experience-platform-emu/webapps/issues/156)) ([b778f44](https://github.com/salesforce-experience-platform-emu/webapps/commit/b778f44a7897fbf0914d7b1ebb36079c0b2d70fd))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [1.53.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.53.0...v1.53.1) (2026-02-25)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
|