@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.
@@ -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;AAKH,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;;GAEG;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
+ {"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 { useEffect as e, useState as t } from "react";
2
- import { Loader2 as n } from "lucide-react";
3
- import { jsx as r, jsxs as i } from "react/jsx-runtime";
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 a({ message: a = "Loading...", fullScreen: o = !1, size: s = "md" }) {
6
- let [c, l] = t(!1);
7
- e(() => {
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__ */ r("div", { className: "min-h-screen bg-bg-canvas" }) : /* @__PURE__ */ r("div", { className: "p-8" });
17
- let d = /* @__PURE__ */ i("div", {
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(n, { className: `${u[s]} text-brand-primary animate-spin` }), a && /* @__PURE__ */ r("span", {
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: a
22
+ children: e
22
23
  })]
23
24
  });
24
- return o ? /* @__PURE__ */ r("div", {
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__ */ r("div", {
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 o({ message: e }) {
33
- return /* @__PURE__ */ r(a, {
34
- fullScreen: !0,
35
- message: e,
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 s({ message: e }) {
40
- return /* @__PURE__ */ r(a, {
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 { a as LoadingFallback, o as PageLoadingFallback, s as SectionLoadingFallback };
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;AAsGH,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,4CAMjC"}
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 { jsx as s } from "react/jsx-runtime";
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 c = "bf-sso-relay-attempt", l = 120 * 1e3, u = [
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 d(e) {
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 u.some((t) => e.searchParams.has(t));
22
+ return e === "/auth" || e.startsWith("/auth/");
25
23
  }
26
24
  function m(e) {
27
- if (p(e)) return n(), !0;
28
- if (f(e.pathname)) return !0;
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 h() {
33
+ function g() {
33
34
  try {
34
- sessionStorage.removeItem(c);
35
+ sessionStorage.removeItem(l);
35
36
  } catch {}
36
37
  }
37
- function g() {
38
+ function _() {
38
39
  if (typeof window > "u") return null;
39
40
  try {
40
- let e = sessionStorage.getItem(c);
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 > l ? (h(), null) : {
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 h(), null;
50
+ return g(), null;
50
51
  }
51
52
  }
52
- function _(e) {
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 v(e) {
60
- let t = d(e);
61
- return !t || m(t);
60
+ function y(e) {
61
+ let t = f(e);
62
+ return !t || h(t);
62
63
  }
63
- function y(e, t) {
64
- let n = _(e), r = d(t), i = g();
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 b(e, t) {
68
+ function x(e, t) {
68
69
  if (typeof window > "u") return;
69
- let n = _(e), r = d(t);
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(c, JSON.stringify(e));
77
+ sessionStorage.setItem(l, JSON.stringify(e));
77
78
  } catch {}
78
79
  }
79
- function x() {
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 S(t) {
88
- if (x()) return null;
88
+ function C(t) {
89
+ if (S()) return null;
89
90
  try {
90
- let n = d(t);
91
- if (!n || m(n) || r()) return null;
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 && !y(e, n.href)) return b(e, n.href), `${e}/auth/sso-relay?returnTo=${encodeURIComponent(n.href)}`;
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 && !y(r, n.href)) return b(r, n.href), `${r}/auth/sso-relay?returnTo=${encodeURIComponent(n.href)}`;
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 C() {
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 : (T(), !0);
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 w(e, t) {
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 T() {
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 E() {
144
- return /* @__PURE__ */ s("div", {
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 { E as SSORedirectSpinner, w as checkRemoteSLO, C as checkSLO, T as clearLocalAuthState, S as getSSORedirectUrl, y as hasRecentSSORedirectAttempt, b as markSSORedirectAttempt, v as shouldSkipSSORedirect };
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 { useAuth as t } from "../providers/shell/AuthProvider.js";
3
- import { logManager as n } from "../logger/LogManager.js";
4
- import { useAppShell as r } from "../providers/shell/AppShellContext.js";
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 = n.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";
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(n = {}) {
26
- let { productSlug: c } = r(), { user: d, tokens: f } = t(), p = n.productSlug ?? c, m = n.enabled !== !1, h = a(!1);
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 = n.appUrl ?? (typeof window < "u" ? window.location.origin : void 0), r = f.accessToken, i = d.id;
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: r,
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
- n.appUrl
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 { useAuth as t } from "../providers/shell/AuthProvider.js";
3
- import { useActiveContext as n } from "../providers/shell/ActiveContextProvider.js";
4
- import { useAppShell as r } from "../providers/shell/AppShellContext.js";
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 } = r(), { user: p, tokens: m } = t(), { organizationId: h } = n(), g = o(null), _ = o(null), v = a(() => f(c.search) ?? u()?.code ?? null, [c.search]);
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 { AuthProvider as d } from "./shell/AuthProvider.js";
7
- import { ActiveContextProvider as f } from "./shell/ActiveContextProvider.js";
8
- import { LogManager as p } from "../logger/LogManager.js";
9
- import { ConsoleTransport as ee } from "../logger/ConsoleTransport.js";
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 te } from "../components/ErrorFallback.js";
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 ne } from "./shell/ContextManagerProvider.js";
19
- import { AuthTokenProvider as re } from "./shell/AuthTokenProvider.js";
20
- import { MultiGatewayProvider as ie } from "./shell/MultiGatewayProvider.js";
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 w } from "./shell/ProfileI18nBridge.js";
23
- import { ProfileGeographyBridge as ae } from "./shell/ProfileGeographyBridge.js";
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(ae, { children: /* @__PURE__ */ V(_, { children: /* @__PURE__ */ V(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(w, {
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: w, defaultGlass: ae, 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(() => ({
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 = p.getInstance();
433
- e.getLogger("shell") || e.getLogger("shell").addTransport(new ee());
434
- }, []), /* @__PURE__ */ V(oe, {
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: te,
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(re, { children: /* @__PURE__ */ V(ie, {
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(d, {
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(f, {
472
+ children: /* @__PURE__ */ V(p, {
473
473
  syncToUrl: !0,
474
- children: /* @__PURE__ */ V(ne, { children: /* @__PURE__ */ V(ye, {
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: w,
481
- defaultGlass: ae,
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 { useAuth as t } from "../providers/shell/AuthProvider.js";
4
- import { useActiveContext as n } from "../providers/shell/ActiveContextProvider.js";
5
- import { useAppShell as r } from "../providers/shell/AppShellContext.js";
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 } = n(), { user: E } = t(), { productSlug: D } = r(), O = i("ToursContext"), k = T ?? void 0, A = S || C.pathname.startsWith("/devportal"), { moduleId: j, pageId: M } = g(() => d(C.pathname, D, p, x), [
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 { AuthProvider as h, useAuth as g } from "./shared/providers/shell/AuthProvider.js";
4
- import { ActiveContextProvider as _, useActiveContext as v } from "./shared/providers/shell/ActiveContextProvider.js";
5
- import { ThemeProvider as y, useTheme as b } from "./shared/providers/shell/ThemeProvider.js";
6
- import { PermissionProvider as x, SUPER_ADMIN_ACTOR_TYPE as S, SUPER_ADMIN_ROLE as C, hasMatchingPermission as w, isSuperAdminBypass as T, matchPermission as E, usePermission as D, usePermissionLoading as O, usePermissions as k, useRole as A } from "./shared/providers/shell/PermissionProvider.js";
7
- import { I18nProvider as j, clearTranslationCache as M, isTranslationAttempted as N, useI18n as P } from "./shared/providers/shell/I18nProvider.js";
8
- import { FeatureFlagsProvider as F, useFeatureFlags as I } from "./shared/providers/shell/FeatureFlagsProvider.js";
9
- import { FeatureFlagProvider as L } from "./shared/feature-flags/FeatureFlagProvider.js";
10
- import { useFeatureFlag as R, useFeatureFlagDetails as z, useFeatureFlagValue as B } from "./shared/feature-flags/useFeatureFlag.js";
11
- import { FeatureGate as V } from "./shared/feature-flags/FeatureGate.js";
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 H, useGlobalUi as U } from "./shared/providers/shell/GlobalUiProvider.js";
14
- import { ShellUiProvider as W, useShellUi as G } from "./shared/providers/shell/ShellUiProvider.js";
15
- import { ContextManagerProvider as K, useContextManager as q } from "./shared/providers/shell/ContextManagerProvider.js";
16
- import { GeographyProvider as J, useGeography as Y } from "./shared/geography/GeographyProvider.js";
17
- import { AuthTokenProvider as X, useAuthToken as Z } from "./shared/providers/shell/AuthTokenProvider.js";
18
- import { MultiGatewayProvider as Q } from "./shared/providers/shell/MultiGatewayProvider.js";
19
- import { ObservabilityProvider as $ } from "./shared/providers/shell/ObservabilityProvider.js";
20
- import { GatewayRoute as ee, getMicrofrontendGateway as te, withGateway as ne } from "./shared/providers/shell/GatewayRouter.js";
21
- import { ProfileI18nBridge as re } from "./shared/providers/shell/ProfileI18nBridge.js";
22
- import { ProfileGeographyBridge as ie } from "./shared/providers/shell/ProfileGeographyBridge.js";
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 { _ as ActiveContextProvider, ae as AppShellContextProvider, u as AuthBridgeClient, h as AuthProvider, X as AuthTokenProvider, K as ContextManagerProvider, L as FeatureFlagProvider, F as FeatureFlagsProvider, V as FeatureGate, ee as GatewayRoute, J as GeographyProvider, H as GlobalUiProvider, j as I18nProvider, Q as MultiGatewayProvider, $ as ObservabilityProvider, se as PageConversationContextProvider, x as PermissionProvider, ie as ProfileGeographyBridge, re as ProfileI18nBridge, e as ProfileStorage, S as SUPER_ADMIN_ACTOR_TYPE, C as SUPER_ADMIN_ROLE, W as ShellUiProvider, y as ThemeProvider, t as clearActiveProfileId, M as clearTranslationCache, d as destroyAuthBridge, n as getActiveContext, r as getActiveTokens, i as getActiveUser, f as getAuthBridge, te as getMicrofrontendGateway, a as getProfileLocale, w as hasMatchingPermission, p as initAuthBridge, m as isAuthBridgeInitialized, T as isSuperAdminBypass, N as isTranslationAttempted, o as logoutActiveProfile, E as matchPermission, s as removeAllProfiles, c as setProfileLocale, l as setProfiles, v as useActiveContext, oe as useAppShell, g as useAuth, Z as useAuthToken, q as useContextManager, R as useFeatureFlag, z as useFeatureFlagDetails, B as useFeatureFlagValue, I as useFeatureFlags, Y as useGeography, U as useGlobalUi, P as useI18n, ce as usePageConversationContext, D as usePermission, O as usePermissionLoading, k as usePermissions, le as useRegisterPageConversationContext, A as useRole, G as useShellUi, b as useTheme, ne as withGateway };
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 };
@@ -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';
@@ -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 { Table as N, TableBody as P, TableCaption as F, TableCell as I, TableFooter as L, TableHead as R, TableHeader as z, TableRow as B } from "./ui/table.js";
8
- import { ResponsiveTable as V } from "./ui/responsive-table.js";
9
- import { Button as H, buttonVariants as U } from "./ui/button.js";
10
- import { Select as W, SelectContent as G, SelectGroup as K, SelectItem as q, SelectLabel as J, SelectScrollDownButton as Y, SelectScrollUpButton as X, SelectSeparator as Z, SelectTrigger as Q, SelectValue as $ } from "./ui/select.js";
11
- import { Pagination as ee } from "./ui/pagination.js";
12
- import { Stepper as te } from "./ui/stepper.js";
13
- import { ResponsiveStack as ne } from "./ui/responsive-stack.js";
14
- import { EmptyState as re } from "./ui/empty-state.js";
15
- import { AlertDialog as ie, AlertDialogAction as ae, AlertDialogCancel as oe, AlertDialogContent as se, AlertDialogDescription as ce, AlertDialogFooter as le, AlertDialogHeader as ue, AlertDialogOverlay as de, AlertDialogPortal as fe, AlertDialogTitle as pe, AlertDialogTrigger as me } from "./ui/alert-dialog.js";
16
- import { Badge as he, badgeVariants as ge } from "./ui/badge.js";
17
- import { Card as _e, CardContent as ve, CardDescription as ye, CardFooter as be, CardHeader as xe, CardTitle as Se } from "./ui/card.js";
18
- import { Checkbox as Ce } from "./ui/checkbox.js";
19
- import { Command as we, CommandDialog as Te, CommandEmpty as Ee, CommandGroup as De, CommandInput as Oe, CommandItem as ke, CommandList as Ae, CommandSeparator as je, CommandShortcut as Me } from "./ui/command.js";
20
- import { DropdownMenu as Ne, DropdownMenuCheckboxItem as Pe, DropdownMenuContent as Fe, DropdownMenuGroup as Ie, DropdownMenuItem as Le, DropdownMenuLabel as Re, DropdownMenuPortal as ze, DropdownMenuRadioGroup as Be, DropdownMenuRadioItem as Ve, DropdownMenuSeparator as He, DropdownMenuShortcut as Ue, DropdownMenuSub as We, DropdownMenuSubContent as Ge, DropdownMenuSubTrigger as Ke, DropdownMenuTrigger as qe } from "./ui/dropdown-menu.js";
21
- import { Input as Je } from "./ui/input.js";
22
- import { Label as Ye } from "./ui/label.js";
23
- import { Popover as Xe, PopoverAnchor as Ze, PopoverContent as Qe, PopoverTrigger as $e } from "./ui/popover.js";
24
- import { ScrollArea as et, ScrollBar as tt } from "./ui/scroll-area.js";
25
- import { Separator as nt } from "./ui/separator.js";
26
- import { Sheet as rt, SheetClose as it, SheetContent as at, SheetDescription as ot, SheetFooter as st, SheetHeader as ct, SheetTitle as lt, SheetTrigger as ut } from "./ui/sheet.js";
27
- import { Skeleton as dt } from "./ui/skeleton.js";
28
- import { Toaster as ft } from "./ui/sonner.js";
29
- import { Spinner as pt } from "./ui/spinner.js";
30
- import { Switch as mt } from "./ui/switch.js";
31
- import { Tabs as ht, TabsContent as gt, TabsList as _t, TabsTrigger as vt } from "./ui/tabs.js";
32
- import { Textarea as yt } from "./ui/textarea.js";
33
- import { Tooltip as bt, TooltipContent as xt, TooltipProvider as St, TooltipTrigger as Ct } from "./ui/tooltip.js";
34
- import { PageContainer as wt } from "./ui/page-container.js";
35
- import { GlassCard as Tt, glassCardVariants as Et } from "./ui/glass-card.js";
36
- import { EmphasisPanel as Dt } from "./ui/emphasis-panel.js";
37
- import { ShowMore as Ot } from "./ui/show-more.js";
38
- import { CTAOverflowMenu as kt } from "./ui/cta-overflow-menu.js";
39
- import { AuroraBackground as At } from "./ui/aurora-background.js";
40
- import { IllustratedEmptyState as jt, Illustration as Mt } from "./ui/illustration.js";
41
- import { GradientText as Nt } from "./ui/gradient-text.js";
42
- import { NextSteps as Pt, PagePurpose as Ft } from "./ui/guidance.js";
43
- export { e as Accordion, t as AccordionContent, n as AccordionItem, r as AccordionTrigger, ie as AlertDialog, ae as AlertDialogAction, oe as AlertDialogCancel, se as AlertDialogContent, ce as AlertDialogDescription, le as AlertDialogFooter, ue as AlertDialogHeader, de as AlertDialogOverlay, fe as AlertDialogPortal, pe as AlertDialogTitle, me as AlertDialogTrigger, At as AuroraBackground, he 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, H as Button, kt as CTAOverflowMenu, _e as Card, ve as CardContent, ye as CardDescription, be as CardFooter, xe as CardHeader, Se as CardTitle, Ce as Checkbox, we as Command, Te as CommandDialog, Ee as CommandEmpty, De as CommandGroup, Oe as CommandInput, ke as CommandItem, Ae as CommandList, je as CommandSeparator, Me 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, Ne as DropdownMenu, Pe as DropdownMenuCheckboxItem, Fe as DropdownMenuContent, Ie as DropdownMenuGroup, Le as DropdownMenuItem, Re as DropdownMenuLabel, ze as DropdownMenuPortal, Be as DropdownMenuRadioGroup, Ve as DropdownMenuRadioItem, He as DropdownMenuSeparator, Ue as DropdownMenuShortcut, We as DropdownMenuSub, Ge as DropdownMenuSubContent, Ke as DropdownMenuSubTrigger, qe as DropdownMenuTrigger, Dt as EmphasisPanel, re as EmptyState, m as EntityIdModal, Tt as GlassCard, Nt as GradientText, jt as IllustratedEmptyState, Mt as Illustration, Je as Input, Ye as Label, Pt as NextSteps, g as OptionalFields, wt as PageContainer, Ft as PagePurpose, ee as Pagination, Xe as Popover, Ze as PopoverAnchor, Qe as PopoverContent, $e 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, ne as ResponsiveStack, V as ResponsiveTable, et as ScrollArea, tt as ScrollBar, W as Select, G as SelectContent, K as SelectGroup, q as SelectItem, J as SelectLabel, Y as SelectScrollDownButton, X as SelectScrollUpButton, Z as SelectSeparator, Q as SelectTrigger, $ as SelectValue, nt as Separator, rt as Sheet, it as SheetClose, at as SheetContent, ot as SheetDescription, st as SheetFooter, ct as SheetHeader, lt as SheetTitle, ut as SheetTrigger, Ot as ShowMore, dt as Skeleton, pt as Spinner, te as Stepper, mt as Switch, N as Table, P as TableBody, F as TableCaption, I as TableCell, L as TableFooter, R as TableHead, z as TableHeader, B as TableRow, ht as Tabs, gt as TabsContent, _t as TabsList, vt as TabsTrigger, yt as Textarea, ft as Toaster, bt as Tooltip, xt as TooltipContent, St as TooltipProvider, Ct as TooltipTrigger, ge as badgeVariants, U as buttonVariants, Et as glassCardVariants, h as useEntityIdModal };
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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burdenoff/fe-libs",
3
- "version": "2026.704.1",
3
+ "version": "2026.704.2",
4
4
  "description": "Burdenoff frontend primitives and domain libraries",
5
5
  "type": "module",
6
6
  "imports": {