better-auth-ui 3.2.14 → 3.2.15
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-ui-provider-DGboLH2y.d.cts → auth-ui-provider-D3GrYvcj.d.cts} +1 -1
- package/dist/{auth-ui-provider-B3fzotj0.d.ts → auth-ui-provider-mrVNJ6zj.d.ts} +1 -1
- package/dist/{chunk-GFDS6WTO.js → chunk-BJHZPU6H.js} +11 -10
- package/dist/{chunk-B24ZS3AS.cjs → chunk-GB6DYT26.cjs} +12 -11
- package/dist/index.cjs +126 -121
- package/dist/index.d.cts +35 -3
- package/dist/index.d.ts +35 -3
- package/dist/index.js +6 -1
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/dist/tanstack.cjs +2 -2
- package/dist/tanstack.d.cts +1 -1
- package/dist/tanstack.d.ts +1 -1
- package/dist/tanstack.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +3 -0
package/dist/tanstack.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkGB6DYT26cjs = require('./chunk-GB6DYT26.cjs');
|
|
4
4
|
require('./chunk-42PRTYAB.cjs');
|
|
5
5
|
|
|
6
6
|
// src/lib/tanstack/auth-ui-provider-tanstack.tsx
|
|
@@ -136,7 +136,7 @@ function AuthUIProviderTanstack({
|
|
|
136
136
|
await (onSessionChangeProp == null ? void 0 : onSessionChangeProp());
|
|
137
137
|
}, [onSessionChangeProp, onSessionChange]);
|
|
138
138
|
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
139
|
-
|
|
139
|
+
_chunkGB6DYT26cjs.AuthUIProvider,
|
|
140
140
|
{
|
|
141
141
|
authClient,
|
|
142
142
|
hooks,
|
package/dist/tanstack.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import {
|
|
2
|
+
import { l as AuthUIProviderProps } from './auth-ui-provider-D3GrYvcj.cjs';
|
|
3
3
|
import 'react';
|
|
4
4
|
import './view-paths-CIL7NXLh.cjs';
|
|
5
5
|
import './auth-hooks-BuniCu20.cjs';
|
package/dist/tanstack.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import {
|
|
2
|
+
import { l as AuthUIProviderProps } from './auth-ui-provider-mrVNJ6zj.js';
|
|
3
3
|
import 'react';
|
|
4
4
|
import './view-paths-CIL7NXLh.js';
|
|
5
5
|
import './auth-hooks-BuniCu20.js';
|
package/dist/tanstack.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "better-auth-ui",
|
|
3
3
|
"homepage": "https://stackproviders.github.io/better-auth-ui/",
|
|
4
|
-
"version": "3.2.
|
|
4
|
+
"version": "3.2.15",
|
|
5
5
|
"description": "Plug & play shadcn/ui components for better-auth",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "pnpm build:registry && tsup --clean --dts && shx cp src/style.css dist/style.css",
|
package/src/index.ts
CHANGED
|
@@ -86,4 +86,7 @@ export * from "./types/refetch"
|
|
|
86
86
|
export * from "./types/render-toast"
|
|
87
87
|
export * from "./types/sign-up-options"
|
|
88
88
|
export * from "./types/social-options"
|
|
89
|
+
export * from "./lib/gravatar-utils"
|
|
90
|
+
export * from "./lib/image-utils"
|
|
91
|
+
export * from "./lib/auth-data-cache"
|
|
89
92
|
export * from "./lib/organization-refetcher"
|