@devfellowship/components 1.5.0 → 2.0.0
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/hooks.d.cts +4 -3
- package/dist/hooks.d.ts +4 -3
- package/dist/index.cjs +3690 -868
- package/dist/index.d.cts +1291 -194
- package/dist/index.d.ts +1291 -194
- package/dist/index.js +3788 -976
- package/dist/providers.d.cts +8 -4
- package/dist/providers.d.ts +8 -4
- package/dist/styles/fonts.css +35 -22
- package/dist/styles/theme-mappings.css +20 -12
- package/dist/styles/tokens.css +1218 -1
- package/dist/{use-auth-DdapDv2H.d.cts → use-auth-t8aJ9mx7.d.cts} +7 -2
- package/dist/{use-auth-DdapDv2H.d.ts → use-auth-t8aJ9mx7.d.ts} +7 -2
- package/package.json +8 -9
package/dist/hooks.d.cts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
export { d as AuthContext, A as AuthContextType, U as UserProfile, u as useAuth, c as useSession } from './use-auth-
|
|
3
|
-
import 'react/jsx-runtime';
|
|
2
|
+
export { d as AuthContext, A as AuthContextType, U as UserProfile, u as useAuth, c as useSession } from './use-auth-t8aJ9mx7.cjs';
|
|
4
3
|
import '@supabase/supabase-js';
|
|
5
4
|
|
|
6
5
|
declare function useIsMobile(): boolean;
|
|
@@ -10,7 +9,9 @@ declare function useIsMobile(): boolean;
|
|
|
10
9
|
* Ported from shadcn/ui toast pattern (identical across dfl apps).
|
|
11
10
|
*/
|
|
12
11
|
|
|
13
|
-
type ToastVariant = "default" | "
|
|
12
|
+
type ToastVariant = "default" | "success" | "warning" | "danger" | "info"
|
|
13
|
+
/** @deprecated use "danger" — kept for backward compat */
|
|
14
|
+
| "destructive";
|
|
14
15
|
interface ToastProps {
|
|
15
16
|
id: string;
|
|
16
17
|
title?: React.ReactNode;
|
package/dist/hooks.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
export { d as AuthContext, A as AuthContextType, U as UserProfile, u as useAuth, c as useSession } from './use-auth-
|
|
3
|
-
import 'react/jsx-runtime';
|
|
2
|
+
export { d as AuthContext, A as AuthContextType, U as UserProfile, u as useAuth, c as useSession } from './use-auth-t8aJ9mx7.js';
|
|
4
3
|
import '@supabase/supabase-js';
|
|
5
4
|
|
|
6
5
|
declare function useIsMobile(): boolean;
|
|
@@ -10,7 +9,9 @@ declare function useIsMobile(): boolean;
|
|
|
10
9
|
* Ported from shadcn/ui toast pattern (identical across dfl apps).
|
|
11
10
|
*/
|
|
12
11
|
|
|
13
|
-
type ToastVariant = "default" | "
|
|
12
|
+
type ToastVariant = "default" | "success" | "warning" | "danger" | "info"
|
|
13
|
+
/** @deprecated use "danger" — kept for backward compat */
|
|
14
|
+
| "destructive";
|
|
14
15
|
interface ToastProps {
|
|
15
16
|
id: string;
|
|
16
17
|
title?: React.ReactNode;
|