@salesforce/webapp-template-feature-react-authentication-experimental 1.67.0 → 1.68.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/webapplications/feature-react-authentication/package.json +4 -4
- package/dist/force-app/main/default/webapplications/feature-react-authentication/src/auth/hooks/form.tsx +4 -5
- package/dist/force-app/main/default/webapplications/feature-react-authentication/src/auth/layout/centered-page-layout.tsx +1 -2
- package/dist/package.json +1 -1
- package/package.json +2 -2
- package/dist/force-app/main/default/webapplications/feature-react-authentication/package-lock.json +0 -18370
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.68.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.67.1...v1.68.0) (2026-03-04)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.67.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.67.0...v1.67.1) (2026-03-04)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [1.67.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.66.0...v1.67.0) (2026-03-03)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
|
package/dist/force-app/main/default/webapplications/feature-react-authentication/package.json
CHANGED
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"graphql:schema": "node scripts/get-graphql-schema.mjs"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@salesforce/sdk-data": "^1.
|
|
19
|
-
"@salesforce/webapp-experimental": "^1.
|
|
18
|
+
"@salesforce/sdk-data": "^1.68.0",
|
|
19
|
+
"@salesforce/webapp-experimental": "^1.68.0",
|
|
20
20
|
"@tailwindcss/vite": "^4.1.17",
|
|
21
|
-
"@tanstack/react-form": "^1.28.
|
|
21
|
+
"@tanstack/react-form": "^1.28.4",
|
|
22
22
|
"class-variance-authority": "^0.7.1",
|
|
23
23
|
"clsx": "^2.1.1",
|
|
24
24
|
"lucide-react": "^0.562.0",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"@graphql-eslint/eslint-plugin": "^4.1.0",
|
|
41
41
|
"@graphql-tools/utils": "^11.0.0",
|
|
42
42
|
"@playwright/test": "^1.49.0",
|
|
43
|
-
"@salesforce/vite-plugin-webapp-experimental": "^1.
|
|
43
|
+
"@salesforce/vite-plugin-webapp-experimental": "^1.68.0",
|
|
44
44
|
"@testing-library/jest-dom": "^6.6.3",
|
|
45
45
|
"@testing-library/react": "^16.1.0",
|
|
46
46
|
"@testing-library/user-event": "^14.5.2",
|
|
@@ -18,11 +18,10 @@ export const { fieldContext, formContext, useFieldContext, useFormContext } =
|
|
|
18
18
|
// Field Components
|
|
19
19
|
// ============================================================================
|
|
20
20
|
|
|
21
|
-
interface TextFieldProps
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {
|
|
21
|
+
interface TextFieldProps extends Omit<
|
|
22
|
+
React.ComponentProps<typeof Input>,
|
|
23
|
+
"name" | "value" | "onBlur" | "onChange" | "aria-invalid"
|
|
24
|
+
> {
|
|
26
25
|
label: string;
|
|
27
26
|
labelAction?: React.ReactNode;
|
|
28
27
|
description?: React.ReactNode;
|
|
@@ -22,8 +22,7 @@ const contentContainerVariants = cva("w-full", {
|
|
|
22
22
|
* Props for the CenteredPageLayout component.
|
|
23
23
|
*/
|
|
24
24
|
interface CenteredPageLayoutProps
|
|
25
|
-
extends React.ComponentProps<"div">,
|
|
26
|
-
VariantProps<typeof contentContainerVariants> {
|
|
25
|
+
extends React.ComponentProps<"div">, VariantProps<typeof contentContainerVariants> {
|
|
27
26
|
/** The content to be displayed within the page layout */
|
|
28
27
|
children: React.ReactNode;
|
|
29
28
|
/**
|
package/dist/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/webapp-template-feature-react-authentication-experimental",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.68.0",
|
|
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.
|
|
19
|
+
"@salesforce/webapp-experimental": "^1.68.0",
|
|
20
20
|
"@tanstack/react-form": "^1.27.7",
|
|
21
21
|
"@types/react": "^19.2.7",
|
|
22
22
|
"@types/react-dom": "^19.2.3",
|