@salesforce/webapp-template-app-react-template-vibe-experimental 1.53.0 → 1.53.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
+ ## [1.53.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.53.0...v1.53.1) (2026-02-25)
7
+
8
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
9
+
10
+
11
+
12
+
13
+
6
14
  # [1.53.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.52.1...v1.53.0) (2026-02-24)
7
15
 
8
16
  **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
@@ -8,7 +8,7 @@
8
8
  "name": "base-react-app",
9
9
  "version": "1.0.0",
10
10
  "dependencies": {
11
- "@salesforce/agentforce-conversation-client": "^1.52.1",
11
+ "@salesforce/agentforce-conversation-client": "^1.53.0",
12
12
  "@salesforce/sdk-data": "^1.11.2",
13
13
  "@salesforce/webapp-experimental": "*",
14
14
  "@tailwindcss/vite": "^4.1.17",
@@ -4043,9 +4043,9 @@
4043
4043
  "license": "SEE LICENSE IN LICENSE.txt"
4044
4044
  },
4045
4045
  "node_modules/@modelcontextprotocol/sdk": {
4046
- "version": "1.27.0",
4047
- "resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.27.0.tgz",
4048
- "integrity": "sha512-qOdO524oPMkUsOJTrsH9vz/HN3B5pKyW+9zIW51A9kDMVe7ON70drz1ouoyoyOcfzc+oxhkQ6jWmbyKnlWmYqA==",
4046
+ "version": "1.27.1",
4047
+ "resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.27.1.tgz",
4048
+ "integrity": "sha512-sr6GbP+4edBwFndLbM60gf07z0FQ79gaExpnsjMGePXqFcSSb7t6iscpjk9DhFhwd+mTEQrzNafGP8/iGGFYaA==",
4049
4049
  "license": "MIT",
4050
4050
  "dependencies": {
4051
4051
  "@hono/node-server": "^1.19.9",
@@ -6062,9 +6062,9 @@
6062
6062
  ]
6063
6063
  },
6064
6064
  "node_modules/@salesforce/agentforce-conversation-client": {
6065
- "version": "1.52.1",
6066
- "resolved": "https://registry.npmjs.org/@salesforce/agentforce-conversation-client/-/agentforce-conversation-client-1.52.1.tgz",
6067
- "integrity": "sha512-Bd87lgnIKpMbI5saMpoDzWxgppO3OIPEDYjN5QPhf2zCNEuAeW9drY+rPE0orXhXepeFo6NIGQa6fVcbKXhlwg==",
6065
+ "version": "1.53.0",
6066
+ "resolved": "https://registry.npmjs.org/@salesforce/agentforce-conversation-client/-/agentforce-conversation-client-1.53.0.tgz",
6067
+ "integrity": "sha512-KtzsbyL1AvLCFssjLAGD+JfRTLfwzeV5EIKud9KPwRwC36lobIOXXYWOaNrxSHgV0MfnPDr2GOaCOYjNeGGI3A==",
6068
6068
  "license": "SEE LICENSE IN LICENSE.txt",
6069
6069
  "dependencies": {
6070
6070
  "@lightning-out/application": "2.1.1-rc.2"
@@ -14,7 +14,7 @@
14
14
  "graphql:schema": "node scripts/get-graphql-schema.mjs"
15
15
  },
16
16
  "dependencies": {
17
- "@salesforce/agentforce-conversation-client": "^1.52.1",
17
+ "@salesforce/agentforce-conversation-client": "^1.53.0",
18
18
  "@salesforce/sdk-data": "^1.11.2",
19
19
  "@salesforce/webapp-experimental": "*",
20
20
  "@tailwindcss/vite": "^4.1.17",
@@ -1,6 +1,6 @@
1
1
  import { createContext, useContext, useState, useEffect, useCallback, type ReactNode } from "react";
2
2
  import { getCurrentUser } from "@salesforce/webapp-experimental/api";
3
- import { API_ROUTES } from "../components/auth/authenticationConfig";
3
+ import { API_ROUTES } from "../authenticationConfig";
4
4
 
5
5
  interface User {
6
6
  readonly id: string;
@@ -3,7 +3,7 @@ import { StatusAlert } from "../alerts/status-alert";
3
3
  import { FooterLink } from "../footers/footer-link";
4
4
  import { SubmitButton } from "./submit-button";
5
5
  import { CardLayout } from "../layout/card-layout";
6
- import { useFormContext } from "../../hooks/form";
6
+ import { useFormContext } from "../hooks/form";
7
7
  import { useId } from "react";
8
8
 
9
9
  /**
@@ -1,7 +1,7 @@
1
1
  import { Button } from "../../components/ui/button";
2
2
  import { Spinner } from "../../components/ui/spinner";
3
3
  import { cn } from "../../lib/utils";
4
- import { useFormContext } from "../../hooks/form";
4
+ import { useFormContext } from "../hooks/form";
5
5
 
6
6
  interface SubmitButtonProps extends Omit<React.ComponentProps<typeof Button>, "type"> {
7
7
  /** Button text when not submitting */
@@ -1,5 +1,5 @@
1
1
  import { Navigate, Outlet, useSearchParams } from "react-router";
2
- import { useAuth } from "../../context/AuthContext";
2
+ import { useAuth } from "../context/AuthContext";
3
3
  import { getStartUrl } from "../authHelpers";
4
4
  import { CardSkeleton } from "../layout/card-skeleton";
5
5
 
@@ -1,5 +1,5 @@
1
1
  import { Navigate, Outlet, useLocation } from "react-router";
2
- import { useAuth } from "../../context/AuthContext";
2
+ import { useAuth } from "../context/AuthContext";
3
3
  import { AUTH_REDIRECT_PARAM, ROUTES } from "../authenticationConfig";
4
4
  import { CardSkeleton } from "../layout/card-skeleton";
5
5
 
@@ -6,10 +6,10 @@
6
6
  import { useEffect, useState, useCallback, useRef } from "react";
7
7
  import { useLocation } from "react-router";
8
8
  import { X } from "lucide-react";
9
- import { useAuth } from "../../context/AuthContext";
9
+ import { useAuth } from "../context/AuthContext";
10
10
  import { pollSessionTimeServlet, extendSessionTime } from "./sessionTimeService";
11
- import { useCountdownTimer } from "../../hooks/useCountdownTimer";
12
- import { useRetryWithBackoff } from "../../hooks/useRetryWithBackoff";
11
+ import { useCountdownTimer } from "../hooks/useCountdownTimer";
12
+ import { useRetryWithBackoff } from "../hooks/useRetryWithBackoff";
13
13
  import { Alert, AlertTitle, AlertDescription } from "../../components/ui/alert";
14
14
  import { Button } from "../../components/ui/button";
15
15
  import {
@@ -2,15 +2,15 @@ import type { RouteObject } from 'react-router';
2
2
  import Home from './HomePage';
3
3
  import NotFound from './pages/NotFound';
4
4
  import AuthAppLayout from "./auth/layouts/AuthAppLayout";
5
- import Login from "./pages/Login";
6
- import Register from "./pages/Register";
7
- import ForgotPassword from "./pages/ForgotPassword";
8
- import ResetPassword from "./pages/ResetPassword";
9
- import Profile from "./pages/Profile";
10
- import ChangePassword from "./components/auth/pages/ChangePassword";
11
- import AuthenticationRoute from "./components/auth/layouts/authenticationRouteLayout";
12
- import PrivateRoute from "./components/auth/privateRouteLayout";
13
- import { ROUTES } from "./components/auth/authenticationConfig";
5
+ import Login from "./auth/pages/Login";
6
+ import Register from "./auth/pages/Register";
7
+ import ForgotPassword from "./auth/pages/ForgotPassword";
8
+ import ResetPassword from "./auth/pages/ResetPassword";
9
+ import Profile from "./auth/pages/Profile";
10
+ import ChangePassword from "./auth/pages/ChangePassword";
11
+ import AuthenticationRoute from "./auth/layouts/authenticationRouteLayout";
12
+ import PrivateRoute from "./auth/layouts/privateRouteLayout";
13
+ import { ROUTES } from "./auth/authenticationConfig";
14
14
 
15
15
  export const routes: RouteObject[] = [
16
16
  {
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/webapp-template-base-sfdx-project-experimental",
3
- "version": "1.53.0",
3
+ "version": "1.53.1",
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-app-react-template-vibe-experimental",
3
- "version": "1.53.0",
3
+ "version": "1.53.1",
4
4
  "description": "Vibe coding starter app template",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "author": "",
@@ -43,5 +43,5 @@
43
43
  }
44
44
  }
45
45
  },
46
- "gitHead": "ecdad417f3e8de0f911ff1113ff9fe7fb1360f22"
46
+ "gitHead": "c483d93820fdddc821cdb3706c51263999cbcf1f"
47
47
  }