Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(clerk-expo-passkeys): Introduce Passkeys module for expo #4361

Open
wants to merge 26 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a88fdfe
feat: Introduce Passkeys library for expo
AlexNti Oct 21, 2024
28dd0c6
chore: Add configuration for expo we at example
AlexNti Oct 21, 2024
16bac3f
feat: Attempt to fix auto fill
AlexNti Oct 22, 2024
511daf0
chore: Export all passkeys functions from a passkeys variable
AlexNti Oct 23, 2024
318b689
chore: Remove usePasskeys hook from the example
AlexNti Oct 23, 2024
ba9c796
chore: Fix type error
AlexNti Oct 23, 2024
bd57e15
chore: Refactor passkeys index file
AlexNti Oct 23, 2024
46e8e8e
chore: Refactor app.tsx of passkeys example
AlexNti Oct 23, 2024
3254c02
chore: Add two separate functions for login in example
AlexNti Oct 23, 2024
4facd8a
chore: Simplify code by removing IOS and Android passkeys file
AlexNti Oct 23, 2024
87e7819
chore: Map errors to ClerkWebAuthnError of clerk js
AlexNti Oct 23, 2024
40d10d5
chore: Remove console logs from example
AlexNti Oct 23, 2024
29d54e2
chore: Stop tracking android ios
AlexNti Oct 23, 2024
358d06b
chore: Add to gitignore ios android
AlexNti Oct 23, 2024
4af4473
chore: Update code to use the latest passkeys snapshot
AlexNti Oct 23, 2024
7941338
chore: Remove console.log
AlexNti Oct 23, 2024
6eb8621
chore: Remove unsused types
AlexNti Oct 23, 2024
394c0df
chore: Update to latest snapshot
AlexNti Oct 23, 2024
8b76c5d
chore: package lock updated
AlexNti Oct 23, 2024
1770fd5
chore: Update expo to latest snapshot
AlexNti Oct 24, 2024
58f0929
chore: Move expo-passkeys-module to packages folder
AlexNti Oct 24, 2024
44317f6
chore: Add changesets
AlexNti Oct 24, 2024
99e48d0
chore: Update changeset
AlexNti Oct 24, 2024
0ee28d7
chore(clerk-expo-passkeys): Decrease version
AlexNti Oct 24, 2024
95d388f
chore: Export ClerkWebAuthnError from utils
AlexNti Oct 24, 2024
9367444
attempt to resolve issues with package-lock.json
panteliselef Oct 24, 2024
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
14 changes: 14 additions & 0 deletions .changeset/happy-pants-fetch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
"@clerk/clerk-expo-passkeys": major
---

Introduction of the clerk passkeys module, this module will a allow to handle the creation and retrieval of passkeys, can be integrated as follows:

```tsx
import { ClerkProvider } from '@clerk/clerk-expo';
import { passkeys } from '@clerk/clerk-expo/passkeys';

<ClerkProvider passkeys={passkeys}>
{/* Your app here */}
</ClerkProvider>
```
Empty file added .npmignore
Empty file.
Loading
Loading