@salesforce/webapp-template-app-react-template-b2e-experimental 1.71.1 → 1.71.3
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/dist/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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.71.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.71.2...v1.71.3) (2026-03-05)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.71.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.71.1...v1.71.2) (2026-03-05)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [1.71.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.71.0...v1.71.1) (2026-03-05)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
|
package/dist/README.md
CHANGED
|
@@ -1,10 +1,44 @@
|
|
|
1
|
-
#
|
|
1
|
+
# App React Template B2E
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A B2E (Business-to-Employee) React starter template for the Salesforce platform. Includes an Agentforce conversation client and global search; intended for internal (non-Experience Cloud) deployment. Built with React, Vite, TypeScript, and Tailwind/shadcn.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## What's included
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
This project ships the web application only. No additional Salesforce metadata (objects, classes, etc.) is included — bring your own data model.
|
|
8
|
+
|
|
9
|
+
| Path | Description |
|
|
10
|
+
| ------------------------------------------------------------- | ------------------------------------- |
|
|
11
|
+
| `force-app/main/default/webapplications/appreacttemplateb2e/` | React web app (source, config, tests) |
|
|
12
|
+
|
|
13
|
+
## Getting started
|
|
14
|
+
|
|
15
|
+
Navigate to the web app and install dependencies:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
cd force-app/main/default/webapplications/appreacttemplateb2e
|
|
19
|
+
npm install
|
|
20
|
+
npm run dev
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Opens at http://localhost:5173 by default. For build and test instructions, see the [web app README](force-app/main/default/webapplications/appreacttemplateb2e/README.md).
|
|
24
|
+
|
|
25
|
+
## Deploy
|
|
26
|
+
|
|
27
|
+
### Deploy everything (web app)
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
cd force-app/main/default/webapplications/appreacttemplateb2e && npm install && npm run build && cd -
|
|
31
|
+
sf project deploy start --source-dir force-app --target-org <alias>
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### Deploy the web app only
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
cd force-app/main/default/webapplications/appreacttemplateb2e && npm install && npm run build && cd -
|
|
38
|
+
sf project deploy start --source-dir force-app/main/default/webapplications --target-org <alias>
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Replace `<alias>` with your target org alias.
|
|
8
42
|
|
|
9
43
|
## Configure Your Salesforce DX Project
|
|
10
44
|
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
"graphql:schema": "node scripts/get-graphql-schema.mjs"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@salesforce/agentforce-conversation-client": "^1.71.
|
|
19
|
-
"@salesforce/sdk-data": "^1.71.
|
|
20
|
-
"@salesforce/webapp-experimental": "^1.71.
|
|
18
|
+
"@salesforce/agentforce-conversation-client": "^1.71.3",
|
|
19
|
+
"@salesforce/sdk-data": "^1.71.3",
|
|
20
|
+
"@salesforce/webapp-experimental": "^1.71.3",
|
|
21
21
|
"@tailwindcss/vite": "^4.1.17",
|
|
22
22
|
"@tanstack/react-form": "^1.28.4",
|
|
23
23
|
"class-variance-authority": "^0.7.1",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@graphql-eslint/eslint-plugin": "^4.1.0",
|
|
42
42
|
"@graphql-tools/utils": "^11.0.0",
|
|
43
43
|
"@playwright/test": "^1.49.0",
|
|
44
|
-
"@salesforce/vite-plugin-webapp-experimental": "^1.71.
|
|
44
|
+
"@salesforce/vite-plugin-webapp-experimental": "^1.71.3",
|
|
45
45
|
"@testing-library/jest-dom": "^6.6.3",
|
|
46
46
|
"@testing-library/react": "^16.1.0",
|
|
47
47
|
"@testing-library/user-event": "^14.5.2",
|
package/dist/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
# App React Template B2E
|
|
2
|
-
|
|
3
|
-
A B2E (Business-to-Employee) React starter template for the Salesforce platform. Includes an Agentforce conversation client and global search; intended for internal (non-Experience Cloud) deployment. Built with React, Vite, TypeScript, and Tailwind/shadcn.
|
|
4
|
-
|
|
5
|
-
## What's included
|
|
6
|
-
|
|
7
|
-
This project ships the web application only. No additional Salesforce metadata (objects, classes, etc.) is included — bring your own data model.
|
|
8
|
-
|
|
9
|
-
| Path | Description |
|
|
10
|
-
| ------------------------------------------------------------- | ------------------------------------- |
|
|
11
|
-
| `force-app/main/default/webapplications/appreacttemplateb2e/` | React web app (source, config, tests) |
|
|
12
|
-
|
|
13
|
-
## Getting started
|
|
14
|
-
|
|
15
|
-
Navigate to the web app and install dependencies:
|
|
16
|
-
|
|
17
|
-
```bash
|
|
18
|
-
cd force-app/main/default/webapplications/appreacttemplateb2e
|
|
19
|
-
npm install
|
|
20
|
-
npm run dev
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
Opens at http://localhost:5173 by default. For build and test instructions, see the [web app README](force-app/main/default/webapplications/appreacttemplateb2e/README.md).
|
|
24
|
-
|
|
25
|
-
## Deploy
|
|
26
|
-
|
|
27
|
-
### Deploy everything (web app)
|
|
28
|
-
|
|
29
|
-
```bash
|
|
30
|
-
cd force-app/main/default/webapplications/appreacttemplateb2e && npm install && npm run build && cd -
|
|
31
|
-
sf project deploy start --source-dir force-app --target-org <alias>
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
### Deploy the web app only
|
|
35
|
-
|
|
36
|
-
```bash
|
|
37
|
-
cd force-app/main/default/webapplications/appreacttemplateb2e && npm install && npm run build && cd -
|
|
38
|
-
sf project deploy start --source-dir force-app/main/default/webapplications --target-org <alias>
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
Replace `<alias>` with your target org alias.
|
|
42
|
-
|
|
43
|
-
## Configure Your Salesforce DX Project
|
|
44
|
-
|
|
45
|
-
The `sfdx-project.json` file contains useful configuration information for your project. See [Salesforce DX Project Configuration](https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_ws_config.htm) in the _Salesforce DX Developer Guide_ for details about this file.
|
|
46
|
-
|
|
47
|
-
## Read All About It
|
|
48
|
-
|
|
49
|
-
- [Salesforce Extensions Documentation](https://developer.salesforce.com/tools/vscode/)
|
|
50
|
-
- [Salesforce CLI Setup Guide](https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_setup_intro.htm)
|
|
51
|
-
- [Salesforce DX Developer Guide](https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_intro.htm)
|
|
52
|
-
- [Salesforce CLI Command Reference](https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_reference.meta/sfdx_cli_reference/cli_reference.htm)
|