@salesforce/ui-bundle-template-feature-react-agentforce-conversation-client 12.3.0 → 12.3.1

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,14 @@
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
+ ## [12.3.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v12.3.0...v12.3.1) (2026-08-31)
7
+
8
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
9
+
10
+
11
+
12
+
13
+
6
14
  ## [12.3.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v12.2.0...v12.3.0) (2026-08-29)
7
15
 
8
16
  **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
@@ -7,6 +7,7 @@
7
7
  "node": ">=22"
8
8
  },
9
9
  "scripts": {
10
+ "postinstall": "patch-package",
10
11
  "dev": "vite",
11
12
  "dev:design": "vite --mode design",
12
13
  "build": "tsc -b && vite build",
@@ -18,8 +19,8 @@
18
19
  "graphql:schema": "node scripts/get-graphql-schema.mjs"
19
20
  },
20
21
  "dependencies": {
21
- "@salesforce/platform-sdk": "^12.3.0",
22
- "@salesforce/ui-bundle": "^12.3.0",
22
+ "@salesforce/platform-sdk": "^12.3.1",
23
+ "@salesforce/ui-bundle": "^12.3.1",
23
24
  "@tailwindcss/vite": "^4.1.17",
24
25
  "class-variance-authority": "^0.7.1",
25
26
  "clsx": "^2.1.1",
@@ -45,8 +46,8 @@
45
46
  "@graphql-eslint/eslint-plugin": "^4.1.0",
46
47
  "@graphql-tools/utils": "^11.0.0",
47
48
  "@playwright/test": "^1.49.0",
48
- "@salesforce/graphiti": "^12.3.0",
49
- "@salesforce/vite-plugin-ui-bundle": "^12.3.0",
49
+ "@salesforce/graphiti": "^12.3.1",
50
+ "@salesforce/vite-plugin-ui-bundle": "^12.3.1",
50
51
  "@testing-library/jest-dom": "^6.6.3",
51
52
  "@testing-library/react": "^16.1.0",
52
53
  "@testing-library/user-event": "^14.5.2",
@@ -63,6 +64,7 @@
63
64
  "graphql": "^16.11.0",
64
65
  "graphql-codegen-typescript-operation-types": "^2.0.2",
65
66
  "jsdom": "^25.0.1",
67
+ "patch-package": "^8.0.1",
66
68
  "serve": "^14.2.5",
67
69
  "typescript": "~5.9.3",
68
70
  "typescript-eslint": "^8.46.4",
@@ -0,0 +1,45 @@
1
+ diff --git a/node_modules/aria-hidden/dist/es2015/index.js b/node_modules/aria-hidden/dist/es2015/index.js
2
+ index 00aa2ea..1d2f61e 100644
3
+ --- a/node_modules/aria-hidden/dist/es2015/index.js
4
+ +++ b/node_modules/aria-hidden/dist/es2015/index.js
5
+ @@ -131,7 +131,9 @@ export var hideOthers = function (originalTarget, parentNode, markerName) {
6
+ // we should not hide aria-live elements - https://github.com/theKashey/aria-hidden/issues/10
7
+ // and script elements, as they have no impact on accessibility.
8
+ targets.push.apply(targets, Array.from(activeParentNode.querySelectorAll('[aria-live], script')));
9
+ - return applyAttributeToOthers(targets, activeParentNode, markerName, 'aria-hidden');
10
+ + return supportsInert()
11
+ + ? inertOthers(targets, activeParentNode, markerName)
12
+ + : applyAttributeToOthers(targets, activeParentNode, markerName, 'aria-hidden');
13
+ };
14
+ /**
15
+ * Marks everything except given node(or nodes) as inert
16
+ diff --git a/node_modules/aria-hidden/dist/es2019/index.js b/node_modules/aria-hidden/dist/es2019/index.js
17
+ index 17404da..a444872 100644
18
+ --- a/node_modules/aria-hidden/dist/es2019/index.js
19
+ +++ b/node_modules/aria-hidden/dist/es2019/index.js
20
+ @@ -126,7 +126,9 @@ export const hideOthers = (originalTarget, parentNode, markerName = 'data-aria-h
21
+ // we should not hide aria-live elements - https://github.com/theKashey/aria-hidden/issues/10
22
+ // and script elements, as they have no impact on accessibility.
23
+ targets.push(...Array.from(activeParentNode.querySelectorAll('[aria-live], script')));
24
+ - return applyAttributeToOthers(targets, activeParentNode, markerName, 'aria-hidden');
25
+ + return supportsInert()
26
+ + ? inertOthers(targets, activeParentNode, markerName)
27
+ + : applyAttributeToOthers(targets, activeParentNode, markerName, 'aria-hidden');
28
+ };
29
+ /**
30
+ * Marks everything except given node(or nodes) as inert
31
+ diff --git a/node_modules/aria-hidden/dist/es5/index.js b/node_modules/aria-hidden/dist/es5/index.js
32
+ index 1b86f56..863f83e 100644
33
+ --- a/node_modules/aria-hidden/dist/es5/index.js
34
+ +++ b/node_modules/aria-hidden/dist/es5/index.js
35
+ @@ -134,7 +134,9 @@ var hideOthers = function (originalTarget, parentNode, markerName) {
36
+ // we should not hide aria-live elements - https://github.com/theKashey/aria-hidden/issues/10
37
+ // and script elements, as they have no impact on accessibility.
38
+ targets.push.apply(targets, Array.from(activeParentNode.querySelectorAll('[aria-live], script')));
39
+ - return applyAttributeToOthers(targets, activeParentNode, markerName, 'aria-hidden');
40
+ + return supportsInert()
41
+ + ? inertOthers(targets, activeParentNode, markerName)
42
+ + : applyAttributeToOthers(targets, activeParentNode, markerName, 'aria-hidden');
43
+ };
44
+ exports.hideOthers = hideOthers;
45
+ /**
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@salesforce/ui-bundle-template-base-sfdx-project",
3
- "version": "12.3.0",
3
+ "version": "12.3.1",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/ui-bundle-template-base-sfdx-project",
9
- "version": "12.3.0",
9
+ "version": "12.3.1",
10
10
  "license": "SEE LICENSE IN LICENSE.txt",
11
11
  "dependencies": {
12
12
  "fast-xml-parser": "^5.9.3",
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/ui-bundle-template-base-sfdx-project",
3
- "version": "12.3.0",
3
+ "version": "12.3.1",
4
4
  "description": "Base SFDX project template",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "publishConfig": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/ui-bundle-template-feature-react-agentforce-conversation-client",
3
- "version": "12.3.0",
3
+ "version": "12.3.1",
4
4
  "description": "Embedded Agentforce conversation client feature for UI Bundles",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "author": "",
@@ -26,7 +26,7 @@
26
26
  "clean": "rm -rf dist"
27
27
  },
28
28
  "dependencies": {
29
- "@salesforce/agentforce-conversation-client": "^12.3.0"
29
+ "@salesforce/agentforce-conversation-client": "^12.3.1"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/react": "^19.2.7",