@burdenoff/fe-libs 2026.704.1 → 2026.704.2
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/shared/components/LoadingFallback.d.ts +6 -1
- package/dist/shared/components/LoadingFallback.d.ts.map +1 -1
- package/dist/shared/components/LoadingFallback.js +20 -20
- package/dist/shared/components/SSORedirectGuard.d.ts.map +1 -1
- package/dist/shared/components/SSORedirectGuard.js +39 -41
- package/dist/shared/hooks/useRecordProductVisit.js +9 -9
- package/dist/shared/hooks/useReferralAttribution.js +4 -4
- package/dist/shared/providers/AppShellProvider.js +24 -24
- package/dist/shared/tours/ToursContext.js +4 -4
- package/dist/shared-providers-shell.js +21 -21
- package/dist/ui/branded-splash.d.ts +32 -0
- package/dist/ui/branded-splash.d.ts.map +1 -0
- package/dist/ui/branded-splash.js +79 -0
- package/dist/ui/index.d.ts +1 -0
- package/dist/ui/index.d.ts.map +1 -1
- package/dist/ui.js +38 -37
- package/package.json +1 -1
|
@@ -17,7 +17,12 @@ export interface LoadingFallbackProps {
|
|
|
17
17
|
}
|
|
18
18
|
export declare function LoadingFallback({ message, fullScreen, size, }: LoadingFallbackProps): import("react/jsx-runtime").JSX.Element;
|
|
19
19
|
/**
|
|
20
|
-
* PageLoadingFallback - Full page loading state
|
|
20
|
+
* PageLoadingFallback - Full page/route loading state.
|
|
21
|
+
*
|
|
22
|
+
* Renders the shared product-branded splash (inline variant) so navigating
|
|
23
|
+
* between lazy-loaded routes/MFEs shows an animated, product-branded loader in
|
|
24
|
+
* the content area rather than a bare spinner — the nav chrome stays visible.
|
|
25
|
+
* Section-level loads keep the lightweight spinner via SectionLoadingFallback.
|
|
21
26
|
*/
|
|
22
27
|
export declare function PageLoadingFallback({ message }: {
|
|
23
28
|
message?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LoadingFallback.d.ts","sourceRoot":"","sources":["../../../src/shared/components/LoadingFallback.tsx"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;
|
|
1
|
+
{"version":3,"file":"LoadingFallback.d.ts","sourceRoot":"","sources":["../../../src/shared/components/LoadingFallback.tsx"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAMH,MAAM,WAAW,oBAAoB;IACnC,gCAAgC;IAChC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,2CAA2C;IAC3C,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,0BAA0B;IAC1B,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;CAC3B;AAED,wBAAgB,eAAe,CAAC,EAC9B,OAAsB,EACtB,UAAkB,EAClB,IAAW,GACZ,EAAE,oBAAoB,2CAyCtB;AAED;;;;;;;GAOG;AACH,wBAAgB,mBAAmB,CAAC,EAAE,OAAO,EAAE,EAAE;IAAE,OAAO,CAAC,EAAE,MAAM,CAAA;CAAE,2CAEpE;AAED;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,EAAE,OAAO,EAAE,EAAE;IAAE,OAAO,CAAC,EAAE,MAAM,CAAA;CAAE,2CAEvE"}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { BrandedSplash as e } from "../../ui/branded-splash.js";
|
|
2
|
+
import { useEffect as t, useState as n } from "react";
|
|
3
|
+
import { Loader2 as r } from "lucide-react";
|
|
4
|
+
import { jsx as i, jsxs as a } from "react/jsx-runtime";
|
|
4
5
|
//#region src/shared/components/LoadingFallback.tsx
|
|
5
|
-
function
|
|
6
|
-
let [c, l] =
|
|
7
|
-
|
|
6
|
+
function o({ message: e = "Loading...", fullScreen: o = !1, size: s = "md" }) {
|
|
7
|
+
let [c, l] = n(!1);
|
|
8
|
+
t(() => {
|
|
8
9
|
let e = setTimeout(() => l(!0), 200);
|
|
9
10
|
return () => clearTimeout(e);
|
|
10
11
|
}, []);
|
|
@@ -13,34 +14,33 @@ function a({ message: a = "Loading...", fullScreen: o = !1, size: s = "md" }) {
|
|
|
13
14
|
md: "w-8 h-8",
|
|
14
15
|
lg: "w-12 h-12"
|
|
15
16
|
};
|
|
16
|
-
if (!c) return o ? /* @__PURE__ */
|
|
17
|
-
let d = /* @__PURE__ */
|
|
17
|
+
if (!c) return o ? /* @__PURE__ */ i("div", { className: "min-h-screen bg-bg-canvas" }) : /* @__PURE__ */ i("div", { className: "p-8" });
|
|
18
|
+
let d = /* @__PURE__ */ a("div", {
|
|
18
19
|
className: "flex flex-col items-center justify-center gap-3 animate-in fade-in duration-300",
|
|
19
|
-
children: [/* @__PURE__ */ r
|
|
20
|
+
children: [/* @__PURE__ */ i(r, { className: `${u[s]} text-brand-primary animate-spin` }), e && /* @__PURE__ */ i("span", {
|
|
20
21
|
className: "text-text-secondary text-sm",
|
|
21
|
-
children:
|
|
22
|
+
children: e
|
|
22
23
|
})]
|
|
23
24
|
});
|
|
24
|
-
return o ? /* @__PURE__ */
|
|
25
|
+
return o ? /* @__PURE__ */ i("div", {
|
|
25
26
|
className: "flex items-center justify-center min-h-screen bg-bg-canvas animate-in fade-in duration-300",
|
|
26
27
|
children: d
|
|
27
|
-
}) : /* @__PURE__ */
|
|
28
|
+
}) : /* @__PURE__ */ i("div", {
|
|
28
29
|
className: "flex items-center justify-center p-8 animate-in fade-in duration-300",
|
|
29
30
|
children: d
|
|
30
31
|
});
|
|
31
32
|
}
|
|
32
|
-
function
|
|
33
|
-
return /* @__PURE__ */
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
size: "lg"
|
|
33
|
+
function s({ message: t }) {
|
|
34
|
+
return /* @__PURE__ */ i(e, {
|
|
35
|
+
variant: "inline",
|
|
36
|
+
label: t
|
|
37
37
|
});
|
|
38
38
|
}
|
|
39
|
-
function
|
|
40
|
-
return /* @__PURE__ */
|
|
39
|
+
function c({ message: e }) {
|
|
40
|
+
return /* @__PURE__ */ i(o, {
|
|
41
41
|
message: e,
|
|
42
42
|
size: "md"
|
|
43
43
|
});
|
|
44
44
|
}
|
|
45
45
|
//#endregion
|
|
46
|
-
export {
|
|
46
|
+
export { o as LoadingFallback, s as PageLoadingFallback, c as SectionLoadingFallback };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SSORedirectGuard.d.ts","sourceRoot":"","sources":["../../../src/shared/components/SSORedirectGuard.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;
|
|
1
|
+
{"version":3,"file":"SSORedirectGuard.d.ts","sourceRoot":"","sources":["../../../src/shared/components/SSORedirectGuard.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAuGH,wBAAgB,qBAAqB,CAAC,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,CAGlE;AAED,wBAAgB,2BAA2B,CAAC,WAAW,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAM1F;AAED,wBAAgB,sBAAsB,CAAC,WAAW,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,IAAI,CAiBlF;AAmDD,wBAAgB,iBAAiB,CAAC,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CA4CpE;AAED;;;;;;;;;GASG;AACH,wBAAgB,QAAQ,IAAI,OAAO,CA6BlC;AAED;;;;;;;;;GASG;AACH,wBAAsB,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAyC9F;AAED;;GAEG;AACH,wBAAgB,mBAAmB,IAAI,IAAI,CA6B1C;AAED;;;GAGG;AACH,wBAAgB,kBAAkB,4CAEjC"}
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { resolveAuthBridgeConfig as e } from "../config/authBridgeUrls.js";
|
|
2
2
|
import { clearActiveContextStorage as t } from "../providers/shell/ActiveContextStorage.js";
|
|
3
3
|
import { clearShellSsoCookies as n, isLocalDevSsoHost as r, isSharedSsoCookieDomain as i, isTrustedSsoOrigin as a, readShellSsoCookie as o } from "../utils/authCookie.js";
|
|
4
|
-
import {
|
|
4
|
+
import { BrandedSplash as s } from "../../ui/branded-splash.js";
|
|
5
|
+
import { jsx as c } from "react/jsx-runtime";
|
|
5
6
|
//#region src/shared/components/SSORedirectGuard.tsx
|
|
6
|
-
var
|
|
7
|
+
var l = "bf-sso-relay-attempt", u = 120 * 1e3, d = [
|
|
7
8
|
"sso_failed",
|
|
8
9
|
"sso-failed",
|
|
9
10
|
"sso-attempted"
|
|
10
11
|
];
|
|
11
|
-
function
|
|
12
|
+
function f(e) {
|
|
12
13
|
if (typeof window > "u") return null;
|
|
13
14
|
try {
|
|
14
15
|
let t = `${window.location.pathname}${window.location.search}${window.location.hash}`, n = new URL(e ?? t, window.location.origin);
|
|
@@ -17,66 +18,66 @@ function d(e) {
|
|
|
17
18
|
return null;
|
|
18
19
|
}
|
|
19
20
|
}
|
|
20
|
-
function f(e) {
|
|
21
|
-
return e === "/auth" || e.startsWith("/auth/");
|
|
22
|
-
}
|
|
23
21
|
function p(e) {
|
|
24
|
-
return
|
|
22
|
+
return e === "/auth" || e.startsWith("/auth/");
|
|
25
23
|
}
|
|
26
24
|
function m(e) {
|
|
27
|
-
|
|
28
|
-
|
|
25
|
+
return d.some((t) => e.searchParams.has(t));
|
|
26
|
+
}
|
|
27
|
+
function h(e) {
|
|
28
|
+
if (m(e)) return n(), !0;
|
|
29
|
+
if (p(e.pathname)) return !0;
|
|
29
30
|
let t = e.searchParams.get("reason");
|
|
30
31
|
return t === "session-expired" || t === "logout";
|
|
31
32
|
}
|
|
32
|
-
function
|
|
33
|
+
function g() {
|
|
33
34
|
try {
|
|
34
|
-
sessionStorage.removeItem(
|
|
35
|
+
sessionStorage.removeItem(l);
|
|
35
36
|
} catch {}
|
|
36
37
|
}
|
|
37
|
-
function
|
|
38
|
+
function _() {
|
|
38
39
|
if (typeof window > "u") return null;
|
|
39
40
|
try {
|
|
40
|
-
let e = sessionStorage.getItem(
|
|
41
|
+
let e = sessionStorage.getItem(l);
|
|
41
42
|
if (!e) return null;
|
|
42
43
|
let t = JSON.parse(e);
|
|
43
|
-
return typeof t.relayOrigin != "string" || typeof t.returnTo != "string" || typeof t.startedAt != "number" || Date.now() - t.startedAt >
|
|
44
|
+
return typeof t.relayOrigin != "string" || typeof t.returnTo != "string" || typeof t.startedAt != "number" || Date.now() - t.startedAt > u ? (g(), null) : {
|
|
44
45
|
relayOrigin: t.relayOrigin,
|
|
45
46
|
returnTo: t.returnTo,
|
|
46
47
|
startedAt: t.startedAt
|
|
47
48
|
};
|
|
48
49
|
} catch {
|
|
49
|
-
return
|
|
50
|
+
return g(), null;
|
|
50
51
|
}
|
|
51
52
|
}
|
|
52
|
-
function
|
|
53
|
+
function v(e) {
|
|
53
54
|
try {
|
|
54
55
|
return new URL(e).origin;
|
|
55
56
|
} catch {
|
|
56
57
|
return null;
|
|
57
58
|
}
|
|
58
59
|
}
|
|
59
|
-
function
|
|
60
|
-
let t =
|
|
61
|
-
return !t ||
|
|
60
|
+
function y(e) {
|
|
61
|
+
let t = f(e);
|
|
62
|
+
return !t || h(t);
|
|
62
63
|
}
|
|
63
|
-
function
|
|
64
|
-
let n =
|
|
64
|
+
function b(e, t) {
|
|
65
|
+
let n = v(e), r = f(t), i = _();
|
|
65
66
|
return !!(n && r && i?.returnTo === r.href);
|
|
66
67
|
}
|
|
67
|
-
function
|
|
68
|
+
function x(e, t) {
|
|
68
69
|
if (typeof window > "u") return;
|
|
69
|
-
let n =
|
|
70
|
+
let n = v(e), r = f(t);
|
|
70
71
|
if (!(!n || !r)) try {
|
|
71
72
|
let e = {
|
|
72
73
|
relayOrigin: n,
|
|
73
74
|
returnTo: r.href,
|
|
74
75
|
startedAt: Date.now()
|
|
75
76
|
};
|
|
76
|
-
sessionStorage.setItem(
|
|
77
|
+
sessionStorage.setItem(l, JSON.stringify(e));
|
|
77
78
|
} catch {}
|
|
78
79
|
}
|
|
79
|
-
function
|
|
80
|
+
function S() {
|
|
80
81
|
if (typeof window > "u") return !1;
|
|
81
82
|
try {
|
|
82
83
|
let e = window.Capacitor;
|
|
@@ -84,35 +85,35 @@ function x() {
|
|
|
84
85
|
} catch {}
|
|
85
86
|
return !!(typeof navigator < "u" && /Electron/i.test(navigator.userAgent || ""));
|
|
86
87
|
}
|
|
87
|
-
function
|
|
88
|
-
if (
|
|
88
|
+
function C(t) {
|
|
89
|
+
if (S()) return null;
|
|
89
90
|
try {
|
|
90
|
-
let n =
|
|
91
|
-
if (!n ||
|
|
91
|
+
let n = f(t);
|
|
92
|
+
if (!n || h(n) || r()) return null;
|
|
92
93
|
let i = window.location.origin, s = o();
|
|
93
94
|
if (s?.origin && a(s.origin)) {
|
|
94
95
|
let e = new URL(s.origin).origin;
|
|
95
|
-
if (e && e !== i && !
|
|
96
|
+
if (e && e !== i && !b(e, n.href)) return x(e, n.href), `${e}/auth/sso-relay?returnTo=${encodeURIComponent(n.href)}`;
|
|
96
97
|
}
|
|
97
98
|
try {
|
|
98
99
|
let t = e(), r = new URL(t.url).origin;
|
|
99
|
-
if (r && r !== i && !
|
|
100
|
+
if (r && r !== i && !b(r, n.href)) return x(r, n.href), `${r}/auth/sso-relay?returnTo=${encodeURIComponent(n.href)}`;
|
|
100
101
|
} catch {}
|
|
101
102
|
return null;
|
|
102
103
|
} catch {
|
|
103
104
|
return null;
|
|
104
105
|
}
|
|
105
106
|
}
|
|
106
|
-
function
|
|
107
|
+
function w() {
|
|
107
108
|
try {
|
|
108
109
|
if (o()) return !1;
|
|
109
110
|
let e = sessionStorage.getItem("bf-active-profile");
|
|
110
|
-
return !e || !localStorage.getItem(`bf-p-${e}-tokens`) || !i() ? !1 : (
|
|
111
|
+
return !e || !localStorage.getItem(`bf-p-${e}-tokens`) || !i() ? !1 : (E(), !0);
|
|
111
112
|
} catch {
|
|
112
113
|
return !1;
|
|
113
114
|
}
|
|
114
115
|
}
|
|
115
|
-
async function
|
|
116
|
+
async function T(e, t) {
|
|
116
117
|
try {
|
|
117
118
|
let n = await fetch(e, {
|
|
118
119
|
method: "POST",
|
|
@@ -129,7 +130,7 @@ async function w(e, t) {
|
|
|
129
130
|
return !1;
|
|
130
131
|
}
|
|
131
132
|
}
|
|
132
|
-
function
|
|
133
|
+
function E() {
|
|
133
134
|
try {
|
|
134
135
|
let e = localStorage.getItem("bf-profiles");
|
|
135
136
|
if (e) {
|
|
@@ -140,11 +141,8 @@ function T() {
|
|
|
140
141
|
localStorage.removeItem("bf-profiles"), localStorage.removeItem("auth-storage"), sessionStorage.removeItem("bf-active-profile"), t(), n(), window.dispatchEvent(new Event("bf-auth-state-cleared")), window.dispatchEvent(new Event("bf-profile-storage-change"));
|
|
141
142
|
} catch {}
|
|
142
143
|
}
|
|
143
|
-
function
|
|
144
|
-
return /* @__PURE__ */ s
|
|
145
|
-
className: "flex items-center justify-center min-h-screen",
|
|
146
|
-
children: /* @__PURE__ */ s("div", { className: "animate-spin rounded-full size-8 border-2 border-action-primary-bg border-t-transparent" })
|
|
147
|
-
});
|
|
144
|
+
function D() {
|
|
145
|
+
return /* @__PURE__ */ c(s, { label: "Signing you in…" });
|
|
148
146
|
}
|
|
149
147
|
//#endregion
|
|
150
|
-
export {
|
|
148
|
+
export { D as SSORedirectSpinner, T as checkRemoteSLO, w as checkSLO, E as clearLocalAuthState, C as getSSORedirectUrl, b as hasRecentSSORedirectAttempt, x as markSSORedirectAttempt, y as shouldSkipSSORedirect };
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { graphqlFetch as e } from "../graphql/fetch.js";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
2
|
+
import { useAppShell as t } from "../providers/shell/AppShellContext.js";
|
|
3
|
+
import { useAuth as n } from "../providers/shell/AuthProvider.js";
|
|
4
|
+
import { logManager as r } from "../logger/LogManager.js";
|
|
5
5
|
import "../../shared-logger.js";
|
|
6
6
|
import { useEffect as i, useRef as a } from "react";
|
|
7
7
|
//#region src/shared/hooks/useRecordProductVisit.ts
|
|
8
|
-
var o =
|
|
8
|
+
var o = r.getLogger("useRecordProductVisit"), s = "\n mutation RecordProductVisit($input: RecordProductVisitInput!) {\n recordProductVisit(input: $input) {\n isFirstVisit\n productSlug\n recordedAt\n welcomeEmailStatus\n welcomeEmailMessageId\n }\n }\n";
|
|
9
9
|
function c(e, t) {
|
|
10
10
|
return `boff:product-visit-recorded:${t}:${e}`;
|
|
11
11
|
}
|
|
@@ -22,12 +22,12 @@ function u(e, t) {
|
|
|
22
22
|
window.sessionStorage.setItem(c(e, t), "1");
|
|
23
23
|
} catch {}
|
|
24
24
|
}
|
|
25
|
-
function d(
|
|
26
|
-
let { productSlug: c } =
|
|
25
|
+
function d(r = {}) {
|
|
26
|
+
let { productSlug: c } = t(), { user: d, tokens: f } = n(), p = r.productSlug ?? c, m = r.enabled !== !1, h = a(!1);
|
|
27
27
|
i(() => {
|
|
28
28
|
if (!m || !p || !d?.id || !f?.accessToken || l(d.id, p) || h.current) return;
|
|
29
29
|
h.current = !0;
|
|
30
|
-
let t =
|
|
30
|
+
let t = r.appUrl ?? (typeof window < "u" ? window.location.origin : void 0), n = f.accessToken, i = d.id;
|
|
31
31
|
e({
|
|
32
32
|
gateway: "global",
|
|
33
33
|
query: s,
|
|
@@ -36,7 +36,7 @@ function d(n = {}) {
|
|
|
36
36
|
productSlug: p,
|
|
37
37
|
appUrl: t
|
|
38
38
|
} },
|
|
39
|
-
authToken:
|
|
39
|
+
authToken: n,
|
|
40
40
|
suppressGlobalErrorEvent: !0
|
|
41
41
|
}).then((e) => {
|
|
42
42
|
if (e.errors?.length) {
|
|
@@ -64,7 +64,7 @@ function d(n = {}) {
|
|
|
64
64
|
p,
|
|
65
65
|
d?.id,
|
|
66
66
|
f?.accessToken,
|
|
67
|
-
|
|
67
|
+
r.appUrl
|
|
68
68
|
]);
|
|
69
69
|
}
|
|
70
70
|
//#endregion
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { graphqlFetch as e } from "../graphql/fetch.js";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
2
|
+
import { useAppShell as t } from "../providers/shell/AppShellContext.js";
|
|
3
|
+
import { useAuth as n } from "../providers/shell/AuthProvider.js";
|
|
4
|
+
import { useActiveContext as r } from "../providers/shell/ActiveContextProvider.js";
|
|
5
5
|
import { useEffect as i, useMemo as a, useRef as o } from "react";
|
|
6
6
|
import { useLocation as s } from "react-router-dom";
|
|
7
7
|
//#region src/shared/hooks/useReferralAttribution.ts
|
|
@@ -38,7 +38,7 @@ function f(e) {
|
|
|
38
38
|
return null;
|
|
39
39
|
}
|
|
40
40
|
function p() {
|
|
41
|
-
let c = s(), { productSlug: l } =
|
|
41
|
+
let c = s(), { productSlug: l } = t(), { user: p, tokens: m } = n(), { organizationId: h } = r(), g = o(null), _ = o(null), v = a(() => f(c.search) ?? u()?.code ?? null, [c.search]);
|
|
42
42
|
i(() => {
|
|
43
43
|
if (!v || c.pathname.startsWith("/auth/")) return;
|
|
44
44
|
let t = `${c.pathname}${c.search}${c.hash}`, n = u(), r = n?.code === v ? n : {
|
|
@@ -3,25 +3,25 @@ import { readActiveContextValueWithUrlPrecedence as t } from "./shell/ActiveCont
|
|
|
3
3
|
import { BACKEND_ERROR_EVENT as n, CONNECTION_STATUS_EVENT as r, dispatchBackendErrorEvent as i, isBackendErrorDisplay as a, shouldToastBackendError as o } from "../utils/backendErrors.js";
|
|
4
4
|
import { graphqlFetch as s } from "../graphql/fetch.js";
|
|
5
5
|
import { attemptTokenRefresh as c, clearAuthSessionStorage as l, isAuthNetworkError as u } from "../utils/authErrorHandling.js";
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
6
|
+
import { AppShellContextProvider as d } from "./shell/AppShellContext.js";
|
|
7
|
+
import { AuthProvider as f } from "./shell/AuthProvider.js";
|
|
8
|
+
import { ActiveContextProvider as p } from "./shell/ActiveContextProvider.js";
|
|
9
|
+
import { LogManager as ee } from "../logger/LogManager.js";
|
|
10
|
+
import { ConsoleTransport as te } from "../logger/ConsoleTransport.js";
|
|
10
11
|
import { ThemeProvider as m } from "./shell/ThemeProvider.js";
|
|
11
|
-
import { ErrorFallback as
|
|
12
|
+
import { ErrorFallback as ne } from "../components/ErrorFallback.js";
|
|
12
13
|
import { m as h } from "../../node_modules/react-error-boundary/dist/react-error-boundary.js";
|
|
13
14
|
import { PWAInstallBanner as g } from "../components/PWAInstallBanner.js";
|
|
14
15
|
import { FeatureFlagsProvider as _ } from "./shell/FeatureFlagsProvider.js";
|
|
15
16
|
import { FeatureFlagProvider as v } from "../feature-flags/FeatureFlagProvider.js";
|
|
16
17
|
import { GlobalUiProvider as y } from "./shell/GlobalUiProvider.js";
|
|
17
18
|
import { ShellUiProvider as b } from "./shell/ShellUiProvider.js";
|
|
18
|
-
import { ContextManagerProvider as
|
|
19
|
-
import { AuthTokenProvider as
|
|
20
|
-
import { MultiGatewayProvider as
|
|
19
|
+
import { ContextManagerProvider as re } from "./shell/ContextManagerProvider.js";
|
|
20
|
+
import { AuthTokenProvider as ie } from "./shell/AuthTokenProvider.js";
|
|
21
|
+
import { MultiGatewayProvider as ae } from "./shell/MultiGatewayProvider.js";
|
|
21
22
|
import { G as x, j as S, w as C } from "../../node_modules/web-vitals/dist/web-vitals.js";
|
|
22
|
-
import { ProfileI18nBridge as
|
|
23
|
-
import { ProfileGeographyBridge as
|
|
24
|
-
import { AppShellContextProvider as oe } from "./shell/AppShellContext.js";
|
|
23
|
+
import { ProfileI18nBridge as oe } from "./shell/ProfileI18nBridge.js";
|
|
24
|
+
import { ProfileGeographyBridge as w } from "./shell/ProfileGeographyBridge.js";
|
|
25
25
|
import { DevtoolsSink as se } from "../events/sinks/DevtoolsSink.js";
|
|
26
26
|
import { BroadcastChannelSink as T } from "../events/sinks/BroadcastChannelSink.js";
|
|
27
27
|
import { BackendAuditSink as E } from "../events/sinks/BackendAuditSink.js";
|
|
@@ -212,7 +212,7 @@ function ve() {
|
|
|
212
212
|
function ye({ children: e, i18nProductId: t, fallbackTranslations: n, defaultBrand: r, defaultMode: i, defaultDensity: a, defaultTypography: o, defaultGlass: s, productName: c, brandInitial: l, enablePWA: u, toasterPosition: d }) {
|
|
213
213
|
let f = U();
|
|
214
214
|
A();
|
|
215
|
-
let p = /* @__PURE__ */ V(
|
|
215
|
+
let p = /* @__PURE__ */ V(w, { children: /* @__PURE__ */ V(_, { children: /* @__PURE__ */ V(v, {
|
|
216
216
|
workspaceId: null,
|
|
217
217
|
gateway: "global",
|
|
218
218
|
defaultEnabled: !0,
|
|
@@ -236,7 +236,7 @@ function ye({ children: e, i18nProductId: t, fallbackTranslations: n, defaultBra
|
|
|
236
236
|
defaultDensity: a,
|
|
237
237
|
defaultTypography: o,
|
|
238
238
|
defaultGlass: s,
|
|
239
|
-
children: [/* @__PURE__ */ V(be, {}), /* @__PURE__ */ V(
|
|
239
|
+
children: [/* @__PURE__ */ V(be, {}), /* @__PURE__ */ V(oe, {
|
|
240
240
|
i18nProductId: t,
|
|
241
241
|
fallbackTranslations: n,
|
|
242
242
|
children: p
|
|
@@ -354,7 +354,7 @@ function Ce({ config: e, productSlug: t }) {
|
|
|
354
354
|
] })] });
|
|
355
355
|
}
|
|
356
356
|
function we({ config: n, children: r, clearAuthStore: a }) {
|
|
357
|
-
let { productName: o, productSlug: m = o.toLowerCase().replace(/\s+/g, ""), tagline: g = "", domain: _, i18nProductId: v, gatewayUrls: y, authBridge: b, defaultBrand: x = "default", defaultMode: S, defaultDensity: C, defaultTypography:
|
|
357
|
+
let { productName: o, productSlug: m = o.toLowerCase().replace(/\s+/g, ""), tagline: g = "", domain: _, i18nProductId: v, gatewayUrls: y, authBridge: b, defaultBrand: x = "default", defaultMode: S, defaultDensity: C, defaultTypography: oe, defaultGlass: w, enablePWA: se = !0, brandInitial: T = o.charAt(0), defaultGateway: E = "workspace", enableSubscriptions: D = !0, fallbackTranslations: O, queryClientOptions: k, toasterPosition: A = "bottom-right", observability: j } = n, M = j ?? Q(m, me()), N = R(() => ({
|
|
358
358
|
productName: o,
|
|
359
359
|
productSlug: m,
|
|
360
360
|
brandInitial: T,
|
|
@@ -429,9 +429,9 @@ function we({ config: n, children: r, clearAuthStore: a }) {
|
|
|
429
429
|
return e;
|
|
430
430
|
}, [k]);
|
|
431
431
|
return L(() => {
|
|
432
|
-
let e =
|
|
433
|
-
e.getLogger("shell") || e.getLogger("shell").addTransport(new
|
|
434
|
-
}, []), /* @__PURE__ */ V(
|
|
432
|
+
let e = ee.getInstance();
|
|
433
|
+
e.getLogger("shell") || e.getLogger("shell").addTransport(new te());
|
|
434
|
+
}, []), /* @__PURE__ */ V(d, {
|
|
435
435
|
value: N,
|
|
436
436
|
children: /* @__PURE__ */ V(ce, {
|
|
437
437
|
appName: m,
|
|
@@ -439,13 +439,13 @@ function we({ config: n, children: r, clearAuthStore: a }) {
|
|
|
439
439
|
appEnv: M.appEnv,
|
|
440
440
|
sourceMfe: m,
|
|
441
441
|
children: /* @__PURE__ */ V(h, {
|
|
442
|
-
FallbackComponent:
|
|
442
|
+
FallbackComponent: ne,
|
|
443
443
|
children: /* @__PURE__ */ H(le, { children: [/* @__PURE__ */ V(Ce, {
|
|
444
444
|
config: M,
|
|
445
445
|
productSlug: m
|
|
446
446
|
}), /* @__PURE__ */ V(pe, {
|
|
447
447
|
client: Z,
|
|
448
|
-
children: /* @__PURE__ */ V(
|
|
448
|
+
children: /* @__PURE__ */ V(ie, { children: /* @__PURE__ */ V(ae, {
|
|
449
449
|
workspaceBaseUrl: y.workspaceBaseUrl,
|
|
450
450
|
globalBaseUrl: y.globalBaseUrl,
|
|
451
451
|
organizationId: X,
|
|
@@ -455,7 +455,7 @@ function we({ config: n, children: r, clearAuthStore: a }) {
|
|
|
455
455
|
onAuthError: q,
|
|
456
456
|
onNetworkError: J,
|
|
457
457
|
onRefreshToken: K,
|
|
458
|
-
children: /* @__PURE__ */ V(
|
|
458
|
+
children: /* @__PURE__ */ V(f, {
|
|
459
459
|
bridgeUrl: b?.url,
|
|
460
460
|
bridgeAllowedOrigins: b?.allowedOrigins,
|
|
461
461
|
bridgeDebug: b?.debug,
|
|
@@ -469,16 +469,16 @@ function we({ config: n, children: r, clearAuthStore: a }) {
|
|
|
469
469
|
onTokenExpired: () => {
|
|
470
470
|
W();
|
|
471
471
|
},
|
|
472
|
-
children: /* @__PURE__ */ V(
|
|
472
|
+
children: /* @__PURE__ */ V(p, {
|
|
473
473
|
syncToUrl: !0,
|
|
474
|
-
children: /* @__PURE__ */ V(
|
|
474
|
+
children: /* @__PURE__ */ V(re, { children: /* @__PURE__ */ V(ye, {
|
|
475
475
|
i18nProductId: v,
|
|
476
476
|
fallbackTranslations: O,
|
|
477
477
|
defaultBrand: x,
|
|
478
478
|
defaultMode: S,
|
|
479
479
|
defaultDensity: C,
|
|
480
|
-
defaultTypography:
|
|
481
|
-
defaultGlass:
|
|
480
|
+
defaultTypography: oe,
|
|
481
|
+
defaultGlass: w,
|
|
482
482
|
productName: o,
|
|
483
483
|
brandInitial: T,
|
|
484
484
|
enablePWA: se,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { useGatewayClient as e } from "../graphql/GatewayContext.js";
|
|
2
2
|
import "../../shared-graphql.js";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
3
|
+
import { useAppShell as t } from "../providers/shell/AppShellContext.js";
|
|
4
|
+
import { useAuth as n } from "../providers/shell/AuthProvider.js";
|
|
5
|
+
import { useActiveContext as r } from "../providers/shell/ActiveContextProvider.js";
|
|
6
6
|
import { useLogger as i } from "../logger/useLogger.js";
|
|
7
7
|
import "../../shared-logger.js";
|
|
8
8
|
import { isTourVisibleForContext as a } from "./routeCatalog.js";
|
|
@@ -18,7 +18,7 @@ import { useLocation as y } from "react-router-dom";
|
|
|
18
18
|
//#region src/shared/tours/ToursContext.tsx
|
|
19
19
|
var b = f(null);
|
|
20
20
|
function x({ children: f, defaultPageId: p = "home", getPageIdFromPath: x, disabled: S = !1 }) {
|
|
21
|
-
let C = y(), w = e("global"), { workspaceId: T } =
|
|
21
|
+
let C = y(), w = e("global"), { workspaceId: T } = r(), { user: E } = n(), { productSlug: D } = t(), O = i("ToursContext"), k = T ?? void 0, A = S || C.pathname.startsWith("/devportal"), { moduleId: j, pageId: M } = g(() => d(C.pathname, D, p, x), [
|
|
22
22
|
p,
|
|
23
23
|
x,
|
|
24
24
|
C.pathname,
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
import { ProfileStorageManager_exports as e, clearActiveProfileId as t, getActiveContext as n, getActiveTokens as r, getActiveUser as i, getProfileLocale as a, logoutActiveProfile as o, removeAllProfiles as s, setProfileLocale as c, setProfiles as l } from "./shared/providers/shell/ProfileStorageManager.js";
|
|
2
2
|
import { AuthBridgeClient as u, destroyAuthBridge as d, getAuthBridge as f, initAuthBridge as p, isAuthBridgeInitialized as m } from "./shared/providers/shell/AuthBridgeClient.js";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
3
|
+
import { AppShellContextProvider as h, useAppShell as g } from "./shared/providers/shell/AppShellContext.js";
|
|
4
|
+
import { AuthProvider as _, useAuth as v } from "./shared/providers/shell/AuthProvider.js";
|
|
5
|
+
import { ActiveContextProvider as y, useActiveContext as b } from "./shared/providers/shell/ActiveContextProvider.js";
|
|
6
|
+
import { ThemeProvider as x, useTheme as S } from "./shared/providers/shell/ThemeProvider.js";
|
|
7
|
+
import { PermissionProvider as C, SUPER_ADMIN_ACTOR_TYPE as w, SUPER_ADMIN_ROLE as T, hasMatchingPermission as E, isSuperAdminBypass as D, matchPermission as O, usePermission as k, usePermissionLoading as A, usePermissions as j, useRole as M } from "./shared/providers/shell/PermissionProvider.js";
|
|
8
|
+
import { I18nProvider as N, clearTranslationCache as P, isTranslationAttempted as F, useI18n as I } from "./shared/providers/shell/I18nProvider.js";
|
|
9
|
+
import { FeatureFlagsProvider as L, useFeatureFlags as R } from "./shared/providers/shell/FeatureFlagsProvider.js";
|
|
10
|
+
import { FeatureFlagProvider as z } from "./shared/feature-flags/FeatureFlagProvider.js";
|
|
11
|
+
import { useFeatureFlag as B, useFeatureFlagDetails as V, useFeatureFlagValue as H } from "./shared/feature-flags/useFeatureFlag.js";
|
|
12
|
+
import { FeatureGate as U } from "./shared/feature-flags/FeatureGate.js";
|
|
12
13
|
import "./shared-feature-flags.js";
|
|
13
|
-
import { GlobalUiProvider as
|
|
14
|
-
import { ShellUiProvider as
|
|
15
|
-
import { ContextManagerProvider as
|
|
16
|
-
import { GeographyProvider as
|
|
17
|
-
import { AuthTokenProvider as
|
|
18
|
-
import { MultiGatewayProvider as
|
|
19
|
-
import { ObservabilityProvider as
|
|
20
|
-
import { GatewayRoute as
|
|
21
|
-
import { ProfileI18nBridge as
|
|
22
|
-
import { ProfileGeographyBridge as
|
|
23
|
-
import { AppShellContextProvider as ae, useAppShell as oe } from "./shared/providers/shell/AppShellContext.js";
|
|
14
|
+
import { GlobalUiProvider as W, useGlobalUi as G } from "./shared/providers/shell/GlobalUiProvider.js";
|
|
15
|
+
import { ShellUiProvider as K, useShellUi as q } from "./shared/providers/shell/ShellUiProvider.js";
|
|
16
|
+
import { ContextManagerProvider as J, useContextManager as Y } from "./shared/providers/shell/ContextManagerProvider.js";
|
|
17
|
+
import { GeographyProvider as X, useGeography as Z } from "./shared/geography/GeographyProvider.js";
|
|
18
|
+
import { AuthTokenProvider as Q, useAuthToken as $ } from "./shared/providers/shell/AuthTokenProvider.js";
|
|
19
|
+
import { MultiGatewayProvider as ee } from "./shared/providers/shell/MultiGatewayProvider.js";
|
|
20
|
+
import { ObservabilityProvider as te } from "./shared/providers/shell/ObservabilityProvider.js";
|
|
21
|
+
import { GatewayRoute as ne, getMicrofrontendGateway as re, withGateway as ie } from "./shared/providers/shell/GatewayRouter.js";
|
|
22
|
+
import { ProfileI18nBridge as ae } from "./shared/providers/shell/ProfileI18nBridge.js";
|
|
23
|
+
import { ProfileGeographyBridge as oe } from "./shared/providers/shell/ProfileGeographyBridge.js";
|
|
24
24
|
import { PageConversationContextProvider as se, usePageConversationContext as ce, useRegisterPageConversationContext as le } from "./shared/providers/shell/PageConversationContextProvider.js";
|
|
25
|
-
export {
|
|
25
|
+
export { y as ActiveContextProvider, h as AppShellContextProvider, u as AuthBridgeClient, _ as AuthProvider, Q as AuthTokenProvider, J as ContextManagerProvider, z as FeatureFlagProvider, L as FeatureFlagsProvider, U as FeatureGate, ne as GatewayRoute, X as GeographyProvider, W as GlobalUiProvider, N as I18nProvider, ee as MultiGatewayProvider, te as ObservabilityProvider, se as PageConversationContextProvider, C as PermissionProvider, oe as ProfileGeographyBridge, ae as ProfileI18nBridge, e as ProfileStorage, w as SUPER_ADMIN_ACTOR_TYPE, T as SUPER_ADMIN_ROLE, K as ShellUiProvider, x as ThemeProvider, t as clearActiveProfileId, P as clearTranslationCache, d as destroyAuthBridge, n as getActiveContext, r as getActiveTokens, i as getActiveUser, f as getAuthBridge, re as getMicrofrontendGateway, a as getProfileLocale, E as hasMatchingPermission, p as initAuthBridge, m as isAuthBridgeInitialized, D as isSuperAdminBypass, F as isTranslationAttempted, o as logoutActiveProfile, O as matchPermission, s as removeAllProfiles, c as setProfileLocale, l as setProfiles, b as useActiveContext, g as useAppShell, v as useAuth, $ as useAuthToken, Y as useContextManager, B as useFeatureFlag, V as useFeatureFlagDetails, H as useFeatureFlagValue, R as useFeatureFlags, Z as useGeography, G as useGlobalUi, I as useI18n, ce as usePageConversationContext, k as usePermission, A as usePermissionLoading, j as usePermissions, le as useRegisterPageConversationContext, M as useRole, q as useShellUi, S as useTheme, ie as withGateway };
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'react';
|
|
2
|
+
/**
|
|
3
|
+
* BrandedSplash — the shared, product-agnostic loading indicator shown during
|
|
4
|
+
* navigation, MFE lazy-load (Suspense fallback), and the cross-product SSO
|
|
5
|
+
* bounce. It replaces the bare spinner / blank screen that previously flashed
|
|
6
|
+
* on every product shell except vibecontrols, so the "not seamless" hand-off
|
|
7
|
+
* between products (login → SSO deposit → dashboard) reads as one branded flow.
|
|
8
|
+
*
|
|
9
|
+
* Product identity (name, tagline, brand initial) comes from `useAppShell()`,
|
|
10
|
+
* which returns safe defaults even when rendered OUTSIDE an AppShellProvider —
|
|
11
|
+
* e.g. from `SSORedirectSpinner`, which can render during the pre-provider
|
|
12
|
+
* redirect handshake. The logo is served from the shell's PWA icon
|
|
13
|
+
* (`/icons/icon.svg`); if it 404s we fall back to a branded initial tile, so
|
|
14
|
+
* the component is correct on every shell without per-shell asset wiring.
|
|
15
|
+
*
|
|
16
|
+
* Styling is token-only (no raw colors) so the per-product brand accent
|
|
17
|
+
* (`--color-accent-primary`) auto-applies. All motion is CSS-based and disabled
|
|
18
|
+
* under `prefers-reduced-motion` / `data-reduce-motion` (Boff UI 2.0), and a
|
|
19
|
+
* short anti-flash delay avoids a flicker on sub-200ms loads.
|
|
20
|
+
*/
|
|
21
|
+
export interface BrandedSplashProps extends Omit<HTMLAttributes<HTMLDivElement>, 'children'> {
|
|
22
|
+
/** Status line under the wordmark. Defaults to "Loading <product>…". */
|
|
23
|
+
label?: string;
|
|
24
|
+
/** `fullscreen` (fixed overlay) or `inline` (fills its container). */
|
|
25
|
+
variant?: 'fullscreen' | 'inline';
|
|
26
|
+
/** Logo asset; defaults to the shell PWA icon. */
|
|
27
|
+
logoSrc?: string;
|
|
28
|
+
/** Anti-flash delay in ms before the splash appears (0 shows immediately). */
|
|
29
|
+
delayMs?: number;
|
|
30
|
+
}
|
|
31
|
+
export declare function BrandedSplash({ label, variant, logoSrc, delayMs, className, ...rest }: BrandedSplashProps): import("react/jsx-runtime").JSX.Element | null;
|
|
32
|
+
//# sourceMappingURL=branded-splash.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"branded-splash.d.ts","sourceRoot":"","sources":["../../src/ui/branded-splash.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAuB,KAAK,cAAc,EAAE,MAAM,OAAO,CAAC;AAIjE;;;;;;;;;;;;;;;;;;GAkBG;AACH,MAAM,WAAW,kBAAmB,SAAQ,IAAI,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,UAAU,CAAC;IAC1F,wEAAwE;IACxE,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,sEAAsE;IACtE,OAAO,CAAC,EAAE,YAAY,GAAG,QAAQ,CAAC;IAClC,kDAAkD;IAClD,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,8EAA8E;IAC9E,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,wBAAgB,aAAa,CAAC,EAC5B,KAAK,EACL,OAAsB,EACtB,OAA2B,EAC3B,OAAa,EACb,SAAS,EACT,GAAG,IAAI,EACR,EAAE,kBAAkB,kDAkFpB"}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { useAppShell as e } from "../shared/providers/shell/AppShellContext.js";
|
|
2
|
+
import { cn as t } from "../shared-utils.js";
|
|
3
|
+
import { useEffect as n, useState as r } from "react";
|
|
4
|
+
import { jsx as i, jsxs as a } from "react/jsx-runtime";
|
|
5
|
+
//#region src/ui/branded-splash.tsx
|
|
6
|
+
function o({ label: o, variant: s = "fullscreen", logoSrc: c = "/icons/icon.svg", delayMs: l = 150, className: u, ...d }) {
|
|
7
|
+
let { productName: f, brandInitial: p } = e(), [m, h] = r(l <= 0), [g, _] = r(!1);
|
|
8
|
+
if (n(() => {
|
|
9
|
+
if (l <= 0) return;
|
|
10
|
+
let e = setTimeout(() => h(!0), l);
|
|
11
|
+
return () => clearTimeout(e);
|
|
12
|
+
}, [l]), !m) return null;
|
|
13
|
+
let v = o ?? `Loading ${f}…`;
|
|
14
|
+
return /* @__PURE__ */ a("div", {
|
|
15
|
+
role: "status",
|
|
16
|
+
"aria-live": "polite",
|
|
17
|
+
"aria-label": v,
|
|
18
|
+
className: t("flex flex-col items-center justify-center gap-6", s === "fullscreen" ? "fixed inset-0 z-[9000] bg-bg-canvas px-6 pt-[env(safe-area-inset-top)] pb-[env(safe-area-inset-bottom)]" : "min-h-[60vh] w-full px-6 py-12", u),
|
|
19
|
+
...d,
|
|
20
|
+
children: [
|
|
21
|
+
/* @__PURE__ */ i("div", {
|
|
22
|
+
"aria-hidden": "true",
|
|
23
|
+
className: "pointer-events-none absolute inset-0 -z-10",
|
|
24
|
+
style: { backgroundImage: "radial-gradient(circle at 30% 25%, color-mix(in oklab, var(--color-accent-primary) 8%, transparent), transparent 55%),radial-gradient(circle at 70% 78%, color-mix(in oklab, var(--color-accent-secondary, var(--color-accent-primary)) 5%, transparent), transparent 55%)" }
|
|
25
|
+
}),
|
|
26
|
+
/* @__PURE__ */ a("div", {
|
|
27
|
+
className: "relative flex h-20 w-20 items-center justify-center",
|
|
28
|
+
children: [/* @__PURE__ */ i("span", {
|
|
29
|
+
"aria-hidden": "true",
|
|
30
|
+
className: "absolute inset-0 rounded-full motion-safe:animate-spin",
|
|
31
|
+
style: {
|
|
32
|
+
background: "conic-gradient(from 0deg, color-mix(in oklab, var(--color-accent-primary) 55%, transparent), transparent 62%)",
|
|
33
|
+
filter: "blur(6px)",
|
|
34
|
+
animationDuration: "5s"
|
|
35
|
+
}
|
|
36
|
+
}), g ? /* @__PURE__ */ i("span", {
|
|
37
|
+
className: "relative flex h-16 w-16 items-center justify-center rounded-2xl bg-action-primary-bg text-action-primary-text text-2xl font-semibold shadow-elevation-1 motion-safe:animate-pulse",
|
|
38
|
+
children: p
|
|
39
|
+
}) : /* @__PURE__ */ i("img", {
|
|
40
|
+
src: c,
|
|
41
|
+
alt: "",
|
|
42
|
+
"aria-hidden": "true",
|
|
43
|
+
onError: () => _(!0),
|
|
44
|
+
className: "relative h-16 w-16 rounded-2xl motion-safe:animate-pulse"
|
|
45
|
+
})]
|
|
46
|
+
}),
|
|
47
|
+
/* @__PURE__ */ a("div", {
|
|
48
|
+
className: "flex flex-col items-center gap-3",
|
|
49
|
+
children: [
|
|
50
|
+
/* @__PURE__ */ i("h1", {
|
|
51
|
+
className: "text-lg font-semibold text-text-primary",
|
|
52
|
+
children: f
|
|
53
|
+
}),
|
|
54
|
+
/* @__PURE__ */ i("div", {
|
|
55
|
+
className: "flex items-center gap-1.5",
|
|
56
|
+
"aria-hidden": "true",
|
|
57
|
+
children: [
|
|
58
|
+
0,
|
|
59
|
+
1,
|
|
60
|
+
2
|
|
61
|
+
].map((e) => /* @__PURE__ */ i("span", {
|
|
62
|
+
className: "h-1.5 w-1.5 rounded-full bg-action-primary-bg opacity-60 motion-safe:animate-pulse",
|
|
63
|
+
style: {
|
|
64
|
+
animationDelay: `${e * .15}s`,
|
|
65
|
+
animationDuration: "1.2s"
|
|
66
|
+
}
|
|
67
|
+
}, e))
|
|
68
|
+
}),
|
|
69
|
+
/* @__PURE__ */ i("p", {
|
|
70
|
+
className: "text-xs text-text-secondary",
|
|
71
|
+
children: v
|
|
72
|
+
})
|
|
73
|
+
]
|
|
74
|
+
})
|
|
75
|
+
]
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
//#endregion
|
|
79
|
+
export { o as BrandedSplash };
|
package/dist/ui/index.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ export { GlassCard, glassCardVariants, type GlassCardProps } from './glass-card'
|
|
|
36
36
|
export { EmphasisPanel, type EmphasisPanelProps } from './emphasis-panel';
|
|
37
37
|
export { ShowMore, type ShowMoreProps } from './show-more';
|
|
38
38
|
export { CTAOverflowMenu, type CTAOverflowMenuProps, type CTAAction, type CTAPrimaryAction, } from './cta-overflow-menu';
|
|
39
|
+
export { BrandedSplash, type BrandedSplashProps } from './branded-splash';
|
|
39
40
|
export { AuroraBackground, type AuroraBackgroundProps } from './aurora-background';
|
|
40
41
|
export { Illustration, type IllustrationProps, IllustratedEmptyState, type IllustratedEmptyStateProps, } from './illustration';
|
|
41
42
|
export { GradientText, type GradientTextProps } from './gradient-text';
|
package/dist/ui/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/ui/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/ui/index.ts"],"names":[],"mappings":"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"}
|
package/dist/ui.js
CHANGED
|
@@ -4,40 +4,41 @@ import { EntityIdModal as m, useEntityIdModal as h } from "./ui/entity-id-modal.
|
|
|
4
4
|
import { OptionalFields as g } from "./ui/optional-fields.js";
|
|
5
5
|
import { BottomSheet as _, BottomSheetClose as v, BottomSheetContent as y, BottomSheetDescription as b, BottomSheetFooter as x, BottomSheetHeader as S, BottomSheetTitle as C, BottomSheetTrigger as w } from "./ui/bottom-sheet.js";
|
|
6
6
|
import { ResponsiveDialog as T, ResponsiveDialogClose as E, ResponsiveDialogContent as D, ResponsiveDialogDescription as O, ResponsiveDialogFooter as k, ResponsiveDialogHeader as A, ResponsiveDialogTitle as j, ResponsiveDialogTrigger as M } from "./ui/responsive-dialog.js";
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
|
|
7
|
+
import { BrandedSplash as N } from "./ui/branded-splash.js";
|
|
8
|
+
import { Table as P, TableBody as F, TableCaption as I, TableCell as L, TableFooter as R, TableHead as z, TableHeader as B, TableRow as V } from "./ui/table.js";
|
|
9
|
+
import { ResponsiveTable as H } from "./ui/responsive-table.js";
|
|
10
|
+
import { Button as U, buttonVariants as W } from "./ui/button.js";
|
|
11
|
+
import { Select as G, SelectContent as K, SelectGroup as q, SelectItem as J, SelectLabel as Y, SelectScrollDownButton as X, SelectScrollUpButton as Z, SelectSeparator as Q, SelectTrigger as $, SelectValue as ee } from "./ui/select.js";
|
|
12
|
+
import { Pagination as te } from "./ui/pagination.js";
|
|
13
|
+
import { Stepper as ne } from "./ui/stepper.js";
|
|
14
|
+
import { ResponsiveStack as re } from "./ui/responsive-stack.js";
|
|
15
|
+
import { EmptyState as ie } from "./ui/empty-state.js";
|
|
16
|
+
import { AlertDialog as ae, AlertDialogAction as oe, AlertDialogCancel as se, AlertDialogContent as ce, AlertDialogDescription as le, AlertDialogFooter as ue, AlertDialogHeader as de, AlertDialogOverlay as fe, AlertDialogPortal as pe, AlertDialogTitle as me, AlertDialogTrigger as he } from "./ui/alert-dialog.js";
|
|
17
|
+
import { Badge as ge, badgeVariants as _e } from "./ui/badge.js";
|
|
18
|
+
import { Card as ve, CardContent as ye, CardDescription as be, CardFooter as xe, CardHeader as Se, CardTitle as Ce } from "./ui/card.js";
|
|
19
|
+
import { Checkbox as we } from "./ui/checkbox.js";
|
|
20
|
+
import { Command as Te, CommandDialog as Ee, CommandEmpty as De, CommandGroup as Oe, CommandInput as ke, CommandItem as Ae, CommandList as je, CommandSeparator as Me, CommandShortcut as Ne } from "./ui/command.js";
|
|
21
|
+
import { DropdownMenu as Pe, DropdownMenuCheckboxItem as Fe, DropdownMenuContent as Ie, DropdownMenuGroup as Le, DropdownMenuItem as Re, DropdownMenuLabel as ze, DropdownMenuPortal as Be, DropdownMenuRadioGroup as Ve, DropdownMenuRadioItem as He, DropdownMenuSeparator as Ue, DropdownMenuShortcut as We, DropdownMenuSub as Ge, DropdownMenuSubContent as Ke, DropdownMenuSubTrigger as qe, DropdownMenuTrigger as Je } from "./ui/dropdown-menu.js";
|
|
22
|
+
import { Input as Ye } from "./ui/input.js";
|
|
23
|
+
import { Label as Xe } from "./ui/label.js";
|
|
24
|
+
import { Popover as Ze, PopoverAnchor as Qe, PopoverContent as $e, PopoverTrigger as et } from "./ui/popover.js";
|
|
25
|
+
import { ScrollArea as tt, ScrollBar as nt } from "./ui/scroll-area.js";
|
|
26
|
+
import { Separator as rt } from "./ui/separator.js";
|
|
27
|
+
import { Sheet as it, SheetClose as at, SheetContent as ot, SheetDescription as st, SheetFooter as ct, SheetHeader as lt, SheetTitle as ut, SheetTrigger as dt } from "./ui/sheet.js";
|
|
28
|
+
import { Skeleton as ft } from "./ui/skeleton.js";
|
|
29
|
+
import { Toaster as pt } from "./ui/sonner.js";
|
|
30
|
+
import { Spinner as mt } from "./ui/spinner.js";
|
|
31
|
+
import { Switch as ht } from "./ui/switch.js";
|
|
32
|
+
import { Tabs as gt, TabsContent as _t, TabsList as vt, TabsTrigger as yt } from "./ui/tabs.js";
|
|
33
|
+
import { Textarea as bt } from "./ui/textarea.js";
|
|
34
|
+
import { Tooltip as xt, TooltipContent as St, TooltipProvider as Ct, TooltipTrigger as wt } from "./ui/tooltip.js";
|
|
35
|
+
import { PageContainer as Tt } from "./ui/page-container.js";
|
|
36
|
+
import { GlassCard as Et, glassCardVariants as Dt } from "./ui/glass-card.js";
|
|
37
|
+
import { EmphasisPanel as Ot } from "./ui/emphasis-panel.js";
|
|
38
|
+
import { ShowMore as kt } from "./ui/show-more.js";
|
|
39
|
+
import { CTAOverflowMenu as At } from "./ui/cta-overflow-menu.js";
|
|
40
|
+
import { AuroraBackground as jt } from "./ui/aurora-background.js";
|
|
41
|
+
import { IllustratedEmptyState as Mt, Illustration as Nt } from "./ui/illustration.js";
|
|
42
|
+
import { GradientText as Pt } from "./ui/gradient-text.js";
|
|
43
|
+
import { NextSteps as Ft, PagePurpose as It } from "./ui/guidance.js";
|
|
44
|
+
export { e as Accordion, t as AccordionContent, n as AccordionItem, r as AccordionTrigger, ae as AlertDialog, oe as AlertDialogAction, se as AlertDialogCancel, ce as AlertDialogContent, le as AlertDialogDescription, ue as AlertDialogFooter, de as AlertDialogHeader, fe as AlertDialogOverlay, pe as AlertDialogPortal, me as AlertDialogTitle, he as AlertDialogTrigger, jt as AuroraBackground, ge as Badge, _ as BottomSheet, v as BottomSheetClose, y as BottomSheetContent, b as BottomSheetDescription, x as BottomSheetFooter, S as BottomSheetHeader, C as BottomSheetTitle, w as BottomSheetTrigger, N as BrandedSplash, U as Button, At as CTAOverflowMenu, ve as Card, ye as CardContent, be as CardDescription, xe as CardFooter, Se as CardHeader, Ce as CardTitle, we as Checkbox, Te as Command, Ee as CommandDialog, De as CommandEmpty, Oe as CommandGroup, ke as CommandInput, Ae as CommandItem, je as CommandList, Me as CommandSeparator, Ne as CommandShortcut, i as Dialog, a as DialogClose, o as DialogContent, s as DialogDescription, c as DialogFooter, l as DialogHeader, u as DialogOverlay, d as DialogPortal, f as DialogTitle, p as DialogTrigger, Pe as DropdownMenu, Fe as DropdownMenuCheckboxItem, Ie as DropdownMenuContent, Le as DropdownMenuGroup, Re as DropdownMenuItem, ze as DropdownMenuLabel, Be as DropdownMenuPortal, Ve as DropdownMenuRadioGroup, He as DropdownMenuRadioItem, Ue as DropdownMenuSeparator, We as DropdownMenuShortcut, Ge as DropdownMenuSub, Ke as DropdownMenuSubContent, qe as DropdownMenuSubTrigger, Je as DropdownMenuTrigger, Ot as EmphasisPanel, ie as EmptyState, m as EntityIdModal, Et as GlassCard, Pt as GradientText, Mt as IllustratedEmptyState, Nt as Illustration, Ye as Input, Xe as Label, Ft as NextSteps, g as OptionalFields, Tt as PageContainer, It as PagePurpose, te as Pagination, Ze as Popover, Qe as PopoverAnchor, $e as PopoverContent, et as PopoverTrigger, T as ResponsiveDialog, E as ResponsiveDialogClose, D as ResponsiveDialogContent, O as ResponsiveDialogDescription, k as ResponsiveDialogFooter, A as ResponsiveDialogHeader, j as ResponsiveDialogTitle, M as ResponsiveDialogTrigger, re as ResponsiveStack, H as ResponsiveTable, tt as ScrollArea, nt as ScrollBar, G as Select, K as SelectContent, q as SelectGroup, J as SelectItem, Y as SelectLabel, X as SelectScrollDownButton, Z as SelectScrollUpButton, Q as SelectSeparator, $ as SelectTrigger, ee as SelectValue, rt as Separator, it as Sheet, at as SheetClose, ot as SheetContent, st as SheetDescription, ct as SheetFooter, lt as SheetHeader, ut as SheetTitle, dt as SheetTrigger, kt as ShowMore, ft as Skeleton, mt as Spinner, ne as Stepper, ht as Switch, P as Table, F as TableBody, I as TableCaption, L as TableCell, R as TableFooter, z as TableHead, B as TableHeader, V as TableRow, gt as Tabs, _t as TabsContent, vt as TabsList, yt as TabsTrigger, bt as Textarea, pt as Toaster, xt as Tooltip, St as TooltipContent, Ct as TooltipProvider, wt as TooltipTrigger, _e as badgeVariants, W as buttonVariants, Dt as glassCardVariants, h as useEntityIdModal };
|