File tree Expand file tree Collapse file tree 4 files changed +18
-2
lines changed
vue/src/components/ui-components Expand file tree Collapse file tree 4 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @clerk/vue " : patch
3+ ---
4+
5+ Fixed incorrect default prop values passed to ` <GoogleOneTap /> ` component
Original file line number Diff line number Diff line change 1+ ---
2+ " @clerk/nuxt " : patch
3+ ---
4+
5+ Added ` <GoogleOneTap /> ` to auto-imported components.
Original file line number Diff line number Diff line change @@ -141,6 +141,7 @@ export default defineNuxtModule<ModuleOptions>({
141141 // Authentication Components
142142 'SignIn' ,
143143 'SignUp' ,
144+ 'GoogleOneTap' ,
144145 // Unstyled Components
145146 'SignInButton' ,
146147 'SignOutButton' ,
@@ -154,6 +155,8 @@ export default defineNuxtModule<ModuleOptions>({
154155 'OrganizationProfile' ,
155156 'OrganizationSwitcher' ,
156157 'OrganizationList' ,
158+ // Billing Components
159+ 'PricingTable' ,
157160 // Control Components
158161 'ClerkLoaded' ,
159162 'ClerkLoading' ,
@@ -166,7 +169,6 @@ export default defineNuxtModule<ModuleOptions>({
166169 'SignedIn' ,
167170 'SignedOut' ,
168171 'Waitlist' ,
169- 'PricingTable' ,
170172 ] ;
171173 components . forEach ( component => {
172174 void addComponent ( {
Original file line number Diff line number Diff line change @@ -5,7 +5,11 @@ import type { GoogleOneTapProps } from '@clerk/types';
55
66const clerk = useClerk ();
77
8- const props = defineProps <GoogleOneTapProps >();
8+ const props = withDefaults (defineProps <GoogleOneTapProps >(), {
9+ cancelOnTapOutside: true ,
10+ itpSupport: true ,
11+ fedCmSupport: true ,
12+ });
913 </script >
1014
1115<template >
You can’t perform that action at this time.
0 commit comments