better-auth-ui 3.2.13 → 3.2.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{auth-hooks-IOEvlYYv.d.cts → auth-hooks-BuniCu20.d.cts} +5 -4
- package/dist/{auth-hooks-IOEvlYYv.d.ts → auth-hooks-BuniCu20.d.ts} +5 -4
- package/dist/{auth-ui-provider-BsH3xJDw.d.ts → auth-ui-provider-B3fzotj0.d.ts} +3 -18
- package/dist/{auth-ui-provider-DhZfncd3.d.cts → auth-ui-provider-DGboLH2y.d.cts} +3 -18
- package/dist/{chunk-CRAHKL2C.cjs → chunk-42PRTYAB.cjs} +11 -1
- package/dist/{chunk-SV64DXGW.cjs → chunk-B24ZS3AS.cjs} +77 -78
- package/dist/{chunk-BDFQSFBU.js → chunk-GFDS6WTO.js} +67 -68
- package/dist/{chunk-MJPOA6PK.js → chunk-YTGCDVH4.js} +10 -0
- package/dist/index.cjs +604 -554
- package/dist/index.d.cts +49 -13
- package/dist/index.d.ts +49 -13
- package/dist/index.js +129 -79
- package/dist/instantdb.d.cts +1 -1
- package/dist/instantdb.d.ts +1 -1
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/dist/server.cjs +10 -10
- package/dist/server.d.cts +4 -2
- package/dist/server.d.ts +4 -2
- package/dist/server.js +1 -1
- package/dist/tanstack.cjs +3 -3
- package/dist/tanstack.d.cts +3 -3
- package/dist/tanstack.d.ts +3 -3
- package/dist/tanstack.js +2 -2
- package/dist/triplit.d.cts +1 -1
- package/dist/triplit.d.ts +1 -1
- package/dist/utils-CaN43O_Z.d.cts +24 -0
- package/dist/utils-yT5zrMzq.d.ts +24 -0
- package/dist/{view-paths-CHSJf5dv.d.ts → view-paths-CIL7NXLh.d.cts} +16 -1
- package/dist/{view-paths-CHSJf5dv.d.cts → view-paths-CIL7NXLh.d.ts} +16 -1
- package/package.json +5 -3
- package/src/components/auth/forms/email-otp-form.tsx +4 -4
- package/src/components/organization/organization-members-card.tsx +3 -1
- package/src/components/settings/account/update-name-card.tsx +2 -0
- package/src/components/settings/account/update-username-card.tsx +2 -0
- package/src/components/settings/account-settings-cards.tsx +8 -6
- package/src/components/settings/security/change-email-card.tsx +2 -0
- package/src/index.ts +25 -1
- package/dist/utils-C5R37WDe.d.cts +0 -3
- package/dist/utils-C5R37WDe.d.ts +0 -3
package/dist/instantdb.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { InstantReactWebDatabase } from '@instantdb/react';
|
|
2
2
|
import { User } from 'better-auth';
|
|
3
|
-
import { S as Session, R as Refetch,
|
|
3
|
+
import { S as Session, R as Refetch, c as AuthHooks } from './auth-hooks-BuniCu20.cjs';
|
|
4
4
|
import { A as AuthMutators } from './auth-mutators-DdqOmQ32.cjs';
|
|
5
5
|
import '@better-fetch/fetch';
|
|
6
6
|
import 'better-auth/plugins/organization';
|
package/dist/instantdb.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { InstantReactWebDatabase } from '@instantdb/react';
|
|
2
2
|
import { User } from 'better-auth';
|
|
3
|
-
import { S as Session, R as Refetch,
|
|
3
|
+
import { S as Session, R as Refetch, c as AuthHooks } from './auth-hooks-BuniCu20.js';
|
|
4
4
|
import { A as AuthMutators } from './auth-mutators-DdqOmQ32.js';
|
|
5
5
|
import '@better-fetch/fetch';
|
|
6
6
|
import 'better-auth/plugins/organization';
|