@tangle-network/sandbox-ui 0.3.4 → 0.3.6
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.d.ts +15 -1
- package/dist/auth.js +3 -1
- package/dist/{chunk-HY5IBRCE.js → chunk-DMYYQXPN.js} +407 -250
- package/dist/{chunk-COCSO7FG.js → chunk-PCTEG6HR.js} +69 -1
- package/dist/dashboard.d.ts +1 -1
- package/dist/dashboard.js +7 -1
- package/dist/{index-BOjBJwzD.d.ts → index-BJIPTCKk.d.ts} +46 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +10 -2
- package/dist/pages.d.ts +25 -1
- package/dist/pages.js +541 -221
- package/package.json +1 -1
package/dist/auth.d.ts
CHANGED
|
@@ -53,4 +53,18 @@ interface AuthHeaderProps {
|
|
|
53
53
|
}
|
|
54
54
|
declare function AuthHeader({ user, loading, variant, apiBaseUrl, menuLinks, className, }: AuthHeaderProps): react_jsx_runtime.JSX.Element;
|
|
55
55
|
|
|
56
|
-
|
|
56
|
+
interface LoginLayoutProps {
|
|
57
|
+
brandName?: string;
|
|
58
|
+
tagline?: React.ReactNode;
|
|
59
|
+
subtitle?: string;
|
|
60
|
+
terminalLines?: string[];
|
|
61
|
+
footerLinks?: {
|
|
62
|
+
label: string;
|
|
63
|
+
href: string;
|
|
64
|
+
}[];
|
|
65
|
+
children: React.ReactNode;
|
|
66
|
+
className?: string;
|
|
67
|
+
}
|
|
68
|
+
declare function LoginLayout({ brandName, tagline, subtitle, terminalLines, footerLinks, children, className, }: LoginLayoutProps): react_jsx_runtime.JSX.Element;
|
|
69
|
+
|
|
70
|
+
export { AuthHeader, type AuthHeaderProps, GitHubLoginButton, type GitHubLoginButtonProps, LoginLayout, type LoginLayoutProps, type SessionUser, UserMenu, type UserMenuProps };
|
package/dist/auth.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AuthHeader,
|
|
3
3
|
GitHubLoginButton,
|
|
4
|
+
LoginLayout,
|
|
4
5
|
UserMenu
|
|
5
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-PCTEG6HR.js";
|
|
6
7
|
import "./chunk-B26TQ7SA.js";
|
|
7
8
|
import "./chunk-MCGKDCOR.js";
|
|
8
9
|
import "./chunk-HWLX5NME.js";
|
|
@@ -10,5 +11,6 @@ import "./chunk-RQHJBTEU.js";
|
|
|
10
11
|
export {
|
|
11
12
|
AuthHeader,
|
|
12
13
|
GitHubLoginButton,
|
|
14
|
+
LoginLayout,
|
|
13
15
|
UserMenu
|
|
14
16
|
};
|