Skip to content

Commit f8be4ec

Browse files
committed
Update Stage
1 parent f47faa9 commit f8be4ec

10 files changed

Lines changed: 80 additions & 60 deletions

main/docs/get-started/universal-components/universal-components-overview.mdx

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,14 @@ description: Learn what Auth0 Universal Components are and choose a platform to
44
sidebarTitle: Auth0 Universal Components
55
---
66

7-
<Warning>
8-
Auth0 Universal Components are currently being released in stages. **Web components (My Organization)** are in Early Access. **iOS and Android components (My Account)** are in Beta. To learn more, read [Product Release Stages](/docs/troubleshoot/product-lifecycle/product-release-stages).
9-
</Warning>
7+
import { ReleaseStageNotice } from "/snippets/ReleaseStageNotice.jsx"
8+
9+
<ReleaseStageNotice
10+
feature="Auth0 Universal Components"
11+
stage="beta"
12+
terms="true"
13+
contact="Auth0 Support"
14+
/>
1015

1116
Auth0 Universal Components is a library of pre-built UI components you can use to build your identity pipeline and experience inside your web and native applications. Built on [Auth0 SDKs](/docs/libraries) with an API-first approach, Universal Components allow you to embed Auth0's services, such as Organization management and MFA enrollment, without building the UI manually or managing high-privilege backend proxies.
1217

main/docs/get-started/universal-components/web/auth0-component-provider.mdx

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@ description: Learn how Auth0ComponentProvider synchronizes authentication, inter
44
sidebarTitle: Configure Auth0ComponentProvider
55
---
66

7-
<Warning>
8-
Auth0 Universal Components is currently in Early Access. By using it, you
9-
agree to the applicable Free Trial terms in [Okta's Master Subscription
10-
Agreement](https://www.okta.com/agreements/). To learn more, read [Product
11-
Release Stages](/docs/troubleshoot/product-lifecycle/product-release-stages).
12-
</Warning>
13-
7+
import { ReleaseStageNotice } from "/snippets/ReleaseStageNotice.jsx"
8+
9+
<ReleaseStageNotice
10+
feature="Auth0 Universal Components"
11+
stage="ea"
12+
terms="true"
13+
contact="Auth0 Support"
14+
/>
1415
The `Auth0ComponentProvider` is the orchestration layer for [Auth0 Universal Components](/docs/get-started/universal-components/universal-components-overview). Auth0 SDKs manage sessions and tokens, and the `Auth0ComponentProvider` translates that identity state into a functional, branded UI context. `Auth0ComponentProvider` makes sure components, such as MFA enrollment, have the necessary permissions, cached data, and styling.
1516

1617
## Benefits

main/docs/get-started/universal-components/web/components/build-delegated-admin.mdx

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@ description: Describes how to use Universal Components to build delegated admini
44
sidebarTitle: Build a Delegated Admin Interface
55
---
66

7-
<Warning>
8-
Auth0 Universal Components is currently in Early Access. By using it, you
9-
agree to the applicable Free Trial terms in [Okta's Master Subscription
10-
Agreement](https://www.okta.com/agreements/). To learn more, read [Product
11-
Release Stages](/docs/troubleshoot/product-lifecycle/product-release-stages).
12-
</Warning>
7+
import { ReleaseStageNotice } from "/snippets/ReleaseStageNotice.jsx"
8+
9+
<ReleaseStageNotice
10+
feature="Auth0 Universal Components"
11+
stage="ea"
12+
terms="true"
13+
contact="Auth0 Support"
14+
/>
1315

1416
Universal Components allow you to build a self-service administrative dashboard within your own application. This enables your B2B customers delegated as administrators to your [Auth0 Organization](/docs/manage-users/organizations) to manage their own branding, identity providers, and verified domains without the need to access Auth0 Dashboard or require a support team for basic administrative actions.
1517

main/docs/get-started/universal-components/web/components/configure-org-domains.mdx

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@ description: Learn how to manage verified and pending Organization domains in a
77
import Spinner from "/snippets/Spinner.jsx";
88
import { ComponentLoader } from "/snippets/ComponentLoader.jsx";
99

10-
<Warning>
11-
Auth0 Universal Components is currently in Early Access. By using it, you
12-
agree to the applicable Free Trial terms in [Okta's Master Subscription
13-
Agreement](https://www.okta.com/agreements/). To learn more, read [Product
14-
Release Stages](/docs/troubleshoot/product-lifecycle/product-release-stages).
15-
</Warning>
10+
import { ReleaseStageNotice } from "/snippets/ReleaseStageNotice.jsx"
11+
12+
<ReleaseStageNotice
13+
feature="Auth0 Universal Components"
14+
stage="ea"
15+
terms="true"
16+
contact="Auth0 Support"
17+
/>
1618

1719
The `DomainTable` component provides a unified interface for your customers to manage their Auth0 Organization's email domain. By verifying domain ownership, Organization administrators enable critical B2B features like [Home Realm Discovery (HRD)](/docs/authenticate/enterprise-connections/self-service-enterprise-configuration/manage-self-service-enterprise-configuration#email-domain-verification-and-pre-verified-domains) and ensure users are automatically routed to the correct SSO provider based on their email suffix (for example, `user@acme.com`).
1820

main/docs/get-started/universal-components/web/components/edit-organization-details.mdx

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@ description: Edit organization details including name, display name, branding co
77
import Spinner from "/snippets/Spinner.jsx";
88
import { ComponentLoader } from "/snippets/ComponentLoader.jsx";
99

10-
<Warning>
11-
Auth0 Universal Components is currently in Early Access. By using it, you
12-
agree to the applicable Free Trial terms in [Okta's Master Subscription
13-
Agreement](https://www.okta.com/agreements/). To learn more, read [Product
14-
Release Stages](/docs/troubleshoot/product-lifecycle/product-release-stages).
15-
</Warning>
10+
import { ReleaseStageNotice } from "/snippets/ReleaseStageNotice.jsx"
11+
12+
<ReleaseStageNotice
13+
feature="Auth0 Universal Components"
14+
stage="ea"
15+
terms="true"
16+
contact="Auth0 Support"
17+
/>
1618

1719
The `OrganizationDetailsEdit` component provides a unified interface to edit your [organization](/docs/manage-users/organizations) details.
1820

main/docs/get-started/universal-components/web/components/sso-provider-create.mdx

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@ description: Multi-step wizard for creating SSO providers with provider selectio
77
import Spinner from "/snippets/Spinner.jsx";
88
import { ComponentLoader } from "/snippets/ComponentLoader.jsx";
99

10-
<Warning>
11-
Auth0 Universal Components is currently in Early Access. By using it, you
12-
agree to the applicable Free Trial terms in [Okta's Master Subscription
13-
Agreement](https://www.okta.com/agreements/). To learn more, read [Product
14-
Release Stages](/docs/troubleshoot/product-lifecycle/product-release-stages).
15-
</Warning>
10+
import { ReleaseStageNotice } from "/snippets/ReleaseStageNotice.jsx"
11+
12+
<ReleaseStageNotice
13+
feature="Auth0 Universal Components"
14+
stage="ea"
15+
terms="true"
16+
contact="Auth0 Support"
17+
/>
1618

1719
The `SsoProviderCreate` component provides a unified interface to add new [Single Sign-On](/docs/authenticate/enterprise-connections/self-service-enterprise-configuration) providers.
1820

main/docs/get-started/universal-components/web/components/sso-provider-edit.mdx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,14 @@ description: "Tabbed interface for editing SSO providers: SSO settings, provisio
77
import Spinner from "/snippets/Spinner.jsx";
88
import { ComponentLoader } from "/snippets/ComponentLoader.jsx";
99

10-
<Warning>
11-
Auth0 Universal Components is currently in Early Access. By using it, you
12-
agree to the applicable Free Trial terms in [Okta's Master Subscription
13-
Agreement](https://www.okta.com/agreements/). To learn more, read [Product
14-
Release Stages](/docs/troubleshoot/product-lifecycle/product-release-stages).
15-
</Warning>
10+
import { ReleaseStageNotice } from "/snippets/ReleaseStageNotice.jsx"
1611

12+
<ReleaseStageNotice
13+
feature="Auth0 Universal Components"
14+
stage="ea"
15+
terms="true"
16+
contact="Auth0 Support"
17+
/>
1718
The `SsoProviderEdit` component provides a unified interface to edit [Single Sign-On](/docs/authenticate/enterprise-connections/self-service-enterprise-configuration) providers.
1819

1920
<ComponentLoader

main/docs/get-started/universal-components/web/components/sso-provider-table.mdx

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,19 @@ title: List and Configure SSO Providers on Web
33
sidebarTitle: SsoProviderTable component
44
description: Display and manage SSO identity providers in a table interface with create, edit, delete, and enable/disable capabilities.
55
---
6+
import Spinner from "/snippets/Spinner.jsx";
7+
import { ComponentLoader } from "/snippets/ComponentLoader.jsx";
8+
import { ReleaseStageNotice } from "/snippets/ReleaseStageNotice.jsx"
69

7-
<Warning>
8-
Auth0 Universal Components is currently in Early Access. By using it, you
9-
agree to the applicable Free Trial terms in [Okta's Master Subscription
10-
Agreement](https://www.okta.com/agreements/). To learn more, read [Product
11-
Release Stages](/docs/troubleshoot/product-lifecycle/product-release-stages).
12-
</Warning>
10+
<ReleaseStageNotice
11+
feature="Auth0 Universal Components"
12+
stage="ea"
13+
terms="true"
14+
contact="Auth0 Support"
15+
/>
1316

1417
The `SsoProviderTable` component provides a unified interface to list and configure [Single Sign-On](/docs/authenticate/enterprise-connections/self-service-enterprise-configuration) providers for your organization.
1518

16-
import Spinner from "/snippets/Spinner.jsx";
17-
import { ComponentLoader } from "/snippets/ComponentLoader.jsx";
1819

1920
<ComponentLoader
2021
componentSelector="sso-provider-table"

main/docs/get-started/universal-components/web/universal-components-style.mdx

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@ description: Customize the Auth0 Universal Components design system using Tailwi
44
sidebarTitle: Customize Style and Themes
55
---
66

7-
<Warning>
8-
Auth0 Universal Components is currently in Early Access. By using it, you
9-
agree to the applicable Free Trial terms in [Okta's Master Subscription
10-
Agreement](https://www.okta.com/agreements/). To learn more, read [Product
11-
Release Stages](/docs/troubleshoot/product-lifecycle/product-release-stages).
12-
</Warning>
7+
import { ReleaseStageNotice } from "/snippets/ReleaseStageNotice.jsx"
8+
9+
<ReleaseStageNotice
10+
feature="Auth0 Universal Components"
11+
stage="ea"
12+
terms="true"
13+
contact="Auth0 Support"
14+
/>
1315

1416
Auth0 Universal Components are built on a flexible design system that uses [Tailwind CSS](https://tailwindcss.com/docs/installation/using-vite) and [Radix UI primitives](https://www.radix-ui.com/primitives/docs/overview/introduction). Styling is orchestrated through the [`Auth0ComponentProvider`](/docs/get-started/universal-components/web/auth0-component-provider) to allow you to choose between high-level presets or fine-grained CSS variable overrides.
1517

main/docs/get-started/universal-components/web/web-overview.mdx

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@ description: Learn how to install and configure Auth0 Universal Components for w
44
sidebarTitle: Install and Configure Universal Components
55
---
66

7-
<Warning>
8-
Auth0 Universal Components is currently in Early Access. By using it, you
9-
agree to the applicable Free Trial terms in [Okta's Master Subscription
10-
Agreement](https://www.okta.com/agreements/). To learn more, read [Product
11-
Release Stages](/docs/troubleshoot/product-lifecycle/product-release-stages).
12-
</Warning>
7+
import { ReleaseStageNotice } from "/snippets/ReleaseStageNotice.jsx"
8+
9+
<ReleaseStageNotice
10+
feature="Auth0 Universal Components"
11+
stage="ea"
12+
terms="true"
13+
contact="Auth0 Support"
14+
/>
1315

1416
The Auth0 [Universal Components for Web](https://github.com/auth0/auth0-ui-components) library provides pre-built, embeddable UI for Auth0 identity flows using [React](https://react.dev/) and [Next.js](https://nextjs.org/).
1517

0 commit comments

Comments
 (0)