@neondatabase/auth 0.1.0-beta.5 → 0.1.0-beta.7
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/README.md +8 -8
- package/dist/{adapter-core-C12KoaiU.d.mts → adapter-core-Bw9mn_AS.d.mts} +95 -508
- package/dist/{adapter-core-BDOw-gBC.mjs → adapter-core-C_NEMs0b.mjs} +2 -4
- package/dist/{better-auth-react-adapter-FnBHa2nr.mjs → better-auth-react-adapter-BbM3jLLv.mjs} +1 -1
- package/dist/{better-auth-react-adapter-BXL48HIU.d.mts → better-auth-react-adapter-JoscqoDc.d.mts} +88 -88
- package/dist/better-auth-types-CE4hLv9E.d.mts +9 -0
- package/dist/chunk-5DLVHPZS-Bxj7snpZ-DoVNlsyk.mjs +533 -0
- package/dist/index.d.mts +3 -3
- package/dist/index.mjs +1 -4
- package/dist/{neon-auth-C9XTFffv.mjs → neon-auth-DdlToh7_.mjs} +1 -1
- package/dist/next/index.d.mts +18 -187
- package/dist/next/index.mjs +2 -4
- package/dist/react/adapters/index.d.mts +3 -3
- package/dist/react/adapters/index.mjs +1 -3
- package/dist/react/index.d.mts +4 -4
- package/dist/react/index.mjs +4 -94
- package/dist/react/ui/index.d.mts +1 -1
- package/dist/react/ui/index.mjs +3 -91
- package/dist/react/ui/server.mjs +1 -1
- package/dist/{supabase-adapter-ggmqWgPe.mjs → supabase-adapter-CAqbpOC7.mjs} +45 -123
- package/dist/{supabase-adapter-crabDnl2.d.mts → supabase-adapter-Clxlqg1x.d.mts} +1 -2
- package/dist/types/index.d.mts +8 -0
- package/dist/types/index.mjs +3 -0
- package/dist/ui/css.css +1 -1
- package/dist/ui/tailwind.css +0 -3
- package/dist/ui/theme.css +125 -49
- package/dist/ui-aMoA-9nq.mjs +9449 -0
- package/dist/vanilla/adapters/index.d.mts +3 -3
- package/dist/vanilla/adapters/index.mjs +1 -3
- package/dist/vanilla/index.d.mts +3 -3
- package/dist/vanilla/index.mjs +1 -3
- package/package.json +7 -3
- package/dist/ui-BQAaHqx4.mjs +0 -386
- /package/dist/{adapters-CivF9wql.mjs → adapters-D0mxG3F-.mjs} +0 -0
- /package/dist/{adapters-Dkx0zoMR.mjs → adapters-Df6Dd3KK.mjs} +0 -0
- /package/dist/{index-DuDD6cIY.d.mts → index-BXlAjlSt.d.mts} +0 -0
- /package/dist/{index-C-svZlpj.d.mts → index-ClXLQ1fw.d.mts} +0 -0
- /package/dist/{index-UW23fDSn.d.mts → index-DCQ5Y2ED.d.mts} +0 -0
package/dist/next/index.d.mts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { n as BetterAuthSession, r as BetterAuthUser } from "../better-auth-types-CE4hLv9E.mjs";
|
|
1
2
|
import * as better_auth_client0 from "better-auth/client";
|
|
2
3
|
import * as better_auth_client_plugins0 from "better-auth/client/plugins";
|
|
3
4
|
import * as jose0 from "jose";
|
|
@@ -5,7 +6,6 @@ import { NextRequest, NextResponse } from "next/server";
|
|
|
5
6
|
import * as better_auth0 from "better-auth";
|
|
6
7
|
import * as _better_fetch_fetch0 from "@better-fetch/fetch";
|
|
7
8
|
import * as nanostores0 from "nanostores";
|
|
8
|
-
import { Session, User } from "better-auth/types";
|
|
9
9
|
|
|
10
10
|
//#region src/next/handler/index.d.ts
|
|
11
11
|
type Params = {
|
|
@@ -81,10 +81,6 @@ declare function neonAuthMiddleware({
|
|
|
81
81
|
loginUrl
|
|
82
82
|
}: NeonAuthMiddlewareOptions): (request: NextRequest) => Promise<NextResponse<unknown>>;
|
|
83
83
|
//#endregion
|
|
84
|
-
//#region src/core/better-auth-types.d.ts
|
|
85
|
-
type BetterAuthSession = Session;
|
|
86
|
-
type BetterAuthUser = User;
|
|
87
|
-
//#endregion
|
|
88
84
|
//#region src/next/auth/session.d.ts
|
|
89
85
|
type SessionData = {
|
|
90
86
|
session: BetterAuthSession;
|
|
@@ -402,15 +398,7 @@ declare function createAuthClient(): {
|
|
|
402
398
|
ipAddress?: string | null | undefined;
|
|
403
399
|
userAgent?: string | null | undefined;
|
|
404
400
|
};
|
|
405
|
-
user:
|
|
406
|
-
id: string;
|
|
407
|
-
createdAt: Date;
|
|
408
|
-
updatedAt: Date;
|
|
409
|
-
email: string;
|
|
410
|
-
emailVerified: boolean;
|
|
411
|
-
name: string;
|
|
412
|
-
image?: string | null | undefined;
|
|
413
|
-
};
|
|
401
|
+
user: better_auth_client_plugins0.UserWithRole;
|
|
414
402
|
}, {
|
|
415
403
|
code?: string | undefined;
|
|
416
404
|
message?: string | undefined;
|
|
@@ -1041,7 +1029,7 @@ declare function createAuthClient(): {
|
|
|
1041
1029
|
email?: string | undefined;
|
|
1042
1030
|
} | undefined;
|
|
1043
1031
|
fetchOptions?: FetchOptions | undefined;
|
|
1044
|
-
}> | undefined, data_1?: FetchOptions | undefined) => Promise<_better_fetch_fetch0.BetterFetchResponse<{
|
|
1032
|
+
}> | undefined, data_1?: FetchOptions | undefined) => Promise<_better_fetch_fetch0.BetterFetchResponse<(Omit<{
|
|
1045
1033
|
id: string;
|
|
1046
1034
|
organizationId: string;
|
|
1047
1035
|
email: string;
|
|
@@ -1050,7 +1038,18 @@ declare function createAuthClient(): {
|
|
|
1050
1038
|
inviterId: string;
|
|
1051
1039
|
expiresAt: Date;
|
|
1052
1040
|
createdAt: Date;
|
|
1053
|
-
}
|
|
1041
|
+
} & {
|
|
1042
|
+
organization: {
|
|
1043
|
+
id: string;
|
|
1044
|
+
name: string;
|
|
1045
|
+
slug: string;
|
|
1046
|
+
createdAt: Date;
|
|
1047
|
+
logo?: string | null | undefined | undefined;
|
|
1048
|
+
metadata?: any;
|
|
1049
|
+
};
|
|
1050
|
+
}, "organization"> & {
|
|
1051
|
+
organizationName: string;
|
|
1052
|
+
})[], {
|
|
1054
1053
|
code?: string | undefined;
|
|
1055
1054
|
message?: string | undefined;
|
|
1056
1055
|
}, FetchOptions["throw"] extends true ? true : false>>;
|
|
@@ -1334,156 +1333,6 @@ declare function createAuthClient(): {
|
|
|
1334
1333
|
message?: string | undefined;
|
|
1335
1334
|
}, FetchOptions["throw"] extends true ? true : false>>;
|
|
1336
1335
|
};
|
|
1337
|
-
} & {
|
|
1338
|
-
signIn: {
|
|
1339
|
-
phoneNumber: <FetchOptions extends better_auth0.ClientFetchOption<Partial<{
|
|
1340
|
-
phoneNumber: string;
|
|
1341
|
-
password: string;
|
|
1342
|
-
rememberMe?: boolean | undefined;
|
|
1343
|
-
}> & Record<string, any>, Partial<Record<string, any>> & Record<string, any>, Record<string, any> | undefined>>(data_0: better_auth0.Prettify<{
|
|
1344
|
-
phoneNumber: string;
|
|
1345
|
-
password: string;
|
|
1346
|
-
rememberMe?: boolean | undefined;
|
|
1347
|
-
} & {
|
|
1348
|
-
fetchOptions?: FetchOptions | undefined;
|
|
1349
|
-
}>, data_1?: FetchOptions | undefined) => Promise<_better_fetch_fetch0.BetterFetchResponse<{
|
|
1350
|
-
token: string;
|
|
1351
|
-
user: better_auth_client_plugins0.UserWithPhoneNumber;
|
|
1352
|
-
}, {
|
|
1353
|
-
code?: string | undefined;
|
|
1354
|
-
message?: string | undefined;
|
|
1355
|
-
}, FetchOptions["throw"] extends true ? true : false>>;
|
|
1356
|
-
};
|
|
1357
|
-
} & {
|
|
1358
|
-
phoneNumber: {
|
|
1359
|
-
sendOtp: <FetchOptions extends better_auth0.ClientFetchOption<Partial<{
|
|
1360
|
-
phoneNumber: string;
|
|
1361
|
-
}> & Record<string, any>, Partial<Record<string, any>> & Record<string, any>, Record<string, any> | undefined>>(data_0: better_auth0.Prettify<{
|
|
1362
|
-
phoneNumber: string;
|
|
1363
|
-
} & {
|
|
1364
|
-
fetchOptions?: FetchOptions | undefined;
|
|
1365
|
-
}>, data_1?: FetchOptions | undefined) => Promise<_better_fetch_fetch0.BetterFetchResponse<{
|
|
1366
|
-
message: string;
|
|
1367
|
-
}, {
|
|
1368
|
-
code?: string | undefined;
|
|
1369
|
-
message?: string | undefined;
|
|
1370
|
-
}, FetchOptions["throw"] extends true ? true : false>>;
|
|
1371
|
-
};
|
|
1372
|
-
} & {
|
|
1373
|
-
phoneNumber: {
|
|
1374
|
-
verify: <FetchOptions extends better_auth0.ClientFetchOption<Partial<{
|
|
1375
|
-
phoneNumber: string;
|
|
1376
|
-
code: string;
|
|
1377
|
-
disableSession?: boolean | undefined;
|
|
1378
|
-
updatePhoneNumber?: boolean | undefined;
|
|
1379
|
-
}> & Record<string, any>, Partial<Record<string, any>> & Record<string, any>, Record<string, any> | undefined>>(data_0: better_auth0.Prettify<{
|
|
1380
|
-
phoneNumber: string;
|
|
1381
|
-
code: string;
|
|
1382
|
-
disableSession?: boolean | undefined;
|
|
1383
|
-
updatePhoneNumber?: boolean | undefined;
|
|
1384
|
-
} & {
|
|
1385
|
-
fetchOptions?: FetchOptions | undefined;
|
|
1386
|
-
}>, data_1?: FetchOptions | undefined) => Promise<_better_fetch_fetch0.BetterFetchResponse<NonNullable<{
|
|
1387
|
-
status: boolean;
|
|
1388
|
-
token: string;
|
|
1389
|
-
user: better_auth_client_plugins0.UserWithPhoneNumber;
|
|
1390
|
-
} | {
|
|
1391
|
-
status: boolean;
|
|
1392
|
-
token: null;
|
|
1393
|
-
user: better_auth_client_plugins0.UserWithPhoneNumber;
|
|
1394
|
-
}>, {
|
|
1395
|
-
code?: string | undefined;
|
|
1396
|
-
message?: string | undefined;
|
|
1397
|
-
}, FetchOptions["throw"] extends true ? true : false>>;
|
|
1398
|
-
};
|
|
1399
|
-
} & {
|
|
1400
|
-
phoneNumber: {
|
|
1401
|
-
requestPasswordReset: <FetchOptions extends better_auth0.ClientFetchOption<Partial<{
|
|
1402
|
-
phoneNumber: string;
|
|
1403
|
-
}> & Record<string, any>, Partial<Record<string, any>> & Record<string, any>, Record<string, any> | undefined>>(data_0: better_auth0.Prettify<{
|
|
1404
|
-
phoneNumber: string;
|
|
1405
|
-
} & {
|
|
1406
|
-
fetchOptions?: FetchOptions | undefined;
|
|
1407
|
-
}>, data_1?: FetchOptions | undefined) => Promise<_better_fetch_fetch0.BetterFetchResponse<{
|
|
1408
|
-
status: boolean;
|
|
1409
|
-
}, {
|
|
1410
|
-
code?: string | undefined;
|
|
1411
|
-
message?: string | undefined;
|
|
1412
|
-
}, FetchOptions["throw"] extends true ? true : false>>;
|
|
1413
|
-
};
|
|
1414
|
-
} & {
|
|
1415
|
-
phoneNumber: {
|
|
1416
|
-
resetPassword: <FetchOptions extends better_auth0.ClientFetchOption<Partial<{
|
|
1417
|
-
otp: string;
|
|
1418
|
-
phoneNumber: string;
|
|
1419
|
-
newPassword: string;
|
|
1420
|
-
}> & Record<string, any>, Partial<Record<string, any>> & Record<string, any>, Record<string, any> | undefined>>(data_0: better_auth0.Prettify<{
|
|
1421
|
-
otp: string;
|
|
1422
|
-
phoneNumber: string;
|
|
1423
|
-
newPassword: string;
|
|
1424
|
-
} & {
|
|
1425
|
-
fetchOptions?: FetchOptions | undefined;
|
|
1426
|
-
}>, data_1?: FetchOptions | undefined) => Promise<_better_fetch_fetch0.BetterFetchResponse<{
|
|
1427
|
-
status: boolean;
|
|
1428
|
-
}, {
|
|
1429
|
-
code?: string | undefined;
|
|
1430
|
-
message?: string | undefined;
|
|
1431
|
-
}, FetchOptions["throw"] extends true ? true : false>>;
|
|
1432
|
-
};
|
|
1433
|
-
} & {
|
|
1434
|
-
signIn: {
|
|
1435
|
-
magicLink: <FetchOptions extends better_auth0.ClientFetchOption<Partial<{
|
|
1436
|
-
email: string;
|
|
1437
|
-
name?: string | undefined;
|
|
1438
|
-
callbackURL?: string | undefined;
|
|
1439
|
-
newUserCallbackURL?: string | undefined;
|
|
1440
|
-
errorCallbackURL?: string | undefined;
|
|
1441
|
-
}> & Record<string, any>, Partial<Record<string, any>> & Record<string, any>, Record<string, any> | undefined>>(data_0: better_auth0.Prettify<{
|
|
1442
|
-
email: string;
|
|
1443
|
-
name?: string | undefined;
|
|
1444
|
-
callbackURL?: string | undefined;
|
|
1445
|
-
newUserCallbackURL?: string | undefined;
|
|
1446
|
-
errorCallbackURL?: string | undefined;
|
|
1447
|
-
} & {
|
|
1448
|
-
fetchOptions?: FetchOptions | undefined;
|
|
1449
|
-
}>, data_1?: FetchOptions | undefined) => Promise<_better_fetch_fetch0.BetterFetchResponse<{
|
|
1450
|
-
status: boolean;
|
|
1451
|
-
}, {
|
|
1452
|
-
code?: string | undefined;
|
|
1453
|
-
message?: string | undefined;
|
|
1454
|
-
}, FetchOptions["throw"] extends true ? true : false>>;
|
|
1455
|
-
};
|
|
1456
|
-
} & {
|
|
1457
|
-
magicLink: {
|
|
1458
|
-
verify: <FetchOptions extends better_auth0.ClientFetchOption<never, Partial<{
|
|
1459
|
-
token: string;
|
|
1460
|
-
callbackURL?: string | undefined;
|
|
1461
|
-
errorCallbackURL?: string | undefined;
|
|
1462
|
-
newUserCallbackURL?: string | undefined;
|
|
1463
|
-
}> & Record<string, any>, Record<string, any> | undefined>>(data_0: better_auth0.Prettify<{
|
|
1464
|
-
query: {
|
|
1465
|
-
token: string;
|
|
1466
|
-
callbackURL?: string | undefined;
|
|
1467
|
-
errorCallbackURL?: string | undefined;
|
|
1468
|
-
newUserCallbackURL?: string | undefined;
|
|
1469
|
-
};
|
|
1470
|
-
fetchOptions?: FetchOptions | undefined;
|
|
1471
|
-
}>, data_1?: FetchOptions | undefined) => Promise<_better_fetch_fetch0.BetterFetchResponse<{
|
|
1472
|
-
token: string;
|
|
1473
|
-
user: {
|
|
1474
|
-
id: string;
|
|
1475
|
-
email: string;
|
|
1476
|
-
emailVerified: boolean;
|
|
1477
|
-
name: string;
|
|
1478
|
-
image: string | null | undefined;
|
|
1479
|
-
createdAt: Date;
|
|
1480
|
-
updatedAt: Date;
|
|
1481
|
-
};
|
|
1482
|
-
}, {
|
|
1483
|
-
code?: string | undefined;
|
|
1484
|
-
message?: string | undefined;
|
|
1485
|
-
}, FetchOptions["throw"] extends true ? true : false>>;
|
|
1486
|
-
};
|
|
1487
1336
|
} & {
|
|
1488
1337
|
signIn: {
|
|
1489
1338
|
social: <FetchOptions extends better_auth0.ClientFetchOption<Partial<{
|
|
@@ -1569,9 +1418,7 @@ declare function createAuthClient(): {
|
|
|
1569
1418
|
image?: string | undefined;
|
|
1570
1419
|
callbackURL?: string | undefined;
|
|
1571
1420
|
fetchOptions?: FetchOptions | undefined;
|
|
1572
|
-
} & {} & {} & {} & {}
|
|
1573
|
-
phoneNumber?: string | null | undefined;
|
|
1574
|
-
}>, data_1?: FetchOptions | undefined) => Promise<_better_fetch_fetch0.BetterFetchResponse<NonNullable<{
|
|
1421
|
+
} & {} & {} & {} & {}>, data_1?: FetchOptions | undefined) => Promise<_better_fetch_fetch0.BetterFetchResponse<NonNullable<{
|
|
1575
1422
|
token: null;
|
|
1576
1423
|
user: {
|
|
1577
1424
|
id: string;
|
|
@@ -1727,9 +1574,7 @@ declare function createAuthClient(): {
|
|
|
1727
1574
|
image?: (string | null) | undefined;
|
|
1728
1575
|
name?: string | undefined;
|
|
1729
1576
|
fetchOptions?: FetchOptions | undefined;
|
|
1730
|
-
} & Partial<{} & {} & {} & {}
|
|
1731
|
-
phoneNumber?: string | null | undefined;
|
|
1732
|
-
}>> | undefined, data_1?: FetchOptions | undefined) => Promise<_better_fetch_fetch0.BetterFetchResponse<{
|
|
1577
|
+
} & Partial<{} & {} & {} & {}>> | undefined, data_1?: FetchOptions | undefined) => Promise<_better_fetch_fetch0.BetterFetchResponse<{
|
|
1733
1578
|
status: boolean;
|
|
1734
1579
|
}, {
|
|
1735
1580
|
code?: string | undefined;
|
|
@@ -2008,8 +1853,6 @@ declare function createAuthClient(): {
|
|
|
2008
1853
|
banReason?: string | null | undefined;
|
|
2009
1854
|
banExpires?: Date | null | undefined;
|
|
2010
1855
|
isAnonymous: boolean | null | undefined;
|
|
2011
|
-
phoneNumber?: string | null | undefined;
|
|
2012
|
-
phoneNumberVerified?: boolean | null | undefined;
|
|
2013
1856
|
};
|
|
2014
1857
|
session: {
|
|
2015
1858
|
id: string;
|
|
@@ -2169,8 +2012,6 @@ declare function createAuthClient(): {
|
|
|
2169
2012
|
banReason?: string | null | undefined;
|
|
2170
2013
|
banExpires?: Date | null | undefined;
|
|
2171
2014
|
isAnonymous: boolean | null | undefined;
|
|
2172
|
-
phoneNumber?: string | null | undefined;
|
|
2173
|
-
phoneNumberVerified?: boolean | null | undefined;
|
|
2174
2015
|
};
|
|
2175
2016
|
session: {
|
|
2176
2017
|
id: string;
|
|
@@ -2207,8 +2048,6 @@ declare function createAuthClient(): {
|
|
|
2207
2048
|
banReason?: string | null | undefined;
|
|
2208
2049
|
banExpires?: Date | null | undefined;
|
|
2209
2050
|
isAnonymous: boolean | null | undefined;
|
|
2210
|
-
phoneNumber?: string | null | undefined;
|
|
2211
|
-
phoneNumberVerified?: boolean | null | undefined;
|
|
2212
2051
|
};
|
|
2213
2052
|
session: {
|
|
2214
2053
|
id: string;
|
|
@@ -2315,6 +2154,7 @@ declare function createAuthClient(): {
|
|
|
2315
2154
|
readonly YOU_ARE_NOT_ALLOWED_TO_UPDATE_USERS: "You are not allowed to update users";
|
|
2316
2155
|
readonly YOU_CANNOT_REMOVE_YOURSELF: "You cannot remove yourself";
|
|
2317
2156
|
readonly YOU_ARE_NOT_ALLOWED_TO_SET_NON_EXISTENT_VALUE: "You are not allowed to set a non-existent role value";
|
|
2157
|
+
readonly YOU_CANNOT_IMPERSONATE_ADMINS: "You cannot impersonate admins";
|
|
2318
2158
|
readonly YOU_ARE_NOT_ALLOWED_TO_CREATE_A_NEW_ORGANIZATION: "You are not allowed to create a new organization";
|
|
2319
2159
|
readonly YOU_HAVE_REACHED_THE_MAXIMUM_NUMBER_OF_ORGANIZATIONS: "You have reached the maximum number of organizations";
|
|
2320
2160
|
readonly ORGANIZATION_ALREADY_EXISTS: "Organization already exists";
|
|
@@ -2377,15 +2217,6 @@ declare function createAuthClient(): {
|
|
|
2377
2217
|
readonly INVALID_EMAIL_FORMAT: "Email was not generated in a valid format";
|
|
2378
2218
|
readonly COULD_NOT_CREATE_SESSION: "Could not create session";
|
|
2379
2219
|
readonly ANONYMOUS_USERS_CANNOT_SIGN_IN_AGAIN_ANONYMOUSLY: "Anonymous users cannot sign in again anonymously";
|
|
2380
|
-
readonly INVALID_PHONE_NUMBER: "Invalid phone number";
|
|
2381
|
-
readonly PHONE_NUMBER_EXIST: "Phone number already exists";
|
|
2382
|
-
readonly PHONE_NUMBER_NOT_EXIST: "phone number isn't registered";
|
|
2383
|
-
readonly INVALID_PHONE_NUMBER_OR_PASSWORD: "Invalid phone number or password";
|
|
2384
|
-
readonly UNEXPECTED_ERROR: "Unexpected error";
|
|
2385
|
-
readonly OTP_NOT_FOUND: "OTP not found";
|
|
2386
|
-
readonly PHONE_NUMBER_NOT_VERIFIED: "Phone number not verified";
|
|
2387
|
-
readonly PHONE_NUMBER_CANNOT_BE_UPDATED: "Phone number cannot be updated";
|
|
2388
|
-
readonly SEND_OTP_NOT_IMPLEMENTED: "sendOTP not implemented";
|
|
2389
2220
|
readonly USER_NOT_FOUND: "User not found";
|
|
2390
2221
|
readonly FAILED_TO_CREATE_SESSION: "Failed to create session";
|
|
2391
2222
|
readonly FAILED_TO_UPDATE_USER: "Failed to update user";
|
package/dist/next/index.mjs
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import "../
|
|
2
|
-
import { t as
|
|
3
|
-
import "../supabase-adapter-ggmqWgPe.mjs";
|
|
4
|
-
import { t as createAuthClient$1 } from "../neon-auth-C9XTFffv.mjs";
|
|
1
|
+
import { t as BetterAuthReactAdapter } from "../better-auth-react-adapter-BbM3jLLv.mjs";
|
|
2
|
+
import { t as createAuthClient$1 } from "../neon-auth-DdlToh7_.mjs";
|
|
5
3
|
import { parseCookies, parseSetCookieHeader } from "better-auth/cookies";
|
|
6
4
|
import { NextRequest, NextResponse } from "next/server";
|
|
7
5
|
import { cookies, headers } from "next/headers";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "../../adapter-core-
|
|
2
|
-
import { i as BetterAuthReactAdapterOptions, n as BetterAuthReactAdapterBuilder, r as BetterAuthReactAdapterInstance, t as BetterAuthReactAdapter } from "../../better-auth-react-adapter-
|
|
3
|
-
import "../../index-
|
|
1
|
+
import "../../adapter-core-Bw9mn_AS.mjs";
|
|
2
|
+
import { i as BetterAuthReactAdapterOptions, n as BetterAuthReactAdapterBuilder, r as BetterAuthReactAdapterInstance, t as BetterAuthReactAdapter } from "../../better-auth-react-adapter-JoscqoDc.mjs";
|
|
3
|
+
import "../../index-DCQ5Y2ED.mjs";
|
|
4
4
|
export { BetterAuthReactAdapter, BetterAuthReactAdapterBuilder, BetterAuthReactAdapterInstance, BetterAuthReactAdapterOptions };
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import "../../
|
|
2
|
-
import { t as BetterAuthReactAdapter } from "../../better-auth-react-adapter-FnBHa2nr.mjs";
|
|
3
|
-
import "../../adapters-Dkx0zoMR.mjs";
|
|
1
|
+
import { t as BetterAuthReactAdapter } from "../../better-auth-react-adapter-BbM3jLLv.mjs";
|
|
4
2
|
|
|
5
3
|
export { BetterAuthReactAdapter };
|
package/dist/react/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import "../adapter-core-
|
|
2
|
-
import { i as BetterAuthReactAdapterOptions, n as BetterAuthReactAdapterBuilder, r as BetterAuthReactAdapterInstance, t as BetterAuthReactAdapter } from "../better-auth-react-adapter-
|
|
3
|
-
import "../index-
|
|
4
|
-
import { $ as MagicLinkFormProps, $t as SignUpFormProps, A as ChangePasswordCard, An as UserViewClassNames, At as PasswordInput, B as DropboxIcon, Bn as socialProviders, Bt as ResetPasswordFormProps, C as AuthUIProviderProps, Cn as UserAvatarClassNames, Ct as OrganizationViewPageProps, D as AuthViewPaths, Dn as UserButtonProps, Dt as OrganizationsCard, E as AuthViewPath, En as UserButtonClassNames, Et as OrganizationViewProps, F as CreateTeamDialogProps, Fn as accountViewPaths, Ft as RecoverAccountFormProps, G as GitLabIcon, Gt as SettingsCard, H as ForgotPasswordForm, Hn as useAuthenticate, Ht as SecuritySettingsCards, I as DeleteAccountCard, In as authLocalization, It as RedditIcon, J as InputFieldSkeleton, Jt as SettingsCellSkeleton, K as GoogleIcon, Kt as SettingsCardClassNames, L as DeleteAccountCardProps, Ln as authViewPaths, Lt as RedirectToSignIn, M as CreateOrganizationDialog, Mn as VKIcon, Mt as ProvidersCard, N as CreateOrganizationDialogProps, Nn as XIcon, Nt as ProvidersCardProps, O as AuthViewProps, On as UserInvitationsCard, Ot as PasskeysCard, P as CreateTeamDialog, Pn as ZoomIcon, Pt as RecoverAccountForm, Q as MagicLinkForm, Qt as SignUpForm, R as DeleteOrganizationCard, Rn as getViewByPath, Rt as RedirectToSignUp, S as AuthUIProvider, Sn as UserAvatar, St as OrganizationViewClassNames, T as AuthViewClassNames, Tn as UserButton, Tt as OrganizationViewPaths, U as ForgotPasswordFormProps, Un as useCurrentOrganization, Ut as SessionsCard, V as FacebookIcon, Vn as useAuthData, Vt as RobloxIcon, W as GitHubIcon, Wn as useTheme, Wt as SessionsCardProps, X as LinearIcon, Xt as SignInFormProps, Y as KickIcon, Yt as SignInForm, Z as LinkedInIcon, Zt as SignOut, _ as AuthLoading, _n as UpdateAvatarCardProps, _t as OrganizationSlugCardProps, a as AccountViewPath, an as TeamCell, at as OrganizationInvitationsCard, b as AuthUIContext, bn as UpdateNameCard, bt as OrganizationSwitcherProps, c as AccountsCard, cn as TeamOptionsContext, ct as OrganizationLogoCardProps, d as AppleIcon, dn as TwitchIcon, dt as OrganizationMembersCard, en as SignedIn, et as MicrosoftIcon, f as AuthCallback, fn as TwoFactorCard, ft as OrganizationNameCard, g as AuthHooks, gn as UpdateAvatarCard, gt as OrganizationSlugCard, h as AuthFormProps, hn as TwoFactorFormProps, ht as OrganizationSettingsCardsProps, i as AccountView, in as Team, it as OrganizationCellView, j as ChangePasswordCardProps, jn as UserViewProps, jt as Provider, k as ChangeEmailCard, kn as UserView, kt as PasskeysCardProps, l as AccountsCardProps, ln as TeamsCard, lt as OrganizationLogoClassNames, m as AuthFormClassNames, mn as TwoFactorForm, mt as OrganizationSettingsCards, n as AcceptInvitationCardProps, nn as SlackIcon, nt as NeonAuthUIProviderProps, o as AccountViewPaths, on as TeamCellProps, ot as OrganizationLogo, p as AuthForm, pn as TwoFactorCardProps, pt as OrganizationNameCardProps, q as HuggingFaceIcon, qt as SettingsCardProps, r as AccountSettingsCards, rn as SpotifyIcon, rt as NotionIcon, s as AccountViewProps, sn as TeamOptions, st as OrganizationLogoCard, t as AcceptInvitationCard, tn as SignedOut, tt as NeonAuthUIProvider, u as ApiKeysCardProps, un as TikTokIcon, ut as OrganizationLogoProps, v as AuthLocalization, vn as UpdateFieldCard, vt as OrganizationSwitcher, w as AuthView, wn as UserAvatarProps, wt as OrganizationViewPath, x as AuthUIContextType, xn as UpdateUsernameCard, xt as OrganizationView, y as AuthMutators, yn as UpdateFieldCardProps, yt as OrganizationSwitcherClassNames, z as DiscordIcon, zn as organizationViewPaths, zt as ResetPasswordForm } from "../index-
|
|
1
|
+
import "../adapter-core-Bw9mn_AS.mjs";
|
|
2
|
+
import { i as BetterAuthReactAdapterOptions, n as BetterAuthReactAdapterBuilder, r as BetterAuthReactAdapterInstance, t as BetterAuthReactAdapter } from "../better-auth-react-adapter-JoscqoDc.mjs";
|
|
3
|
+
import "../index-DCQ5Y2ED.mjs";
|
|
4
|
+
import { $ as MagicLinkFormProps, $t as SignUpFormProps, A as ChangePasswordCard, An as UserViewClassNames, At as PasswordInput, B as DropboxIcon, Bn as socialProviders, Bt as ResetPasswordFormProps, C as AuthUIProviderProps, Cn as UserAvatarClassNames, Ct as OrganizationViewPageProps, D as AuthViewPaths, Dn as UserButtonProps, Dt as OrganizationsCard, E as AuthViewPath, En as UserButtonClassNames, Et as OrganizationViewProps, F as CreateTeamDialogProps, Fn as accountViewPaths, Ft as RecoverAccountFormProps, G as GitLabIcon, Gt as SettingsCard, H as ForgotPasswordForm, Hn as useAuthenticate, Ht as SecuritySettingsCards, I as DeleteAccountCard, In as authLocalization, It as RedditIcon, J as InputFieldSkeleton, Jt as SettingsCellSkeleton, K as GoogleIcon, Kt as SettingsCardClassNames, L as DeleteAccountCardProps, Ln as authViewPaths, Lt as RedirectToSignIn, M as CreateOrganizationDialog, Mn as VKIcon, Mt as ProvidersCard, N as CreateOrganizationDialogProps, Nn as XIcon, Nt as ProvidersCardProps, O as AuthViewProps, On as UserInvitationsCard, Ot as PasskeysCard, P as CreateTeamDialog, Pn as ZoomIcon, Pt as RecoverAccountForm, Q as MagicLinkForm, Qt as SignUpForm, R as DeleteOrganizationCard, Rn as getViewByPath, Rt as RedirectToSignUp, S as AuthUIProvider, Sn as UserAvatar, St as OrganizationViewClassNames, T as AuthViewClassNames, Tn as UserButton, Tt as OrganizationViewPaths, U as ForgotPasswordFormProps, Un as useCurrentOrganization, Ut as SessionsCard, V as FacebookIcon, Vn as useAuthData, Vt as RobloxIcon, W as GitHubIcon, Wn as useTheme, Wt as SessionsCardProps, X as LinearIcon, Xt as SignInFormProps, Y as KickIcon, Yt as SignInForm, Z as LinkedInIcon, Zt as SignOut, _ as AuthLoading, _n as UpdateAvatarCardProps, _t as OrganizationSlugCardProps, a as AccountViewPath, an as TeamCell, at as OrganizationInvitationsCard, b as AuthUIContext, bn as UpdateNameCard, bt as OrganizationSwitcherProps, c as AccountsCard, cn as TeamOptionsContext, ct as OrganizationLogoCardProps, d as AppleIcon, dn as TwitchIcon, dt as OrganizationMembersCard, en as SignedIn, et as MicrosoftIcon, f as AuthCallback, fn as TwoFactorCard, ft as OrganizationNameCard, g as AuthHooks, gn as UpdateAvatarCard, gt as OrganizationSlugCard, h as AuthFormProps, hn as TwoFactorFormProps, ht as OrganizationSettingsCardsProps, i as AccountView, in as Team, it as OrganizationCellView, j as ChangePasswordCardProps, jn as UserViewProps, jt as Provider, k as ChangeEmailCard, kn as UserView, kt as PasskeysCardProps, l as AccountsCardProps, ln as TeamsCard, lt as OrganizationLogoClassNames, m as AuthFormClassNames, mn as TwoFactorForm, mt as OrganizationSettingsCards, n as AcceptInvitationCardProps, nn as SlackIcon, nt as NeonAuthUIProviderProps, o as AccountViewPaths, on as TeamCellProps, ot as OrganizationLogo, p as AuthForm, pn as TwoFactorCardProps, pt as OrganizationNameCardProps, q as HuggingFaceIcon, qt as SettingsCardProps, r as AccountSettingsCards, rn as SpotifyIcon, rt as NotionIcon, s as AccountViewProps, sn as TeamOptions, st as OrganizationLogoCard, t as AcceptInvitationCard, tn as SignedOut, tt as NeonAuthUIProvider, u as ApiKeysCardProps, un as TikTokIcon, ut as OrganizationLogoProps, v as AuthLocalization, vn as UpdateFieldCard, vt as OrganizationSwitcher, w as AuthView, wn as UserAvatarProps, wt as OrganizationViewPath, x as AuthUIContextType, xn as UpdateUsernameCard, xt as OrganizationView, y as AuthMutators, yn as UpdateFieldCardProps, yt as OrganizationSwitcherClassNames, z as DiscordIcon, zn as organizationViewPaths, zt as ResetPasswordForm } from "../index-BXlAjlSt.mjs";
|
|
5
5
|
export { AcceptInvitationCard, AcceptInvitationCardProps, AccountSettingsCards, AccountView, AccountViewPath, AccountViewPaths, AccountViewProps, AccountsCard, AccountsCardProps, ApiKeysCardProps, AppleIcon, AuthCallback, AuthForm, AuthFormClassNames, AuthFormProps, AuthHooks, AuthLoading, AuthLocalization, AuthMutators, AuthUIContext, AuthUIContextType, AuthUIProvider, AuthUIProviderProps, AuthView, AuthViewClassNames, AuthViewPath, AuthViewPaths, AuthViewProps, BetterAuthReactAdapter, BetterAuthReactAdapterBuilder, BetterAuthReactAdapterInstance, BetterAuthReactAdapterOptions, ChangeEmailCard, ChangePasswordCard, ChangePasswordCardProps, CreateOrganizationDialog, CreateOrganizationDialogProps, CreateTeamDialog, CreateTeamDialogProps, DeleteAccountCard, DeleteAccountCardProps, DeleteOrganizationCard, DiscordIcon, DropboxIcon, FacebookIcon, ForgotPasswordForm, ForgotPasswordFormProps, GitHubIcon, GitLabIcon, GoogleIcon, HuggingFaceIcon, InputFieldSkeleton, KickIcon, LinearIcon, LinkedInIcon, MagicLinkForm, MagicLinkFormProps, MicrosoftIcon, NeonAuthUIProvider, NeonAuthUIProviderProps, NotionIcon, OrganizationCellView, OrganizationInvitationsCard, OrganizationLogo, OrganizationLogoCard, OrganizationLogoCardProps, OrganizationLogoClassNames, OrganizationLogoProps, OrganizationMembersCard, OrganizationNameCard, OrganizationNameCardProps, OrganizationSettingsCards, OrganizationSettingsCardsProps, OrganizationSlugCard, OrganizationSlugCardProps, OrganizationSwitcher, OrganizationSwitcherClassNames, OrganizationSwitcherProps, OrganizationView, OrganizationViewClassNames, OrganizationViewPageProps, OrganizationViewPath, OrganizationViewPaths, OrganizationViewProps, OrganizationsCard, PasskeysCard, PasskeysCardProps, PasswordInput, Provider, ProvidersCard, ProvidersCardProps, RecoverAccountForm, RecoverAccountFormProps, RedditIcon, RedirectToSignIn, RedirectToSignUp, ResetPasswordForm, ResetPasswordFormProps, RobloxIcon, SecuritySettingsCards, SessionsCard, SessionsCardProps, SettingsCard, SettingsCardClassNames, SettingsCardProps, SettingsCellSkeleton, SignInForm, SignInFormProps, SignOut, SignUpForm, SignUpFormProps, SignedIn, SignedOut, SlackIcon, SpotifyIcon, Team, TeamCell, TeamCellProps, TeamOptions, TeamOptionsContext, TeamsCard, TikTokIcon, TwitchIcon, TwoFactorCard, TwoFactorCardProps, TwoFactorForm, TwoFactorFormProps, UpdateAvatarCard, UpdateAvatarCardProps, UpdateFieldCard, UpdateFieldCardProps, UpdateNameCard, UpdateUsernameCard, UserAvatar, UserAvatarClassNames, UserAvatarProps, UserButton, UserButtonClassNames, UserButtonProps, UserInvitationsCard, UserView, UserViewClassNames, UserViewProps, VKIcon, XIcon, ZoomIcon, accountViewPaths, authLocalization, authViewPaths, getViewByPath, organizationViewPaths, socialProviders, useAuthData, useAuthenticate, useCurrentOrganization, useTheme };
|
package/dist/react/index.mjs
CHANGED
|
@@ -1,95 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import "../
|
|
3
|
-
import { t as
|
|
4
|
-
import "../adapters-Dkx0zoMR.mjs";
|
|
1
|
+
import { t as BetterAuthReactAdapter } from "../better-auth-react-adapter-BbM3jLLv.mjs";
|
|
2
|
+
import { c as getViewByPath, n as authLocalization, r as authViewPaths, t as accountViewPaths, u as organizationViewPaths } from "../chunk-5DLVHPZS-Bxj7snpZ-DoVNlsyk.mjs";
|
|
3
|
+
import { $ as RobloxIcon, A as MagicLinkForm, At as useAuthenticate, B as OrganizationSettingsCards, C as GitLabIcon, Ct as UserInvitationsCard, D as KickIcon, Dt as ZoomIcon, E as InputFieldSkeleton, Et as XIcon3, F as OrganizationInvitationsCard, G as PasskeysCard, H as OrganizationSwitcher, I as OrganizationLogo, J as RecoverAccountForm, K as PasswordInput, L as OrganizationLogoCard, M as NeonAuthUIProvider, Mt as useTheme, N as NotionIcon, O as LinearIcon, Ot as socialProviders, P as OrganizationCellView, Q as ResetPasswordForm, R as OrganizationMembersCard, S as GitHubIcon, St as UserButton, T as HuggingFaceIcon, Tt as VKIcon, U as OrganizationView, V as OrganizationSlugCard, W as OrganizationsCard, X as RedirectToSignIn, Y as RedditIcon, Z as RedirectToSignUp, _ as DeleteOrganizationCard, _t as UpdateAvatarCard, a as AppleIcon, at as SignOut, b as FacebookIcon, bt as UpdateUsernameCard, c as AuthLoading, ct as SignedOut, d as AuthView, dt as TeamCell, et as SecuritySettingsCards, f as ChangeEmailCard, ft as TeamsCard, g as DeleteAccountCard, gt as TwoFactorForm, h as CreateTeamDialog, ht as TwoFactorCard, i as AccountsCard, it as SignInForm, j as MicrosoftIcon, jt as useCurrentOrganization, k as LinkedInIcon, kt as useAuthData, l as AuthUIContext, lt as SlackIcon, m as CreateOrganizationDialog, mt as TwitchIcon, n as AccountSettingsCards, nt as SettingsCard, o as AuthCallback, ot as SignUpForm, p as ChangePasswordCard, pt as TikTokIcon, q as ProvidersCard, r as AccountView, rt as SettingsCellSkeleton, s as AuthForm, st as SignedIn, t as AcceptInvitationCard, tt as SessionsCard, u as AuthUIProvider, ut as SpotifyIcon, v as DiscordIcon, vt as UpdateFieldCard, w as GoogleIcon, wt as UserView, x as ForgotPasswordForm, xt as UserAvatar, y as DropboxIcon, yt as UpdateNameCard, z as OrganizationNameCard } from "../ui-aMoA-9nq.mjs";
|
|
5
4
|
|
|
6
|
-
|
|
7
|
-
var AccountSettingsCards = dist_exports.AccountSettingsCards;
|
|
8
|
-
var AccountView = dist_exports.AccountView;
|
|
9
|
-
var AccountsCard = dist_exports.AccountsCard;
|
|
10
|
-
var AppleIcon = dist_exports.AppleIcon;
|
|
11
|
-
var AuthCallback = dist_exports.AuthCallback;
|
|
12
|
-
var AuthForm = dist_exports.AuthForm;
|
|
13
|
-
var AuthLoading = dist_exports.AuthLoading;
|
|
14
|
-
var AuthUIContext = dist_exports.AuthUIContext;
|
|
15
|
-
var AuthUIProvider = dist_exports.AuthUIProvider;
|
|
16
|
-
var AuthView = dist_exports.AuthView;
|
|
17
|
-
var ChangeEmailCard = dist_exports.ChangeEmailCard;
|
|
18
|
-
var ChangePasswordCard = dist_exports.ChangePasswordCard;
|
|
19
|
-
var CreateOrganizationDialog = dist_exports.CreateOrganizationDialog;
|
|
20
|
-
var CreateTeamDialog = dist_exports.CreateTeamDialog;
|
|
21
|
-
var DeleteAccountCard = dist_exports.DeleteAccountCard;
|
|
22
|
-
var DeleteOrganizationCard = dist_exports.DeleteOrganizationCard;
|
|
23
|
-
var DiscordIcon = dist_exports.DiscordIcon;
|
|
24
|
-
var DropboxIcon = dist_exports.DropboxIcon;
|
|
25
|
-
var FacebookIcon = dist_exports.FacebookIcon;
|
|
26
|
-
var ForgotPasswordForm = dist_exports.ForgotPasswordForm;
|
|
27
|
-
var GitHubIcon = dist_exports.GitHubIcon;
|
|
28
|
-
var GitLabIcon = dist_exports.GitLabIcon;
|
|
29
|
-
var GoogleIcon = dist_exports.GoogleIcon;
|
|
30
|
-
var HuggingFaceIcon = dist_exports.HuggingFaceIcon;
|
|
31
|
-
var InputFieldSkeleton = dist_exports.InputFieldSkeleton;
|
|
32
|
-
var KickIcon = dist_exports.KickIcon;
|
|
33
|
-
var LinearIcon = dist_exports.LinearIcon;
|
|
34
|
-
var LinkedInIcon = dist_exports.LinkedInIcon;
|
|
35
|
-
var MagicLinkForm = dist_exports.MagicLinkForm;
|
|
36
|
-
var MicrosoftIcon = dist_exports.MicrosoftIcon;
|
|
37
|
-
var NotionIcon = dist_exports.NotionIcon;
|
|
38
|
-
var OrganizationCellView = dist_exports.OrganizationCellView;
|
|
39
|
-
var OrganizationInvitationsCard = dist_exports.OrganizationInvitationsCard;
|
|
40
|
-
var OrganizationLogo = dist_exports.OrganizationLogo;
|
|
41
|
-
var OrganizationLogoCard = dist_exports.OrganizationLogoCard;
|
|
42
|
-
var OrganizationMembersCard = dist_exports.OrganizationMembersCard;
|
|
43
|
-
var OrganizationNameCard = dist_exports.OrganizationNameCard;
|
|
44
|
-
var OrganizationSettingsCards = dist_exports.OrganizationSettingsCards;
|
|
45
|
-
var OrganizationSlugCard = dist_exports.OrganizationSlugCard;
|
|
46
|
-
var OrganizationSwitcher = dist_exports.OrganizationSwitcher;
|
|
47
|
-
var OrganizationView = dist_exports.OrganizationView;
|
|
48
|
-
var OrganizationsCard = dist_exports.OrganizationsCard;
|
|
49
|
-
var PasskeysCard = dist_exports.PasskeysCard;
|
|
50
|
-
var PasswordInput = dist_exports.PasswordInput;
|
|
51
|
-
var ProvidersCard = dist_exports.ProvidersCard;
|
|
52
|
-
var RecoverAccountForm = dist_exports.RecoverAccountForm;
|
|
53
|
-
var RedditIcon = dist_exports.RedditIcon;
|
|
54
|
-
var RedirectToSignIn = dist_exports.RedirectToSignIn;
|
|
55
|
-
var RedirectToSignUp = dist_exports.RedirectToSignUp;
|
|
56
|
-
var ResetPasswordForm = dist_exports.ResetPasswordForm;
|
|
57
|
-
var RobloxIcon = dist_exports.RobloxIcon;
|
|
58
|
-
var SecuritySettingsCards = dist_exports.SecuritySettingsCards;
|
|
59
|
-
var SessionsCard = dist_exports.SessionsCard;
|
|
60
|
-
var SettingsCard = dist_exports.SettingsCard;
|
|
61
|
-
var SettingsCellSkeleton = dist_exports.SettingsCellSkeleton;
|
|
62
|
-
var SignInForm = dist_exports.SignInForm;
|
|
63
|
-
var SignOut = dist_exports.SignOut;
|
|
64
|
-
var SignUpForm = dist_exports.SignUpForm;
|
|
65
|
-
var SignedIn = dist_exports.SignedIn;
|
|
66
|
-
var SignedOut = dist_exports.SignedOut;
|
|
67
|
-
var SlackIcon = dist_exports.SlackIcon;
|
|
68
|
-
var SpotifyIcon = dist_exports.SpotifyIcon;
|
|
69
|
-
var TeamCell = dist_exports.TeamCell;
|
|
70
|
-
var TeamsCard = dist_exports.TeamsCard;
|
|
71
|
-
var TikTokIcon = dist_exports.TikTokIcon;
|
|
72
|
-
var TwitchIcon = dist_exports.TwitchIcon;
|
|
73
|
-
var TwoFactorCard = dist_exports.TwoFactorCard;
|
|
74
|
-
var TwoFactorForm = dist_exports.TwoFactorForm;
|
|
75
|
-
var UpdateAvatarCard = dist_exports.UpdateAvatarCard;
|
|
76
|
-
var UpdateFieldCard = dist_exports.UpdateFieldCard;
|
|
77
|
-
var UpdateNameCard = dist_exports.UpdateNameCard;
|
|
78
|
-
var UpdateUsernameCard = dist_exports.UpdateUsernameCard;
|
|
79
|
-
var UserAvatar = dist_exports.UserAvatar;
|
|
80
|
-
var UserButton = dist_exports.UserButton;
|
|
81
|
-
var UserInvitationsCard = dist_exports.UserInvitationsCard;
|
|
82
|
-
var UserView = dist_exports.UserView;
|
|
83
|
-
var VKIcon = dist_exports.VKIcon;
|
|
84
|
-
var XIcon = dist_exports.XIcon;
|
|
85
|
-
var ZoomIcon = dist_exports.ZoomIcon;
|
|
86
|
-
var accountViewPaths = dist_exports.accountViewPaths;
|
|
87
|
-
var authLocalization = dist_exports.authLocalization;
|
|
88
|
-
var authViewPaths = dist_exports.authViewPaths;
|
|
89
|
-
var getViewByPath = dist_exports.getViewByPath;
|
|
90
|
-
var organizationViewPaths = dist_exports.organizationViewPaths;
|
|
91
|
-
var socialProviders = dist_exports.socialProviders;
|
|
92
|
-
var useAuthData = dist_exports.useAuthData;
|
|
93
|
-
var useAuthenticate = dist_exports.useAuthenticate;
|
|
94
|
-
var useCurrentOrganization = dist_exports.useCurrentOrganization;
|
|
95
|
-
export { AcceptInvitationCard, AccountSettingsCards, AccountView, AccountsCard, AppleIcon, AuthCallback, AuthForm, AuthLoading, AuthUIContext, AuthUIProvider, AuthView, BetterAuthReactAdapter, ChangeEmailCard, ChangePasswordCard, CreateOrganizationDialog, CreateTeamDialog, DeleteAccountCard, DeleteOrganizationCard, DiscordIcon, DropboxIcon, FacebookIcon, ForgotPasswordForm, GitHubIcon, GitLabIcon, GoogleIcon, HuggingFaceIcon, InputFieldSkeleton, KickIcon, LinearIcon, LinkedInIcon, MagicLinkForm, MicrosoftIcon, NeonAuthUIProvider, NotionIcon, OrganizationCellView, OrganizationInvitationsCard, OrganizationLogo, OrganizationLogoCard, OrganizationMembersCard, OrganizationNameCard, OrganizationSettingsCards, OrganizationSlugCard, OrganizationSwitcher, OrganizationView, OrganizationsCard, PasskeysCard, PasswordInput, ProvidersCard, RecoverAccountForm, RedditIcon, RedirectToSignIn, RedirectToSignUp, ResetPasswordForm, RobloxIcon, SecuritySettingsCards, SessionsCard, SettingsCard, SettingsCellSkeleton, SignInForm, SignOut, SignUpForm, SignedIn, SignedOut, SlackIcon, SpotifyIcon, TeamCell, TeamsCard, TikTokIcon, TwitchIcon, TwoFactorCard, TwoFactorForm, UpdateAvatarCard, UpdateFieldCard, UpdateNameCard, UpdateUsernameCard, UserAvatar, UserButton, UserInvitationsCard, UserView, VKIcon, XIcon, ZoomIcon, accountViewPaths, authLocalization, authViewPaths, getViewByPath, organizationViewPaths, socialProviders, useAuthData, useAuthenticate, useCurrentOrganization, useTheme };
|
|
5
|
+
export { AcceptInvitationCard, AccountSettingsCards, AccountView, AccountsCard, AppleIcon, AuthCallback, AuthForm, AuthLoading, AuthUIContext, AuthUIProvider, AuthView, BetterAuthReactAdapter, ChangeEmailCard, ChangePasswordCard, CreateOrganizationDialog, CreateTeamDialog, DeleteAccountCard, DeleteOrganizationCard, DiscordIcon, DropboxIcon, FacebookIcon, ForgotPasswordForm, GitHubIcon, GitLabIcon, GoogleIcon, HuggingFaceIcon, InputFieldSkeleton, KickIcon, LinearIcon, LinkedInIcon, MagicLinkForm, MicrosoftIcon, NeonAuthUIProvider, NotionIcon, OrganizationCellView, OrganizationInvitationsCard, OrganizationLogo, OrganizationLogoCard, OrganizationMembersCard, OrganizationNameCard, OrganizationSettingsCards, OrganizationSlugCard, OrganizationSwitcher, OrganizationView, OrganizationsCard, PasskeysCard, PasswordInput, ProvidersCard, RecoverAccountForm, RedditIcon, RedirectToSignIn, RedirectToSignUp, ResetPasswordForm, RobloxIcon, SecuritySettingsCards, SessionsCard, SettingsCard, SettingsCellSkeleton, SignInForm, SignOut, SignUpForm, SignedIn, SignedOut, SlackIcon, SpotifyIcon, TeamCell, TeamsCard, TikTokIcon, TwitchIcon, TwoFactorCard, TwoFactorForm, UpdateAvatarCard, UpdateFieldCard, UpdateNameCard, UpdateUsernameCard, UserAvatar, UserButton, UserInvitationsCard, UserView, VKIcon, XIcon3 as XIcon, ZoomIcon, accountViewPaths, authLocalization, authViewPaths, getViewByPath, organizationViewPaths, socialProviders, useAuthData, useAuthenticate, useCurrentOrganization, useTheme };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
import { $ as MagicLinkFormProps, $t as SignUpFormProps, A as ChangePasswordCard, An as UserViewClassNames, At as PasswordInput, B as DropboxIcon, Bn as socialProviders, Bt as ResetPasswordFormProps, C as AuthUIProviderProps, Cn as UserAvatarClassNames, Ct as OrganizationViewPageProps, D as AuthViewPaths, Dn as UserButtonProps, Dt as OrganizationsCard, E as AuthViewPath, En as UserButtonClassNames, Et as OrganizationViewProps, F as CreateTeamDialogProps, Fn as accountViewPaths, Ft as RecoverAccountFormProps, G as GitLabIcon, Gt as SettingsCard, H as ForgotPasswordForm, Hn as useAuthenticate, Ht as SecuritySettingsCards, I as DeleteAccountCard, In as authLocalization, It as RedditIcon, J as InputFieldSkeleton, Jt as SettingsCellSkeleton, K as GoogleIcon, Kt as SettingsCardClassNames, L as DeleteAccountCardProps, Ln as authViewPaths, Lt as RedirectToSignIn, M as CreateOrganizationDialog, Mn as VKIcon, Mt as ProvidersCard, N as CreateOrganizationDialogProps, Nn as XIcon, Nt as ProvidersCardProps, O as AuthViewProps, On as UserInvitationsCard, Ot as PasskeysCard, P as CreateTeamDialog, Pn as ZoomIcon, Pt as RecoverAccountForm, Q as MagicLinkForm, Qt as SignUpForm, R as DeleteOrganizationCard, Rn as getViewByPath, Rt as RedirectToSignUp, S as AuthUIProvider, Sn as UserAvatar, St as OrganizationViewClassNames, T as AuthViewClassNames, Tn as UserButton, Tt as OrganizationViewPaths, U as ForgotPasswordFormProps, Un as useCurrentOrganization, Ut as SessionsCard, V as FacebookIcon, Vn as useAuthData, Vt as RobloxIcon, W as GitHubIcon, Wn as useTheme, Wt as SessionsCardProps, X as LinearIcon, Xt as SignInFormProps, Y as KickIcon, Yt as SignInForm, Z as LinkedInIcon, Zt as SignOut, _ as AuthLoading, _n as UpdateAvatarCardProps, _t as OrganizationSlugCardProps, a as AccountViewPath, an as TeamCell, at as OrganizationInvitationsCard, b as AuthUIContext, bn as UpdateNameCard, bt as OrganizationSwitcherProps, c as AccountsCard, cn as TeamOptionsContext, ct as OrganizationLogoCardProps, d as AppleIcon, dn as TwitchIcon, dt as OrganizationMembersCard, en as SignedIn, et as MicrosoftIcon, f as AuthCallback, fn as TwoFactorCard, ft as OrganizationNameCard, g as AuthHooks, gn as UpdateAvatarCard, gt as OrganizationSlugCard, h as AuthFormProps, hn as TwoFactorFormProps, ht as OrganizationSettingsCardsProps, i as AccountView, in as Team, it as OrganizationCellView, j as ChangePasswordCardProps, jn as UserViewProps, jt as Provider, k as ChangeEmailCard, kn as UserView, kt as PasskeysCardProps, l as AccountsCardProps, ln as TeamsCard, lt as OrganizationLogoClassNames, m as AuthFormClassNames, mn as TwoFactorForm, mt as OrganizationSettingsCards, n as AcceptInvitationCardProps, nn as SlackIcon, nt as NeonAuthUIProviderProps, o as AccountViewPaths, on as TeamCellProps, ot as OrganizationLogo, p as AuthForm, pn as TwoFactorCardProps, pt as OrganizationNameCardProps, q as HuggingFaceIcon, qt as SettingsCardProps, r as AccountSettingsCards, rn as SpotifyIcon, rt as NotionIcon, s as AccountViewProps, sn as TeamOptions, st as OrganizationLogoCard, t as AcceptInvitationCard, tn as SignedOut, tt as NeonAuthUIProvider, u as ApiKeysCardProps, un as TikTokIcon, ut as OrganizationLogoProps, v as AuthLocalization, vn as UpdateFieldCard, vt as OrganizationSwitcher, w as AuthView, wn as UserAvatarProps, wt as OrganizationViewPath, x as AuthUIContextType, xn as UpdateUsernameCard, xt as OrganizationView, y as AuthMutators, yn as UpdateFieldCardProps, yt as OrganizationSwitcherClassNames, z as DiscordIcon, zn as organizationViewPaths, zt as ResetPasswordForm } from "../../index-
|
|
2
|
+
import { $ as MagicLinkFormProps, $t as SignUpFormProps, A as ChangePasswordCard, An as UserViewClassNames, At as PasswordInput, B as DropboxIcon, Bn as socialProviders, Bt as ResetPasswordFormProps, C as AuthUIProviderProps, Cn as UserAvatarClassNames, Ct as OrganizationViewPageProps, D as AuthViewPaths, Dn as UserButtonProps, Dt as OrganizationsCard, E as AuthViewPath, En as UserButtonClassNames, Et as OrganizationViewProps, F as CreateTeamDialogProps, Fn as accountViewPaths, Ft as RecoverAccountFormProps, G as GitLabIcon, Gt as SettingsCard, H as ForgotPasswordForm, Hn as useAuthenticate, Ht as SecuritySettingsCards, I as DeleteAccountCard, In as authLocalization, It as RedditIcon, J as InputFieldSkeleton, Jt as SettingsCellSkeleton, K as GoogleIcon, Kt as SettingsCardClassNames, L as DeleteAccountCardProps, Ln as authViewPaths, Lt as RedirectToSignIn, M as CreateOrganizationDialog, Mn as VKIcon, Mt as ProvidersCard, N as CreateOrganizationDialogProps, Nn as XIcon, Nt as ProvidersCardProps, O as AuthViewProps, On as UserInvitationsCard, Ot as PasskeysCard, P as CreateTeamDialog, Pn as ZoomIcon, Pt as RecoverAccountForm, Q as MagicLinkForm, Qt as SignUpForm, R as DeleteOrganizationCard, Rn as getViewByPath, Rt as RedirectToSignUp, S as AuthUIProvider, Sn as UserAvatar, St as OrganizationViewClassNames, T as AuthViewClassNames, Tn as UserButton, Tt as OrganizationViewPaths, U as ForgotPasswordFormProps, Un as useCurrentOrganization, Ut as SessionsCard, V as FacebookIcon, Vn as useAuthData, Vt as RobloxIcon, W as GitHubIcon, Wn as useTheme, Wt as SessionsCardProps, X as LinearIcon, Xt as SignInFormProps, Y as KickIcon, Yt as SignInForm, Z as LinkedInIcon, Zt as SignOut, _ as AuthLoading, _n as UpdateAvatarCardProps, _t as OrganizationSlugCardProps, a as AccountViewPath, an as TeamCell, at as OrganizationInvitationsCard, b as AuthUIContext, bn as UpdateNameCard, bt as OrganizationSwitcherProps, c as AccountsCard, cn as TeamOptionsContext, ct as OrganizationLogoCardProps, d as AppleIcon, dn as TwitchIcon, dt as OrganizationMembersCard, en as SignedIn, et as MicrosoftIcon, f as AuthCallback, fn as TwoFactorCard, ft as OrganizationNameCard, g as AuthHooks, gn as UpdateAvatarCard, gt as OrganizationSlugCard, h as AuthFormProps, hn as TwoFactorFormProps, ht as OrganizationSettingsCardsProps, i as AccountView, in as Team, it as OrganizationCellView, j as ChangePasswordCardProps, jn as UserViewProps, jt as Provider, k as ChangeEmailCard, kn as UserView, kt as PasskeysCardProps, l as AccountsCardProps, ln as TeamsCard, lt as OrganizationLogoClassNames, m as AuthFormClassNames, mn as TwoFactorForm, mt as OrganizationSettingsCards, n as AcceptInvitationCardProps, nn as SlackIcon, nt as NeonAuthUIProviderProps, o as AccountViewPaths, on as TeamCellProps, ot as OrganizationLogo, p as AuthForm, pn as TwoFactorCardProps, pt as OrganizationNameCardProps, q as HuggingFaceIcon, qt as SettingsCardProps, r as AccountSettingsCards, rn as SpotifyIcon, rt as NotionIcon, s as AccountViewProps, sn as TeamOptions, st as OrganizationLogoCard, t as AcceptInvitationCard, tn as SignedOut, tt as NeonAuthUIProvider, u as ApiKeysCardProps, un as TikTokIcon, ut as OrganizationLogoProps, v as AuthLocalization, vn as UpdateFieldCard, vt as OrganizationSwitcher, w as AuthView, wn as UserAvatarProps, wt as OrganizationViewPath, x as AuthUIContextType, xn as UpdateUsernameCard, xt as OrganizationView, y as AuthMutators, yn as UpdateFieldCardProps, yt as OrganizationSwitcherClassNames, z as DiscordIcon, zn as organizationViewPaths, zt as ResetPasswordForm } from "../../index-BXlAjlSt.mjs";
|
|
3
3
|
export { AcceptInvitationCard, AcceptInvitationCardProps, AccountSettingsCards, AccountView, AccountViewPath, AccountViewPaths, AccountViewProps, AccountsCard, AccountsCardProps, ApiKeysCardProps, AppleIcon, AuthCallback, AuthForm, AuthFormClassNames, AuthFormProps, AuthHooks, AuthLoading, AuthLocalization, AuthMutators, AuthUIContext, AuthUIContextType, AuthUIProvider, AuthUIProviderProps, AuthView, AuthViewClassNames, AuthViewPath, AuthViewPaths, AuthViewProps, ChangeEmailCard, ChangePasswordCard, ChangePasswordCardProps, CreateOrganizationDialog, CreateOrganizationDialogProps, CreateTeamDialog, CreateTeamDialogProps, DeleteAccountCard, DeleteAccountCardProps, DeleteOrganizationCard, DiscordIcon, DropboxIcon, FacebookIcon, ForgotPasswordForm, ForgotPasswordFormProps, GitHubIcon, GitLabIcon, GoogleIcon, HuggingFaceIcon, InputFieldSkeleton, KickIcon, LinearIcon, LinkedInIcon, MagicLinkForm, MagicLinkFormProps, MicrosoftIcon, NeonAuthUIProvider, NeonAuthUIProviderProps, NotionIcon, OrganizationCellView, OrganizationInvitationsCard, OrganizationLogo, OrganizationLogoCard, OrganizationLogoCardProps, OrganizationLogoClassNames, OrganizationLogoProps, OrganizationMembersCard, OrganizationNameCard, OrganizationNameCardProps, OrganizationSettingsCards, OrganizationSettingsCardsProps, OrganizationSlugCard, OrganizationSlugCardProps, OrganizationSwitcher, OrganizationSwitcherClassNames, OrganizationSwitcherProps, OrganizationView, OrganizationViewClassNames, OrganizationViewPageProps, OrganizationViewPath, OrganizationViewPaths, OrganizationViewProps, OrganizationsCard, PasskeysCard, PasskeysCardProps, PasswordInput, Provider, ProvidersCard, ProvidersCardProps, RecoverAccountForm, RecoverAccountFormProps, RedditIcon, RedirectToSignIn, RedirectToSignUp, ResetPasswordForm, ResetPasswordFormProps, RobloxIcon, SecuritySettingsCards, SessionsCard, SessionsCardProps, SettingsCard, SettingsCardClassNames, SettingsCardProps, SettingsCellSkeleton, SignInForm, SignInFormProps, SignOut, SignUpForm, SignUpFormProps, SignedIn, SignedOut, SlackIcon, SpotifyIcon, Team, TeamCell, TeamCellProps, TeamOptions, TeamOptionsContext, TeamsCard, TikTokIcon, TwitchIcon, TwoFactorCard, TwoFactorCardProps, TwoFactorForm, TwoFactorFormProps, UpdateAvatarCard, UpdateAvatarCardProps, UpdateFieldCard, UpdateFieldCardProps, UpdateNameCard, UpdateUsernameCard, UserAvatar, UserAvatarClassNames, UserAvatarProps, UserButton, UserButtonClassNames, UserButtonProps, UserInvitationsCard, UserView, UserViewClassNames, UserViewProps, VKIcon, XIcon, ZoomIcon, accountViewPaths, authLocalization, authViewPaths, getViewByPath, organizationViewPaths, socialProviders, useAuthData, useAuthenticate, useCurrentOrganization, useTheme };
|
package/dist/react/ui/index.mjs
CHANGED
|
@@ -1,93 +1,5 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
import { n as
|
|
2
|
+
import { c as getViewByPath, n as authLocalization, r as authViewPaths, t as accountViewPaths, u as organizationViewPaths } from "../../chunk-5DLVHPZS-Bxj7snpZ-DoVNlsyk.mjs";
|
|
3
|
+
import { $ as RobloxIcon, A as MagicLinkForm, At as useAuthenticate, B as OrganizationSettingsCards, C as GitLabIcon, Ct as UserInvitationsCard, D as KickIcon, Dt as ZoomIcon, E as InputFieldSkeleton, Et as XIcon3, F as OrganizationInvitationsCard, G as PasskeysCard, H as OrganizationSwitcher, I as OrganizationLogo, J as RecoverAccountForm, K as PasswordInput, L as OrganizationLogoCard, M as NeonAuthUIProvider, Mt as useTheme, N as NotionIcon, O as LinearIcon, Ot as socialProviders, P as OrganizationCellView, Q as ResetPasswordForm, R as OrganizationMembersCard, S as GitHubIcon, St as UserButton, T as HuggingFaceIcon, Tt as VKIcon, U as OrganizationView, V as OrganizationSlugCard, W as OrganizationsCard, X as RedirectToSignIn, Y as RedditIcon, Z as RedirectToSignUp, _ as DeleteOrganizationCard, _t as UpdateAvatarCard, a as AppleIcon, at as SignOut, b as FacebookIcon, bt as UpdateUsernameCard, c as AuthLoading, ct as SignedOut, d as AuthView, dt as TeamCell, et as SecuritySettingsCards, f as ChangeEmailCard, ft as TeamsCard, g as DeleteAccountCard, gt as TwoFactorForm, h as CreateTeamDialog, ht as TwoFactorCard, i as AccountsCard, it as SignInForm, j as MicrosoftIcon, jt as useCurrentOrganization, k as LinkedInIcon, kt as useAuthData, l as AuthUIContext, lt as SlackIcon, m as CreateOrganizationDialog, mt as TwitchIcon, n as AccountSettingsCards, nt as SettingsCard, o as AuthCallback, ot as SignUpForm, p as ChangePasswordCard, pt as TikTokIcon, q as ProvidersCard, r as AccountView, rt as SettingsCellSkeleton, s as AuthForm, st as SignedIn, t as AcceptInvitationCard, tt as SessionsCard, u as AuthUIProvider, ut as SpotifyIcon, v as DiscordIcon, vt as UpdateFieldCard, w as GoogleIcon, wt as UserView, x as ForgotPasswordForm, xt as UserAvatar, y as DropboxIcon, yt as UpdateNameCard, z as OrganizationNameCard } from "../../ui-aMoA-9nq.mjs";
|
|
3
4
|
|
|
4
|
-
|
|
5
|
-
var AccountSettingsCards = dist_exports.AccountSettingsCards;
|
|
6
|
-
var AccountView = dist_exports.AccountView;
|
|
7
|
-
var AccountsCard = dist_exports.AccountsCard;
|
|
8
|
-
var AppleIcon = dist_exports.AppleIcon;
|
|
9
|
-
var AuthCallback = dist_exports.AuthCallback;
|
|
10
|
-
var AuthForm = dist_exports.AuthForm;
|
|
11
|
-
var AuthLoading = dist_exports.AuthLoading;
|
|
12
|
-
var AuthUIContext = dist_exports.AuthUIContext;
|
|
13
|
-
var AuthUIProvider = dist_exports.AuthUIProvider;
|
|
14
|
-
var AuthView = dist_exports.AuthView;
|
|
15
|
-
var ChangeEmailCard = dist_exports.ChangeEmailCard;
|
|
16
|
-
var ChangePasswordCard = dist_exports.ChangePasswordCard;
|
|
17
|
-
var CreateOrganizationDialog = dist_exports.CreateOrganizationDialog;
|
|
18
|
-
var CreateTeamDialog = dist_exports.CreateTeamDialog;
|
|
19
|
-
var DeleteAccountCard = dist_exports.DeleteAccountCard;
|
|
20
|
-
var DeleteOrganizationCard = dist_exports.DeleteOrganizationCard;
|
|
21
|
-
var DiscordIcon = dist_exports.DiscordIcon;
|
|
22
|
-
var DropboxIcon = dist_exports.DropboxIcon;
|
|
23
|
-
var FacebookIcon = dist_exports.FacebookIcon;
|
|
24
|
-
var ForgotPasswordForm = dist_exports.ForgotPasswordForm;
|
|
25
|
-
var GitHubIcon = dist_exports.GitHubIcon;
|
|
26
|
-
var GitLabIcon = dist_exports.GitLabIcon;
|
|
27
|
-
var GoogleIcon = dist_exports.GoogleIcon;
|
|
28
|
-
var HuggingFaceIcon = dist_exports.HuggingFaceIcon;
|
|
29
|
-
var InputFieldSkeleton = dist_exports.InputFieldSkeleton;
|
|
30
|
-
var KickIcon = dist_exports.KickIcon;
|
|
31
|
-
var LinearIcon = dist_exports.LinearIcon;
|
|
32
|
-
var LinkedInIcon = dist_exports.LinkedInIcon;
|
|
33
|
-
var MagicLinkForm = dist_exports.MagicLinkForm;
|
|
34
|
-
var MicrosoftIcon = dist_exports.MicrosoftIcon;
|
|
35
|
-
var NotionIcon = dist_exports.NotionIcon;
|
|
36
|
-
var OrganizationCellView = dist_exports.OrganizationCellView;
|
|
37
|
-
var OrganizationInvitationsCard = dist_exports.OrganizationInvitationsCard;
|
|
38
|
-
var OrganizationLogo = dist_exports.OrganizationLogo;
|
|
39
|
-
var OrganizationLogoCard = dist_exports.OrganizationLogoCard;
|
|
40
|
-
var OrganizationMembersCard = dist_exports.OrganizationMembersCard;
|
|
41
|
-
var OrganizationNameCard = dist_exports.OrganizationNameCard;
|
|
42
|
-
var OrganizationSettingsCards = dist_exports.OrganizationSettingsCards;
|
|
43
|
-
var OrganizationSlugCard = dist_exports.OrganizationSlugCard;
|
|
44
|
-
var OrganizationSwitcher = dist_exports.OrganizationSwitcher;
|
|
45
|
-
var OrganizationView = dist_exports.OrganizationView;
|
|
46
|
-
var OrganizationsCard = dist_exports.OrganizationsCard;
|
|
47
|
-
var PasskeysCard = dist_exports.PasskeysCard;
|
|
48
|
-
var PasswordInput = dist_exports.PasswordInput;
|
|
49
|
-
var ProvidersCard = dist_exports.ProvidersCard;
|
|
50
|
-
var RecoverAccountForm = dist_exports.RecoverAccountForm;
|
|
51
|
-
var RedditIcon = dist_exports.RedditIcon;
|
|
52
|
-
var RedirectToSignIn = dist_exports.RedirectToSignIn;
|
|
53
|
-
var RedirectToSignUp = dist_exports.RedirectToSignUp;
|
|
54
|
-
var ResetPasswordForm = dist_exports.ResetPasswordForm;
|
|
55
|
-
var RobloxIcon = dist_exports.RobloxIcon;
|
|
56
|
-
var SecuritySettingsCards = dist_exports.SecuritySettingsCards;
|
|
57
|
-
var SessionsCard = dist_exports.SessionsCard;
|
|
58
|
-
var SettingsCard = dist_exports.SettingsCard;
|
|
59
|
-
var SettingsCellSkeleton = dist_exports.SettingsCellSkeleton;
|
|
60
|
-
var SignInForm = dist_exports.SignInForm;
|
|
61
|
-
var SignOut = dist_exports.SignOut;
|
|
62
|
-
var SignUpForm = dist_exports.SignUpForm;
|
|
63
|
-
var SignedIn = dist_exports.SignedIn;
|
|
64
|
-
var SignedOut = dist_exports.SignedOut;
|
|
65
|
-
var SlackIcon = dist_exports.SlackIcon;
|
|
66
|
-
var SpotifyIcon = dist_exports.SpotifyIcon;
|
|
67
|
-
var TeamCell = dist_exports.TeamCell;
|
|
68
|
-
var TeamsCard = dist_exports.TeamsCard;
|
|
69
|
-
var TikTokIcon = dist_exports.TikTokIcon;
|
|
70
|
-
var TwitchIcon = dist_exports.TwitchIcon;
|
|
71
|
-
var TwoFactorCard = dist_exports.TwoFactorCard;
|
|
72
|
-
var TwoFactorForm = dist_exports.TwoFactorForm;
|
|
73
|
-
var UpdateAvatarCard = dist_exports.UpdateAvatarCard;
|
|
74
|
-
var UpdateFieldCard = dist_exports.UpdateFieldCard;
|
|
75
|
-
var UpdateNameCard = dist_exports.UpdateNameCard;
|
|
76
|
-
var UpdateUsernameCard = dist_exports.UpdateUsernameCard;
|
|
77
|
-
var UserAvatar = dist_exports.UserAvatar;
|
|
78
|
-
var UserButton = dist_exports.UserButton;
|
|
79
|
-
var UserInvitationsCard = dist_exports.UserInvitationsCard;
|
|
80
|
-
var UserView = dist_exports.UserView;
|
|
81
|
-
var VKIcon = dist_exports.VKIcon;
|
|
82
|
-
var XIcon = dist_exports.XIcon;
|
|
83
|
-
var ZoomIcon = dist_exports.ZoomIcon;
|
|
84
|
-
var accountViewPaths = dist_exports.accountViewPaths;
|
|
85
|
-
var authLocalization = dist_exports.authLocalization;
|
|
86
|
-
var authViewPaths = dist_exports.authViewPaths;
|
|
87
|
-
var getViewByPath = dist_exports.getViewByPath;
|
|
88
|
-
var organizationViewPaths = dist_exports.organizationViewPaths;
|
|
89
|
-
var socialProviders = dist_exports.socialProviders;
|
|
90
|
-
var useAuthData = dist_exports.useAuthData;
|
|
91
|
-
var useAuthenticate = dist_exports.useAuthenticate;
|
|
92
|
-
var useCurrentOrganization = dist_exports.useCurrentOrganization;
|
|
93
|
-
export { AcceptInvitationCard, AccountSettingsCards, AccountView, AccountsCard, AppleIcon, AuthCallback, AuthForm, AuthLoading, AuthUIContext, AuthUIProvider, AuthView, ChangeEmailCard, ChangePasswordCard, CreateOrganizationDialog, CreateTeamDialog, DeleteAccountCard, DeleteOrganizationCard, DiscordIcon, DropboxIcon, FacebookIcon, ForgotPasswordForm, GitHubIcon, GitLabIcon, GoogleIcon, HuggingFaceIcon, InputFieldSkeleton, KickIcon, LinearIcon, LinkedInIcon, MagicLinkForm, MicrosoftIcon, NeonAuthUIProvider, NotionIcon, OrganizationCellView, OrganizationInvitationsCard, OrganizationLogo, OrganizationLogoCard, OrganizationMembersCard, OrganizationNameCard, OrganizationSettingsCards, OrganizationSlugCard, OrganizationSwitcher, OrganizationView, OrganizationsCard, PasskeysCard, PasswordInput, ProvidersCard, RecoverAccountForm, RedditIcon, RedirectToSignIn, RedirectToSignUp, ResetPasswordForm, RobloxIcon, SecuritySettingsCards, SessionsCard, SettingsCard, SettingsCellSkeleton, SignInForm, SignOut, SignUpForm, SignedIn, SignedOut, SlackIcon, SpotifyIcon, TeamCell, TeamsCard, TikTokIcon, TwitchIcon, TwoFactorCard, TwoFactorForm, UpdateAvatarCard, UpdateFieldCard, UpdateNameCard, UpdateUsernameCard, UserAvatar, UserButton, UserInvitationsCard, UserView, VKIcon, XIcon, ZoomIcon, accountViewPaths, authLocalization, authViewPaths, getViewByPath, organizationViewPaths, socialProviders, useAuthData, useAuthenticate, useCurrentOrganization, useTheme };
|
|
5
|
+
export { AcceptInvitationCard, AccountSettingsCards, AccountView, AccountsCard, AppleIcon, AuthCallback, AuthForm, AuthLoading, AuthUIContext, AuthUIProvider, AuthView, ChangeEmailCard, ChangePasswordCard, CreateOrganizationDialog, CreateTeamDialog, DeleteAccountCard, DeleteOrganizationCard, DiscordIcon, DropboxIcon, FacebookIcon, ForgotPasswordForm, GitHubIcon, GitLabIcon, GoogleIcon, HuggingFaceIcon, InputFieldSkeleton, KickIcon, LinearIcon, LinkedInIcon, MagicLinkForm, MicrosoftIcon, NeonAuthUIProvider, NotionIcon, OrganizationCellView, OrganizationInvitationsCard, OrganizationLogo, OrganizationLogoCard, OrganizationMembersCard, OrganizationNameCard, OrganizationSettingsCards, OrganizationSlugCard, OrganizationSwitcher, OrganizationView, OrganizationsCard, PasskeysCard, PasswordInput, ProvidersCard, RecoverAccountForm, RedditIcon, RedirectToSignIn, RedirectToSignUp, ResetPasswordForm, RobloxIcon, SecuritySettingsCards, SessionsCard, SettingsCard, SettingsCellSkeleton, SignInForm, SignOut, SignUpForm, SignedIn, SignedOut, SlackIcon, SpotifyIcon, TeamCell, TeamsCard, TikTokIcon, TwitchIcon, TwoFactorCard, TwoFactorForm, UpdateAvatarCard, UpdateFieldCard, UpdateNameCard, UpdateUsernameCard, UserAvatar, UserButton, UserInvitationsCard, UserView, VKIcon, XIcon3 as XIcon, ZoomIcon, accountViewPaths, authLocalization, authViewPaths, getViewByPath, organizationViewPaths, socialProviders, useAuthData, useAuthenticate, useCurrentOrganization, useTheme };
|
package/dist/react/ui/server.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { c as getViewByPath, n as authLocalization, r as authViewPaths, t as accountViewPaths, u as organizationViewPaths } from "../../chunk-5DLVHPZS-Bxj7snpZ-DoVNlsyk.mjs";
|
|
2
2
|
|
|
3
3
|
export { accountViewPaths, authLocalization, authViewPaths, getViewByPath, organizationViewPaths };
|