feat: My Org Components for member management component implemented with live preview and documentations - #1697
Open
grandmaester wants to merge 24 commits into
Open
feat: My Org Components for member management component implemented with live preview and documentations#1697grandmaester wants to merge 24 commits into
grandmaester wants to merge 24 commits into
Conversation
Contributor
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Automations to automatically generate PRs for you. |
Contributor
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Automations to automatically generate PRs for you. |
Contributor
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Automations to automatically generate PRs for you. |
grandmaester
commented
Aug 10, 2026
4 tasks
grandmaester
force-pushed
the
feat/member-mgmt-docs
branch
from
August 12, 2026 16:41
3760f66 to
b826187
Compare
Adds documentation and interactive previews for the two My Organization member components, stacked on the 3.1.2 upgrade branch. Docs (English only for now), following the configure-org-domains pattern: - organization-member-management.mdx - organization-member-detail.mdx Both added to the My Organization nav group, since navigation is manual. Previews: - New mocks for both components, wired through mocks/index.ts, getComponentMock.ts, and routes/index.ts. - Modals are intentionally left live rather than suppressed. These two components essentially are their modal flows (invite, revoke, revoke-and-resend, assign roles, remove from organization), so a preview with the dialogs pinned shut would show almost nothing usable. Each confirm handler mutates in-memory state behind a short delay and then closes, so flows complete without a tenant or any API call. Fixes a latent Spinner fault while here: ComponentLoader.jsx rendered <Spinner> without importing it, resolving out of the calling page's MDX scope. Every consuming page therefore carried an otherwise-unused `import Spinner`, and any disturbance to scope surfaced as a confusing "Expected component `Spinner` to be defined" error that masqueraded as the root cause. The spinner markup is now inlined so the snippet is self-contained, and the seven dead imports are removed. Adds a creating-universal-component-mocks skill documenting the harness wiring, how to verify a View is a runtime (not type-only) export, reading prop contracts from the installed .d.ts, and the version-bump checklist. Note: @auth0/universal-components-react is pinned to a checked-in tarball because published 3.1.2 does not export OrganizationMemberManagementView at runtime (a barrel omission upstream; the detail View is present). Revert to the registry range once a release includes it. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
grandmaester
force-pushed
the
feat/member-mgmt-docs
branch
from
August 13, 2026 08:10
b826187 to
3ede61b
Compare
BcnCarlos
reviewed
Sep 9, 2026
Contributor
Summary
Run on commit 58bb7d4. |
Co-authored-by: Nick Gagliardi <133918568+nick-gagliardi@users.noreply.github.com>
…tribute Profile links
Addresses Nick's review comment on organization-member-detail.mdx and applies the same fix to organization-member-management.mdx to match the markdown-table convention used in build-delegated-admin.mdx.
Add missing intro sentence and fold Default value into the Description column to match configure-org-domains.mdx and other My Organization component docs.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Adds documentation and Live Interactive previews for the two new My Org Member Management components getting released as part of EA release:
WHAT CHANGED:
Docs Updates**
Both pages(MDX) are added to the My Organization group in
main/config/navigation/universal-components.jsonand relevant entries are made ondocs.jsonLive Preview Changes:
Live Preview enabling mocks and routes are added on
universal-componentlibrary. Relevant updates to packages are made.Testing
Then
cd main && mint devand load the two new pages.Checklist
CONTRIBUTING.md.