@salesforce/webapp-template-base-react-app-experimental 1.109.5 → 1.109.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/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
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.109.6](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.5...v1.109.6) (2026-03-19)
7
+
8
+ ### Bug Fixes
9
+
10
+ - integrate object-search in B2E sample app and template apps @W-21641950 ([#313](https://github.com/salesforce-experience-platform-emu/webapps/issues/313)) ([3b1e014](https://github.com/salesforce-experience-platform-emu/webapps/commit/3b1e0143446882202e4cb2871a6f12749c98ffd6))
11
+
6
12
  ## [1.109.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.109.4...v1.109.5) (2026-03-19)
7
13
 
8
14
  **Note:** Version bump only for package @salesforce/webapp-template-base-react-app-experimental
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/webapp-template-base-react-app-experimental",
3
- "version": "1.109.5",
3
+ "version": "1.109.6",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -15,8 +15,8 @@
15
15
  "graphql:schema": "node scripts/get-graphql-schema.mjs"
16
16
  },
17
17
  "dependencies": {
18
- "@salesforce/sdk-data": "^1.109.5",
19
- "@salesforce/webapp-experimental": "^1.109.5",
18
+ "@salesforce/sdk-data": "^1.109.6",
19
+ "@salesforce/webapp-experimental": "^1.109.6",
20
20
  "@tailwindcss/vite": "^4.1.17",
21
21
  "class-variance-authority": "^0.7.1",
22
22
  "clsx": "^2.1.1",
@@ -28,6 +28,7 @@
28
28
  "react-dom": "^19.2.0",
29
29
  "react-router": "^7.10.1",
30
30
  "shadcn": "^3.8.5",
31
+ "sonner": "^1.7.0",
31
32
  "tailwind-merge": "^3.5.0",
32
33
  "tailwindcss": "^4.1.17",
33
34
  "tw-animate-css": "^1.4.0"
@@ -40,7 +41,7 @@
40
41
  "@graphql-eslint/eslint-plugin": "^4.1.0",
41
42
  "@graphql-tools/utils": "^11.0.0",
42
43
  "@playwright/test": "^1.49.0",
43
- "@salesforce/vite-plugin-webapp-experimental": "^1.109.5",
44
+ "@salesforce/vite-plugin-webapp-experimental": "^1.109.6",
44
45
  "@testing-library/jest-dom": "^6.6.3",
45
46
  "@testing-library/react": "^16.1.0",
46
47
  "@testing-library/user-event": "^14.5.2",
@@ -0,0 +1,20 @@
1
+ import { Toaster as Sonner } from 'sonner';
2
+
3
+ /**
4
+ * Renders the toast container. Use with `toast()` from this module for messages
5
+ * with title, description, actions, and variants (success, error, warning).
6
+ *
7
+ * @example
8
+ * toast("Event has been created", {
9
+ * description: "Sunday, December 03, 2023 at 9:00 AM",
10
+ * action: { label: "Undo", onClick: () => {} },
11
+ * });
12
+ * toast.success("Saved!");
13
+ * toast.error("Something went wrong");
14
+ * toast.warning("Please review");
15
+ */
16
+ export function Toaster() {
17
+ return <Sonner position="top-right" richColors />;
18
+ }
19
+
20
+ export { toast } from 'sonner';