Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/reverification-feature-stack.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
13 changes: 9 additions & 4 deletions packages/swingset/src/stories/reverification.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,17 @@ The example pauses briefly in each pending state. Enter `error` in password or b

## Usage

The controller supplies one model containing the active view, transition direction, resolved messages, form state, and event handlers. Spread that model directly into the prop-driven `Reverification` view.
The feature wrapper reads Clerk state and drives `ReverificationView`. Isolated panel stories below are for visual development only.

```tsx
import { Reverification } from '@clerk/ui/mosaic/blocks/reverification';

<Reverification {...reverificationModel} />;
import { Reverification } from '@clerk/ui/mosaic/features/reverification';

<Reverification
isActive
complete={() => {}}
cancel={() => {}}
level='first_factor'
/>;
```

## Panels
Expand Down
Loading
Loading