@salesforce/webapp-template-feature-react-authentication-experimental 1.42.0 → 1.43.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/.a4drules/skills/install-feature/SKILL.md +0 -1
- package/dist/CHANGELOG.md +19 -0
- package/dist/force-app/main/default/webapplications/feature-react-authentication/e2e/app.spec.ts +0 -7
- package/dist/force-app/main/default/webapplications/feature-react-authentication/package-lock.json +2242 -722
- package/dist/force-app/main/default/webapplications/feature-react-authentication/src/appLayout.tsx +4 -22
- package/dist/force-app/main/default/webapplications/feature-react-authentication/src/navigationMenu.tsx +80 -0
- package/dist/force-app/main/default/webapplications/feature-react-authentication/src/pages/ChangePassword.tsx +8 -5
- package/dist/force-app/main/default/webapplications/feature-react-authentication/src/pages/ForgotPassword.tsx +5 -4
- package/dist/force-app/main/default/webapplications/feature-react-authentication/src/pages/Login.tsx +11 -8
- package/dist/force-app/main/default/webapplications/feature-react-authentication/src/pages/Register.tsx +5 -4
- package/dist/force-app/main/default/webapplications/feature-react-authentication/src/pages/ResetPassword.tsx +5 -5
- package/dist/force-app/main/default/webapplications/feature-react-authentication/src/router-utils.tsx +35 -0
- package/dist/force-app/main/default/webapplications/feature-react-authentication/src/routes.tsx +0 -6
- package/dist/package.json +1 -1
- package/package.json +10 -6
- package/dist/force-app/main/default/webapplications/feature-react-authentication/src/pages/About.tsx +0 -12
|
@@ -16,7 +16,6 @@ Available features (npm packages):
|
|
|
16
16
|
| ---------------------- | ----------------------------------------------------------------------- | ---------------------------------------------------------------------- |
|
|
17
17
|
| **Authentication** | `@salesforce/webapp-template-feature-react-authentication-experimental` | Login, register, password reset, protected routes |
|
|
18
18
|
| **Global search** | `@salesforce/webapp-template-feature-react-global-search-experimental` | Search Salesforce objects with filters and pagination |
|
|
19
|
-
| **Navigation menu** | `@salesforce/webapp-template-feature-react-nav-menu-experimental` | App layout with responsive navigation menu |
|
|
20
19
|
| **Analytics charts** | `@salesforce/webapp-template-feature-react-chart-experimental` | Recharts line/bar charts with theming (AnalyticsChart, ChartContainer) |
|
|
21
20
|
| **GraphQL data access**| `@salesforce/webapp-template-feature-graphql-experimental` | AI agent skills, rules, and docs for GraphQL development |
|
|
22
21
|
| **Shared UI (shadcn)** | `@salesforce/webapp-template-feature-react-shadcn-experimental` | Button, Card, Input, Select, Table, Tabs, etc. |
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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.43.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.43.0...v1.43.1) (2026-02-20)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* fixing b2e template ([#137](https://github.com/salesforce-experience-platform-emu/webapps/issues/137)) ([73992a4](https://github.com/salesforce-experience-platform-emu/webapps/commit/73992a4b39a82f607b062a60dae16be494c80ba5))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [1.43.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.42.0...v1.43.0) (2026-02-20)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [1.42.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.41.0...v1.42.0) (2026-02-20)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
|
package/dist/force-app/main/default/webapplications/feature-react-authentication/e2e/app.spec.ts
CHANGED
|
@@ -9,13 +9,6 @@ test.describe('base-react-app', () => {
|
|
|
9
9
|
).toBeVisible();
|
|
10
10
|
});
|
|
11
11
|
|
|
12
|
-
test('about page loads', async ({ page }) => {
|
|
13
|
-
await page.goto('/about');
|
|
14
|
-
await expect(page).toHaveURL(/\/about/);
|
|
15
|
-
await expect(page.getByRole('heading', { name: 'About' })).toBeVisible();
|
|
16
|
-
await expect(page.getByText('This is the about page.')).toBeVisible();
|
|
17
|
-
});
|
|
18
|
-
|
|
19
12
|
test('not found route shows 404', async ({ page }) => {
|
|
20
13
|
await page.goto('/non-existent-route');
|
|
21
14
|
await expect(page.getByRole('heading', { name: '404' })).toBeVisible();
|