@salesforce/ui-bundle-template-app-react-sample-b2e 1.120.4 → 1.120.6
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.120.6](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.120.5...v1.120.6) (2026-04-07)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.120.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.120.4...v1.120.5) (2026-04-07)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [1.120.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.120.3...v1.120.4) (2026-04-07)
|
|
7
23
|
|
|
8
24
|
|
package/dist/README.md
CHANGED
|
@@ -16,6 +16,7 @@ A property management sample React UI Bundle for the Salesforce platform. Demons
|
|
|
16
16
|
- [6. Generate GraphQL Types](#6-generate-graphql-types)
|
|
17
17
|
- [7. Rebuild the UI Bundle](#7-rebuild-the-ui-bundle)
|
|
18
18
|
- [8. Deploy the UI Bundle](#8-deploy-the-ui-bundle)
|
|
19
|
+
- [9. Agentforce Conversation Client](#9-agentforce-conversation-client)
|
|
19
20
|
5. [Local Development](#local-development)
|
|
20
21
|
6. [Resources](#resources)
|
|
21
22
|
|
|
@@ -23,13 +24,14 @@ A property management sample React UI Bundle for the Salesforce platform. Demons
|
|
|
23
24
|
|
|
24
25
|
## What's Included
|
|
25
26
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
27
|
+
```
|
|
28
|
+
force-app/main/default/
|
|
29
|
+
├── uiBundles/ # React UI Bundle (source, config, tests)
|
|
30
|
+
├── objects/ # 17 Custom Objects (Property, Tenant, Lease, etc.)
|
|
31
|
+
├── layouts/ # Page layouts for all custom objects
|
|
32
|
+
├── permissionsets/ # Property_Management_Access (Full CRUD)
|
|
33
|
+
└── data/ # Sample JSON data (use: sf data import tree)
|
|
34
|
+
```
|
|
33
35
|
|
|
34
36
|
---
|
|
35
37
|
|
|
@@ -224,6 +226,13 @@ Once the build is complete, deploy the UI Bundle to your org:
|
|
|
224
226
|
sf project deploy start --source-dir force-app/main/default/uiBundles --target-org <alias>
|
|
225
227
|
```
|
|
226
228
|
|
|
229
|
+
### 9. Agentforce Conversation Client
|
|
230
|
+
|
|
231
|
+
The sample app includes an Agentforce Conversation Client (ACC) placeholder component in `applayout.tsx`. The ACC component requires a valid `agentId` for an agent that exists in the org. The options to create an agent specific to this use-case are:
|
|
232
|
+
|
|
233
|
+
- **Agentforce Vibes:** Generate agent metadata with the extension, then deploy it to the org.
|
|
234
|
+
- **Agentforce Builder:** Create the agent in the UI. See [Set Up Your Agent](https://help.salesforce.com/s/articleView?id=ai.agent_parent_setup.htm&type=5).
|
|
235
|
+
|
|
227
236
|
---
|
|
228
237
|
|
|
229
238
|
## Local Development
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"graphql:schema": "node scripts/get-graphql-schema.mjs"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@salesforce/sdk-data": "^1.120.
|
|
22
|
-
"@salesforce/ui-bundle": "^1.120.
|
|
21
|
+
"@salesforce/sdk-data": "^1.120.6",
|
|
22
|
+
"@salesforce/ui-bundle": "^1.120.6",
|
|
23
23
|
"@tailwindcss/vite": "^4.1.17",
|
|
24
24
|
"class-variance-authority": "^0.7.1",
|
|
25
25
|
"clsx": "^2.1.1",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@graphql-eslint/eslint-plugin": "^4.1.0",
|
|
47
47
|
"@graphql-tools/utils": "^11.0.0",
|
|
48
48
|
"@playwright/test": "^1.49.0",
|
|
49
|
-
"@salesforce/vite-plugin-ui-bundle": "^1.120.
|
|
49
|
+
"@salesforce/vite-plugin-ui-bundle": "^1.120.6",
|
|
50
50
|
"@testing-library/jest-dom": "^6.6.3",
|
|
51
51
|
"@testing-library/react": "^16.1.0",
|
|
52
52
|
"@testing-library/user-event": "^14.5.2",
|
|
@@ -69,5 +69,8 @@
|
|
|
69
69
|
"vite": "^7.2.4",
|
|
70
70
|
"vite-plugin-graphql-codegen": "^3.6.3",
|
|
71
71
|
"vitest": "^4.0.17"
|
|
72
|
+
},
|
|
73
|
+
"overrides": {
|
|
74
|
+
"lodash": "^4.18.1"
|
|
72
75
|
}
|
|
73
76
|
}
|
package/dist/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/webapp-template-base-sfdx-project-experimental",
|
|
3
|
-
"version": "1.120.
|
|
3
|
+
"version": "1.120.6",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/webapp-template-base-sfdx-project-experimental",
|
|
9
|
-
"version": "1.120.
|
|
9
|
+
"version": "1.120.6",
|
|
10
10
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
11
11
|
"devDependencies": {
|
|
12
12
|
"@lwc/eslint-plugin-lwc": "^3.3.0",
|
package/dist/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/ui-bundle-template-app-react-sample-b2e",
|
|
3
|
-
"version": "1.120.
|
|
3
|
+
"version": "1.120.6",
|
|
4
4
|
"description": "Salesforce sample property rental React app",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"author": "",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"clean": "rm -rf dist"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@salesforce/ui-bundle": "^1.120.
|
|
19
|
+
"@salesforce/ui-bundle": "^1.120.6",
|
|
20
20
|
"sonner": "^1.7.0"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|