@salesforce/ui-bundle-template-app-react-template-b2e 10.20.2 → 10.22.0
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 +16 -0
- package/dist/force-app/main/default/uiBundles/reactinternalapp/package.json +4 -4
- package/dist/force-app/main/default/uiBundles/reactinternalapp/src/components/AgentforceConversationClient.tsx +13 -1
- package/dist/force-app/main/default/uiBundles/reactinternalapp/src/types/conversation.ts +1 -0
- package/dist/package-lock.json +2 -2
- package/dist/package.json +1 -1
- package/package.json +1 -1
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
|
+
## [10.22.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v10.21.0...v10.22.0) (2026-06-24)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [10.21.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v10.20.2...v10.21.0) (2026-06-24)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [10.20.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v10.20.1...v10.20.2) (2026-06-23)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"graphql:schema": "node scripts/get-graphql-schema.mjs"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@salesforce/platform-sdk": "^10.
|
|
22
|
-
"@salesforce/ui-bundle": "^10.
|
|
21
|
+
"@salesforce/platform-sdk": "^10.22.0",
|
|
22
|
+
"@salesforce/ui-bundle": "^10.22.0",
|
|
23
23
|
"@tailwindcss/vite": "^4.1.17",
|
|
24
24
|
"class-variance-authority": "^0.7.1",
|
|
25
25
|
"clsx": "^2.1.1",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"@graphql-eslint/eslint-plugin": "^4.1.0",
|
|
46
46
|
"@graphql-tools/utils": "^11.0.0",
|
|
47
47
|
"@playwright/test": "^1.49.0",
|
|
48
|
-
"@salesforce/graphiti": "^10.
|
|
49
|
-
"@salesforce/vite-plugin-ui-bundle": "^10.
|
|
48
|
+
"@salesforce/graphiti": "^10.22.0",
|
|
49
|
+
"@salesforce/vite-plugin-ui-bundle": "^10.22.0",
|
|
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,6 +69,7 @@ export function AgentforceConversationClient({
|
|
|
69
69
|
width,
|
|
70
70
|
height,
|
|
71
71
|
styleTokens,
|
|
72
|
+
isFileBased,
|
|
72
73
|
salesforceOrigin,
|
|
73
74
|
frontdoorUrl,
|
|
74
75
|
onReady,
|
|
@@ -89,10 +90,21 @@ export function AgentforceConversationClient({
|
|
|
89
90
|
...(agentId !== undefined && { agentId }),
|
|
90
91
|
...(agentLabel !== undefined && { agentLabel }),
|
|
91
92
|
...(styleTokens !== undefined && { styleTokens }),
|
|
93
|
+
...(isFileBased !== undefined && { isFileBased }),
|
|
92
94
|
renderingConfig,
|
|
93
95
|
channel: "Vibes",
|
|
94
96
|
};
|
|
95
|
-
}, [
|
|
97
|
+
}, [
|
|
98
|
+
agentId,
|
|
99
|
+
agentLabel,
|
|
100
|
+
inlineProp,
|
|
101
|
+
headerEnabled,
|
|
102
|
+
showHeaderIcon,
|
|
103
|
+
width,
|
|
104
|
+
height,
|
|
105
|
+
styleTokens,
|
|
106
|
+
isFileBased,
|
|
107
|
+
]);
|
|
96
108
|
|
|
97
109
|
const inline = normalizedAgentforceClientConfig?.renderingConfig?.mode === "inline";
|
|
98
110
|
|
|
@@ -33,6 +33,7 @@ export interface AgentforceConversationClientProps {
|
|
|
33
33
|
height?: string | number;
|
|
34
34
|
/** Theme overrides for the chat UI. */
|
|
35
35
|
styleTokens?: StyleTokens;
|
|
36
|
+
isFileBased?: boolean;
|
|
36
37
|
/** Optional. If not provided, resolved internally (e.g. from /__lo/frontdoor in dev, window.location.origin in prod). */
|
|
37
38
|
salesforceOrigin?: string;
|
|
38
39
|
/** Optional. If not provided, resolved internally in dev via /__lo/frontdoor. */
|
package/dist/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/webapp-template-base-sfdx-project-experimental",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.22.0",
|
|
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": "10.
|
|
9
|
+
"version": "10.22.0",
|
|
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