@salesforce/webapp-template-feature-react-authentication-experimental 1.101.3 → 1.101.5

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.
@@ -82,12 +82,13 @@ Replace `"0Xx000000000000AAA"` with the agent ID provided by the user.
82
82
 
83
83
  Pass additional options via the `agentforceClientConfig` prop:
84
84
 
85
- | Option | Purpose | Required |
86
- | ---------------------------------- | ---------------------------------------------------------- | -------- |
87
- | `agentId` | The agent to load — **required, will not work without it** | **Yes** |
88
- | `renderingConfig.mode` | `"floating"` (default) or `"inline"` | No |
89
- | `renderingConfig.width` / `height` | Inline dimensions (number for px, string for CSS) | No |
90
- | `styleTokens` | Theme colors and style overrides | No |
85
+ | Option | Purpose | Required |
86
+ | ---------------------------------- | -------------------------------------------------------------------------------------------------------- | -------- |
87
+ | `agentId` | The agent to load — **required, will not work without it** | **Yes** |
88
+ | `renderingConfig.mode` | `"floating"` (default) or `"inline"` | No |
89
+ | `renderingConfig.width` / `height` | Inline dimensions (number for px, string for CSS) | No |
90
+ | `renderingConfig.headerEnabled` | Show or hide the chat header bar. Defaults to `false` (header hidden). Set to `true` to show the header. | No |
91
+ | `styleTokens` | Theme colors and style overrides | No |
91
92
 
92
93
  See [embed-examples.md](docs/embed-examples.md) for complete examples of each mode.
93
94
 
@@ -126,6 +127,24 @@ The chat renders within the page layout at a specific size.
126
127
  />
127
128
  ```
128
129
 
130
+ ### Inline — with header
131
+
132
+ By default the header is hidden. To show the chat header bar (with agent name and controls), set `headerEnabled: true`:
133
+
134
+ ```tsx
135
+ <AgentforceConversationClient
136
+ agentforceClientConfig={{
137
+ agentId: "0Xx000000000000AAA",
138
+ renderingConfig: {
139
+ mode: "inline",
140
+ width: 420,
141
+ height: 600
142
+ headerEnabled: true,
143
+ },
144
+ }}
145
+ />
146
+ ```
147
+
129
148
  ### Theming
130
149
 
131
150
  Use `styleTokens` to customize the chat appearance.
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.101.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.101.4...v1.101.5) (2026-03-16)
7
+
8
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.101.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.101.3...v1.101.4) (2026-03-16)
15
+
16
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
17
+
18
+
19
+
20
+
21
+
6
22
  ## [1.101.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.101.2...v1.101.3) (2026-03-14)
7
23
 
8
24
  **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/webapp-template-base-sfdx-project-experimental",
3
- "version": "1.101.3",
3
+ "version": "1.101.5",
4
4
  "description": "Base SFDX project template",
5
5
  "private": true,
6
6
  "files": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/webapp-template-feature-react-authentication-experimental",
3
- "version": "1.101.3",
3
+ "version": "1.101.5",
4
4
  "description": "Authentication feature for web applications",
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
  "devDependencies": {
19
- "@salesforce/webapp-experimental": "^1.101.3",
19
+ "@salesforce/webapp-experimental": "^1.101.5",
20
20
  "@tanstack/react-form": "^1.27.7",
21
21
  "@types/react": "^19.2.7",
22
22
  "@types/react-dom": "^19.2.3",