@factorialco/f0-react 1.376.1 → 1.377.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{DataCollectionStorageProvider-DYikAZhp.js → DataCollectionStorageProvider-7VFEjXoI.js} +1 -1
- package/dist/{F0AiChat-Bb12WR9x.js → F0AiChat-BprbqYqq.js} +2041 -2031
- package/dist/{F0HILActionConfirmation-DqkMrDGj.js → F0HILActionConfirmation-BEjcs8cm.js} +1 -1
- package/dist/ai.d.ts +10 -2
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +6 -1
- package/dist/experimental.js +99 -95
- package/dist/f0.d.ts +10 -2
- package/dist/f0.js +5 -5
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as X, jsxs as le } from "react/jsx-runtime";
|
|
2
2
|
import { useInsertionEffect as Xe, createContext as ke, useContext as $e, useRef as _, useEffect as ne, useState as _e, useCallback as ze, useMemo as Ye } from "react";
|
|
3
|
-
import { y as qe, z as We, D as He, G as je, J as Ne, K as Ke, M as Qe, N as Je, Q as Ze, R as et, V as Ce, W as tt, X as rt, Y as nt, Z as it, _ as ot, $ as at, a0 as st, a1 as ie, a2 as ct, a3 as ut, a4 as lt, a5 as ft, a6 as mt, a7 as dt, a8 as fe, a9 as ht } from "./F0AiChat-
|
|
3
|
+
import { y as qe, z as We, D as He, G as je, J as Ne, K as Ke, M as Qe, N as Je, Q as Ze, R as et, V as Ce, W as tt, X as rt, Y as nt, Z as it, _ as ot, $ as at, a0 as st, a1 as ie, a2 as ct, a3 as ut, a4 as lt, a5 as ft, a6 as mt, a7 as dt, a8 as fe, a9 as ht } from "./F0AiChat-BprbqYqq.js";
|
|
4
4
|
import { useTrackVolume as pt } from "@livekit/components-react";
|
|
5
5
|
function vt(t, e, r) {
|
|
6
6
|
Xe(() => t.on(e, r), [t, e, r]);
|
package/dist/ai.d.ts
CHANGED
|
@@ -973,12 +973,20 @@ export declare interface F0OneIconProps extends SVGProps<SVGSVGElement> {
|
|
|
973
973
|
size?: "xs" | "sm" | "md" | "lg";
|
|
974
974
|
}
|
|
975
975
|
|
|
976
|
-
export declare const F0OneSwitch: ({ className, disabled }: F0OneSwitchProps) => JSX_2.Element | null;
|
|
976
|
+
export declare const F0OneSwitch: ({ className, disabled, tooltip, autoOpen, }: F0OneSwitchProps) => JSX_2.Element | null;
|
|
977
977
|
|
|
978
978
|
/**
|
|
979
979
|
* Props for the F0OneSwitch component
|
|
980
980
|
*/
|
|
981
|
-
export declare type F0OneSwitchProps = React.ComponentPropsWithoutRef<typeof SwitchPrimitive.Root
|
|
981
|
+
export declare type F0OneSwitchProps = React.ComponentPropsWithoutRef<typeof SwitchPrimitive.Root> & {
|
|
982
|
+
/** Custom text shown in the tooltip when the chat is closed */
|
|
983
|
+
tooltip?: {
|
|
984
|
+
whenDisabled?: string;
|
|
985
|
+
whenEnabled?: string;
|
|
986
|
+
};
|
|
987
|
+
/** When true, the tooltip is opened automatically for 3 seconds*/
|
|
988
|
+
autoOpen?: boolean;
|
|
989
|
+
};
|
|
982
990
|
|
|
983
991
|
/**
|
|
984
992
|
* Source object for message sources
|
package/dist/ai.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { A as e, B as o, C as t, E as n, h as i, F as r, a as l, x as c, i as A, b as u, s as F, t as h, v as C, w as T, c as d, n as m, o as I, p as f, H as g, I as S, k as p, L as x, O as H, q as P, P as b, S as k, T as O, l as v, m as w, U as M, r as E, j as L, d as q, e as B, u as U, g as j, f as z } from "./F0AiChat-
|
|
1
|
+
import { A as e, B as o, C as t, E as n, h as i, F as r, a as l, x as c, i as A, b as u, s as F, t as h, v as C, w as T, c as d, n as m, o as I, p as f, H as g, I as S, k as p, L as x, O as H, q as P, P as b, S as k, T as O, l as v, m as w, U as M, r as E, j as L, d as q, e as B, u as U, g as j, f as z } from "./F0AiChat-BprbqYqq.js";
|
|
2
2
|
import { defaultTranslations as R } from "./i18n-provider-defaults.js";
|
|
3
|
-
import { A as y, F as G, c as J, b as K, a as N, o as Q, u as W } from "./F0HILActionConfirmation-
|
|
3
|
+
import { A as y, F as G, c as J, b as K, a as N, o as Q, u as W } from "./F0HILActionConfirmation-BEjcs8cm.js";
|
|
4
4
|
export {
|
|
5
5
|
e as A,
|
|
6
6
|
y as AiChatTranslationsProvider,
|
package/dist/experimental.d.ts
CHANGED
|
@@ -3739,6 +3739,11 @@ declare type HeaderProps = {
|
|
|
3739
3739
|
onChange: (newValue: boolean) => void;
|
|
3740
3740
|
label: string;
|
|
3741
3741
|
};
|
|
3742
|
+
oneSwitchTooltip?: {
|
|
3743
|
+
whenDisabled?: string;
|
|
3744
|
+
whenEnabled?: string;
|
|
3745
|
+
};
|
|
3746
|
+
oneSwitchAutoOpen?: boolean;
|
|
3742
3747
|
};
|
|
3743
3748
|
|
|
3744
3749
|
declare type HeaderSecondaryAction = SecondaryAction & {
|
|
@@ -4974,7 +4979,7 @@ export declare type PageBasedPaginatedResponse<TRecord> = BasePaginatedResponse<
|
|
|
4974
4979
|
pagesCount: number;
|
|
4975
4980
|
};
|
|
4976
4981
|
|
|
4977
|
-
export declare function PageHeader({ module, statusTag, breadcrumbs, actions, embedded, navigation, productUpdates, favorites, }: HeaderProps): JSX_2.Element;
|
|
4982
|
+
export declare function PageHeader({ module, statusTag, breadcrumbs, actions, embedded, navigation, productUpdates, favorites, oneSwitchTooltip, oneSwitchAutoOpen, }: HeaderProps): JSX_2.Element;
|
|
4978
4983
|
|
|
4979
4984
|
declare interface PageProps {
|
|
4980
4985
|
children?: React.ReactNode;
|
package/dist/experimental.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { a5 as Hd, bG as Bp, bH as Hp, bI as Vp, bJ as zo, bK as Wp, bL as Qi, D as Up, bM as Gp, ab as G, V as Vd, J as qp, bN as Kp, ao as Ni, bO as Wd, bP as Jp, bQ as Yp, ak as Qp, bR as Ca, bS as Gr, bT as Xp,
|
|
2
|
-
import { eK as DL, eJ as _L, eI as LL, eP as OL, eQ as RL, eM as FL, eL as ML, eO as PL, bd as zL, eN as $L } from "./F0AiChat-
|
|
1
|
+
import { a5 as Hd, bG as Bp, bH as Hp, bI as Vp, bJ as zo, bK as Wp, bL as Qi, D as Up, bM as Gp, ab as G, V as Vd, J as qp, bN as Kp, ao as Ni, bO as Wd, bP as Jp, bQ as Yp, ak as Qp, bR as Ca, bS as Gr, bT as Xp, bU as ul, bV as Ud, bW as ms, a6 as k, a7 as Nt, u as Y, bX as Zp, bY as eg, bZ as tg, b_ as ng, b$ as rg, av as we, c0 as ig, aj as Ae, c1 as og, c2 as Gd, ah as q, c3 as qd, c4 as Kd, ac as it, c5 as Jd, c6 as ps, c7 as Yd, a8 as j, c8 as Er, ag as M, c9 as mt, ca as sg, cb as lg, cc as ar, aI as Qd, cd as Xd, a_ as Zt, ce as Zd, cf as fl, cg as ut, aJ as hl, aK as bn, v as eu, ch as tu, ci as ag, cj as ka, ck as Pn, cl as ml, cm as Tr, cn as Si, co as cg, cp as nu, cq as dg, cr as pl, cs as cr, ct as Ye, cu as ug, cv as fg, cw as Vt, cx as $o, cy as hg, cz as sr, cA as An, cB as mg, cC as pg, cD as gg, cE as bg, cF as vg, cG as yg, ad as We, af as Ne, cH as cn, aT as en, bD as Dr, cI as ru, cJ as gl, cK as xg, cL as wg, cM as Cg, cN as kg, cO as Ng, cP as Sg, cQ as Ig, cR as Ag, cS as Eg, cT as bl, cU as Tg, cV as iu, cW as Dg, cX as _g, cY as Lg, cZ as Og, c_ as Rg, c$ as Fg, d0 as Mg, d1 as Pg, be as Ct, d2 as ou, d3 as zg, am as se, a9 as dr, d4 as su, d5 as lu, aW as vl, t as $g, d6 as jg, d7 as Bg, al as ur, d8 as Hg, d9 as jo, da as Vg, db as yl, dc as Wt, aP as au, dd as Na, de as Sa, df as Wg, dg as Ia, dh as cu, di as xl, aO as zn, aM as du, at as wl, au as Cl, aw as kl, aL as Ii, ai as _r, dj as Ug, dk as Gg, dl as uu, dm as qg, ax as kt, dn as Kg, dp as fu, dq as hu, dr as Jg, ds as Lr, dt as Nl, du as Xi, bg as dn, dv as gs, dw as Yg, dx as Qg, dy as Xg, dz as Zg, dA as eb, dB as tb, dC as mu, dD as nb, dE as pu, dF as rb, dG as ib, dH as ob, aG as Aa, dI as gu, dJ as bs, aB as vs, dK as bu, dL as ys, bn as Sl, aV as un, b9 as Zi, dM as eo, dN as sb, dO as lb, dP as ab, bC as to, aU as vu, bF as cb, bE as db, dQ as yu, dR as ub, aD as Dn, dS as Ea, dT as Ai, dU as fb, dV as hb, bf as mb, ba as xu, a as pb, d as gb, dW as Il, dX as bb, F as vb, dY as wu, dZ as Cu, d_ as yb, d$ as xb, e0 as wb, e1 as Cb, e2 as kb, e3 as ku, e4 as Nb, bb as Nu, e5 as Su, e6 as Sb, e7 as Ib, e8 as Ab, e9 as Eb, ea as Tb, eb as Db, ec as _b, ed as Lb, bq as Ob, br as Rb, by as no, bw as Al, a$ as ro, ee as io, ef as oo, b0 as so, eg as El, bx as Iu, aC as Fb, bs as Ei, eh as Au, ei as Mb, ej as xs, ek as Pb, el as Ta, em as zb, en as $b, eo as jb, ep as Bb, eq as Hb, er as Vb, es as Wb, aa as Eu, bm as Ub, bv as Gb, aX as qb, aY as Kb, aZ as Jb, an as pt, et as Tu, eu as Yb, ev as Qb, ew as Xb, ex as Zb, b1 as e0, ey as t0, ez as Da, eA as _a, eB as La, eC as n0, eD as r0, eE as i0, eF as o0, eG as Du, eH as s0 } from "./F0AiChat-BprbqYqq.js";
|
|
2
|
+
import { eK as DL, eJ as _L, eI as LL, eP as OL, eQ as RL, eM as FL, eL as ML, eO as PL, bd as zL, eN as $L } from "./F0AiChat-BprbqYqq.js";
|
|
3
3
|
import { jsx as l, jsxs as g, Fragment as Z } from "react/jsx-runtime";
|
|
4
4
|
import * as Fe from "react";
|
|
5
|
-
import Q, { createContext as Pt, forwardRef as J, useRef as W, useEffect as V, useContext as zt, PureComponent as l0, useTransition as a0, useState as R, useLayoutEffect as Kn,
|
|
6
|
-
import { f as _n, aG as fr, j as qr, aH as c0, b as Bo, aI as d0, A as u0, d as Kr, i as f0, m as h0, G as m0, g as Ra, aJ as p0, l as Fa, aK as g0, p as b0, aL as Ru, aM as Fu, aN as v0, C as y0, az as x0, ae as jn, D as De, aO as ot, aP as St, aQ as Ge, aR as w0, aS as ci, aT as lt, aU as Mu, aV as Xe, aW as _l, aX as nt, aY as Ma, aZ as C0, a_ as Pu, a$ as He, b0 as et, b1 as hr, b2 as Ti, b3 as zu, b4 as k0, b5 as vn, b6 as N0, b7 as S0, b8 as I0, b9 as Or, ba as Rr, bb as Ll, bc as A0, bd as $u, be as ju, bf as Bu, bg as E0, bh as Hu, bi as Vu, bj as Wu, bk as Uu, bl as Gu, bm as qu, bn as ws, bo as T0, bp as Pa, bq as D0, br as _0, bs as L0, t as O0, x as R0, y as F0, F as M0, M as za, N as $a, O as P0, P as z0, a4 as $0, a5 as j0, bt as B0, bu as H0, a7 as V0, bv as Ku, bw as W0, bx as U0, by as G0, am as ao, bz as Ol, bA as Ju, al as Cs, bB as q0, ak as Yu, a2 as Fr, ag as K0, bC as J0, bD as Y0, bE as Q0, ap as Rl, bF as X0, aD as Z0, bG as ks, bH as ev, bI as Di, bJ as tv, aE as nv, bK as rv, aC as Qu, aB as iv, aA as ov, bL as sv, bM as lv, bN as av, bO as cv, bP as dv, bQ as uv, bR as fv, bS as hv, bT as mv, bU as pv, bV as gv, bW as bv, bX as vv, bY as yv, bZ as xv, aF as Xu, at as Zu, b_ as wv, R as Cv, T as kv, V as Nv, W as Sv, Z as Iv, U as Av, b$ as ja, c0 as Ev, c1 as Tv, n as Dv } from "./DataCollectionStorageProvider-
|
|
7
|
-
import { ah as BL, c2 as HL, a8 as VL, a3 as WL, aa as UL, c6 as GL, c5 as qL, c3 as KL, c4 as JL, a6 as YL, a9 as QL, aq as XL, ar as ZL } from "./DataCollectionStorageProvider-
|
|
5
|
+
import Q, { createContext as Pt, forwardRef as J, useRef as W, useEffect as V, useContext as zt, PureComponent as l0, useTransition as a0, useState as R, useLayoutEffect as Kn, useCallback as ne, useMemo as P, useId as Tl, useImperativeHandle as _u, memo as lo, Fragment as $n, isValidElement as Lu, cloneElement as Dl, createElement as Oa, Children as Ou } from "react";
|
|
6
|
+
import { f as _n, aG as fr, j as qr, aH as c0, b as Bo, aI as d0, A as u0, d as Kr, i as f0, m as h0, G as m0, g as Ra, aJ as p0, l as Fa, aK as g0, p as b0, aL as Ru, aM as Fu, aN as v0, C as y0, az as x0, ae as jn, D as De, aO as ot, aP as St, aQ as Ge, aR as w0, aS as ci, aT as lt, aU as Mu, aV as Xe, aW as _l, aX as nt, aY as Ma, aZ as C0, a_ as Pu, a$ as He, b0 as et, b1 as hr, b2 as Ti, b3 as zu, b4 as k0, b5 as vn, b6 as N0, b7 as S0, b8 as I0, b9 as Or, ba as Rr, bb as Ll, bc as A0, bd as $u, be as ju, bf as Bu, bg as E0, bh as Hu, bi as Vu, bj as Wu, bk as Uu, bl as Gu, bm as qu, bn as ws, bo as T0, bp as Pa, bq as D0, br as _0, bs as L0, t as O0, x as R0, y as F0, F as M0, M as za, N as $a, O as P0, P as z0, a4 as $0, a5 as j0, bt as B0, bu as H0, a7 as V0, bv as Ku, bw as W0, bx as U0, by as G0, am as ao, bz as Ol, bA as Ju, al as Cs, bB as q0, ak as Yu, a2 as Fr, ag as K0, bC as J0, bD as Y0, bE as Q0, ap as Rl, bF as X0, aD as Z0, bG as ks, bH as ev, bI as Di, bJ as tv, aE as nv, bK as rv, aC as Qu, aB as iv, aA as ov, bL as sv, bM as lv, bN as av, bO as cv, bP as dv, bQ as uv, bR as fv, bS as hv, bT as mv, bU as pv, bV as gv, bW as bv, bX as vv, bY as yv, bZ as xv, aF as Xu, at as Zu, b_ as wv, R as Cv, T as kv, V as Nv, W as Sv, Z as Iv, U as Av, b$ as ja, c0 as Ev, c1 as Tv, n as Dv } from "./DataCollectionStorageProvider-7VFEjXoI.js";
|
|
7
|
+
import { ah as BL, c2 as HL, a8 as VL, a3 as WL, aa as UL, c6 as GL, c5 as qL, c3 as KL, c4 as JL, a6 as YL, a9 as QL, aq as XL, ar as ZL } from "./DataCollectionStorageProvider-7VFEjXoI.js";
|
|
8
8
|
import './experimental.css';function ef(t, e) {
|
|
9
9
|
const n = Hd(e()), r = () => n.set(e());
|
|
10
10
|
return r(), Bp(() => {
|
|
@@ -811,7 +811,56 @@ function yy({ breadcrumbs: t, append: e }) {
|
|
|
811
811
|
})]
|
|
812
812
|
}, `breadcrumb-${t.at(-1)?.id ?? 0}`);
|
|
813
813
|
}
|
|
814
|
-
const
|
|
814
|
+
const Ya = "one_sidebar_locked", lf = Pt(void 0);
|
|
815
|
+
function Yn() {
|
|
816
|
+
const t = zt(lf);
|
|
817
|
+
return t === void 0 ? {
|
|
818
|
+
isSmallScreen: !1,
|
|
819
|
+
isLastToggleInvokedByUser: !0,
|
|
820
|
+
prevSidebarState: null,
|
|
821
|
+
sidebarState: "locked",
|
|
822
|
+
toggleSidebar: () => {
|
|
823
|
+
},
|
|
824
|
+
setForceFloat: () => {
|
|
825
|
+
}
|
|
826
|
+
} : t;
|
|
827
|
+
}
|
|
828
|
+
function xy({ children: t }) {
|
|
829
|
+
const { currentPath: e } = ul(), [n, r] = R(!1), [i, o] = R(!1), s = n ? ms.xl : ms.md, a = Ud(`(max-width: ${s}px)`, {
|
|
830
|
+
initializeWithValue: !0
|
|
831
|
+
}), [c, d] = R(() => {
|
|
832
|
+
const v = localStorage.getItem(Ya);
|
|
833
|
+
return v !== null ? !!v : !0;
|
|
834
|
+
}), [f, u] = R(!1), [h, m] = R(null), p = ne(({ isInvokedByUser: v } = {
|
|
835
|
+
isInvokedByUser: !0
|
|
836
|
+
}) => {
|
|
837
|
+
o(v ?? !0), a && u(!f), d(!c);
|
|
838
|
+
}, [a, f, c, d, u]), b = ne((v) => {
|
|
839
|
+
a || (v.clientX < 32 && u(!0), v.clientX > 280 && u(!1));
|
|
840
|
+
}, [a, u]), y = P(() => a ? f ? "unlocked" : "hidden" : !c && !f ? "hidden" : !c && f ? "unlocked" : "locked", [a, f, c]);
|
|
841
|
+
return V(() => {
|
|
842
|
+
u(!1);
|
|
843
|
+
}, [e]), V(() => {
|
|
844
|
+
i && localStorage.setItem(Ya, c ? "1" : "");
|
|
845
|
+
}, [c, i]), V(() => () => {
|
|
846
|
+
m(y);
|
|
847
|
+
}, [y]), l(lf.Provider, {
|
|
848
|
+
value: {
|
|
849
|
+
isSmallScreen: a,
|
|
850
|
+
isLastToggleInvokedByUser: i,
|
|
851
|
+
sidebarState: y,
|
|
852
|
+
toggleSidebar: p,
|
|
853
|
+
prevSidebarState: h,
|
|
854
|
+
setForceFloat: r
|
|
855
|
+
},
|
|
856
|
+
children: l("div", {
|
|
857
|
+
onPointerMove: b,
|
|
858
|
+
className: "h-screen w-screen",
|
|
859
|
+
children: t
|
|
860
|
+
})
|
|
861
|
+
});
|
|
862
|
+
}
|
|
863
|
+
const wy = Nt({
|
|
815
864
|
variants: {
|
|
816
865
|
size: {
|
|
817
866
|
sm: "h-[1.375rem] w-[1.375rem]",
|
|
@@ -822,7 +871,7 @@ const xy = Nt({
|
|
|
822
871
|
defaultVariants: {
|
|
823
872
|
size: "md"
|
|
824
873
|
}
|
|
825
|
-
}),
|
|
874
|
+
}), Qa = [{
|
|
826
875
|
id: "bottom",
|
|
827
876
|
delay: 2.6,
|
|
828
877
|
transformOrigin: "center 89%",
|
|
@@ -846,10 +895,10 @@ const xy = Nt({
|
|
|
846
895
|
transformOrigin: "center 11%",
|
|
847
896
|
rotateAxis: "1, 0, 0",
|
|
848
897
|
path: "M15.9939 1.33514e-05C19.6511 1.37386e-05 23.2335 1.22043 26.0525 3.58204C23.2335 5.86737 19.651 7.16115 15.9939 7.16115C12.1849 7.16103 8.67993 5.79089 5.93728 3.58204C8.75621 1.29671 12.3369 0.000125175 15.9939 1.33514e-05Z"
|
|
849
|
-
}],
|
|
898
|
+
}], Cy = ({ spin: t = !1, size: e = "md", background: n, hover: r = !1, ...i }, o) => {
|
|
850
899
|
const s = Tl(), { onAnimationStart: a, onAnimationEnd: c, onDragStart: d, onDragEnd: f, onDrag: u, className: h, ...m } = i;
|
|
851
900
|
return l("div", {
|
|
852
|
-
className: k(
|
|
901
|
+
className: k(wy({
|
|
853
902
|
size: e
|
|
854
903
|
}), h),
|
|
855
904
|
style: {
|
|
@@ -886,7 +935,7 @@ const xy = Nt({
|
|
|
886
935
|
cy: "16",
|
|
887
936
|
r: "16"
|
|
888
937
|
})
|
|
889
|
-
}),
|
|
938
|
+
}), Qa.map((p) => l("clipPath", {
|
|
890
939
|
id: `${s}-${p.id}`,
|
|
891
940
|
children: l("path", {
|
|
892
941
|
d: p.path
|
|
@@ -894,7 +943,7 @@ const xy = Nt({
|
|
|
894
943
|
}, p.id))]
|
|
895
944
|
}), l("g", {
|
|
896
945
|
clipPath: `url(#${s}-circle)`,
|
|
897
|
-
children:
|
|
946
|
+
children: Qa.map((p) => l(G.foreignObject, {
|
|
898
947
|
x: "0",
|
|
899
948
|
y: "0",
|
|
900
949
|
width: "32",
|
|
@@ -952,8 +1001,8 @@ const xy = Nt({
|
|
|
952
1001
|
})]
|
|
953
1002
|
})
|
|
954
1003
|
});
|
|
955
|
-
},
|
|
956
|
-
const [i, o] = R(e), [s, a] = R(!1), [c, d] = R(!0), [f, u] = R(
|
|
1004
|
+
}, af = J(Cy), cf = Pt(null), ky = 15, Ny = ({ children: t, enabled: e, onShow: n, ...r }) => {
|
|
1005
|
+
const [i, o] = R(e), [s, a] = R(!1), [c, d] = R(!0), [f, u] = R(ky), h = W(null), m = (b) => {
|
|
957
1006
|
h.current = b;
|
|
958
1007
|
}, p = () => {
|
|
959
1008
|
h.current && h.current();
|
|
@@ -965,7 +1014,7 @@ const xy = Nt({
|
|
|
965
1014
|
const b = window.matchMedia("(prefers-reduced-motion: reduce)").matches;
|
|
966
1015
|
d(!b);
|
|
967
1016
|
}
|
|
968
|
-
}, [s, n]), l(
|
|
1017
|
+
}, [s, n]), l(cf.Provider, {
|
|
969
1018
|
value: {
|
|
970
1019
|
...r,
|
|
971
1020
|
enabled: i,
|
|
@@ -984,7 +1033,7 @@ const xy = Nt({
|
|
|
984
1033
|
}, In = () => {
|
|
985
1034
|
};
|
|
986
1035
|
function uo() {
|
|
987
|
-
const t = zt(
|
|
1036
|
+
const t = zt(cf);
|
|
988
1037
|
return t === null ? {
|
|
989
1038
|
enabled: !1,
|
|
990
1039
|
setEnabled: In,
|
|
@@ -998,7 +1047,7 @@ function uo() {
|
|
|
998
1047
|
autoClearMinutes: null
|
|
999
1048
|
} : t;
|
|
1000
1049
|
}
|
|
1001
|
-
const
|
|
1050
|
+
const df = ({ className: t, disabled: e }) => {
|
|
1002
1051
|
const { enabled: n, setOpen: r, open: i } = uo(), o = Y(), [s, a] = R(!1);
|
|
1003
1052
|
return n ? l("div", {
|
|
1004
1053
|
className: "flex items-center",
|
|
@@ -1038,7 +1087,7 @@ const cf = ({ className: t, disabled: e }) => {
|
|
|
1038
1087
|
transitionTimingFunction: "cubic-bezier(0.175,0.885,0.32,1.5)"
|
|
1039
1088
|
},
|
|
1040
1089
|
children: l("div", {
|
|
1041
|
-
children: l(
|
|
1090
|
+
children: l(af, {
|
|
1042
1091
|
size: "sm",
|
|
1043
1092
|
background: i ? "white" : void 0,
|
|
1044
1093
|
hover: s
|
|
@@ -1055,56 +1104,7 @@ const cf = ({ className: t, disabled: e }) => {
|
|
|
1055
1104
|
})
|
|
1056
1105
|
})
|
|
1057
1106
|
}) : null;
|
|
1058
|
-
},
|
|
1059
|
-
function Yn() {
|
|
1060
|
-
const t = zt(df);
|
|
1061
|
-
return t === void 0 ? {
|
|
1062
|
-
isSmallScreen: !1,
|
|
1063
|
-
isLastToggleInvokedByUser: !0,
|
|
1064
|
-
prevSidebarState: null,
|
|
1065
|
-
sidebarState: "locked",
|
|
1066
|
-
toggleSidebar: () => {
|
|
1067
|
-
},
|
|
1068
|
-
setForceFloat: () => {
|
|
1069
|
-
}
|
|
1070
|
-
} : t;
|
|
1071
|
-
}
|
|
1072
|
-
function Ny({ children: t }) {
|
|
1073
|
-
const { currentPath: e } = ul(), [n, r] = R(!1), [i, o] = R(!1), s = n ? ms.xl : ms.md, a = Ud(`(max-width: ${s}px)`, {
|
|
1074
|
-
initializeWithValue: !0
|
|
1075
|
-
}), [c, d] = R(() => {
|
|
1076
|
-
const v = localStorage.getItem(Qa);
|
|
1077
|
-
return v !== null ? !!v : !0;
|
|
1078
|
-
}), [f, u] = R(!1), [h, m] = R(null), p = ne(({ isInvokedByUser: v } = {
|
|
1079
|
-
isInvokedByUser: !0
|
|
1080
|
-
}) => {
|
|
1081
|
-
o(v ?? !0), a && u(!f), d(!c);
|
|
1082
|
-
}, [a, f, c, d, u]), b = ne((v) => {
|
|
1083
|
-
a || (v.clientX < 32 && u(!0), v.clientX > 280 && u(!1));
|
|
1084
|
-
}, [a, u]), y = P(() => a ? f ? "unlocked" : "hidden" : !c && !f ? "hidden" : !c && f ? "unlocked" : "locked", [a, f, c]);
|
|
1085
|
-
return V(() => {
|
|
1086
|
-
u(!1);
|
|
1087
|
-
}, [e]), V(() => {
|
|
1088
|
-
i && localStorage.setItem(Qa, c ? "1" : "");
|
|
1089
|
-
}, [c, i]), V(() => () => {
|
|
1090
|
-
m(y);
|
|
1091
|
-
}, [y]), l(df.Provider, {
|
|
1092
|
-
value: {
|
|
1093
|
-
isSmallScreen: a,
|
|
1094
|
-
isLastToggleInvokedByUser: i,
|
|
1095
|
-
sidebarState: y,
|
|
1096
|
-
toggleSidebar: p,
|
|
1097
|
-
prevSidebarState: h,
|
|
1098
|
-
setForceFloat: r
|
|
1099
|
-
},
|
|
1100
|
-
children: l("div", {
|
|
1101
|
-
onPointerMove: b,
|
|
1102
|
-
className: "h-screen w-screen",
|
|
1103
|
-
children: t
|
|
1104
|
-
})
|
|
1105
|
-
});
|
|
1106
|
-
}
|
|
1107
|
-
const Xa = G.create(q), Za = {
|
|
1107
|
+
}, Xa = G.create(q), Za = {
|
|
1108
1108
|
initial: {
|
|
1109
1109
|
scale: 1
|
|
1110
1110
|
},
|
|
@@ -1486,19 +1486,19 @@ function ec({ icon: t, href: e, label: n, disabled: r }) {
|
|
|
1486
1486
|
hideLabel: !0
|
|
1487
1487
|
});
|
|
1488
1488
|
}
|
|
1489
|
-
function I_({ module: t, statusTag: e = void 0, breadcrumbs: n = [], actions: r = [], embedded: i = !1, navigation: o, productUpdates: s, favorites: a }) {
|
|
1490
|
-
const { sidebarState:
|
|
1489
|
+
function I_({ module: t, statusTag: e = void 0, breadcrumbs: n = [], actions: r = [], embedded: i = !1, navigation: o, productUpdates: s, favorites: a, oneSwitchTooltip: c, oneSwitchAutoOpen: d }) {
|
|
1490
|
+
const { sidebarState: f, toggleSidebar: u } = Yn(), h = [{
|
|
1491
1491
|
id: t.href,
|
|
1492
1492
|
label: t.name,
|
|
1493
1493
|
href: t.href,
|
|
1494
1494
|
module: t.id
|
|
1495
|
-
}, ...n],
|
|
1495
|
+
}, ...n], m = e && Object.keys(e).length !== 0, p = n.length > 0, b = !i && r.length > 0, y = !i && !!s?.isVisible, v = h[h.length - 1], w = p ? h[h.length - 2] : null;
|
|
1496
1496
|
return g("div", {
|
|
1497
1497
|
className: k("flex items-center justify-between px-5 py-4 xs:px-6", i ? "h-12" : "h-16"),
|
|
1498
1498
|
children: [g("div", {
|
|
1499
1499
|
className: "flex flex-grow items-center",
|
|
1500
1500
|
children: [l(Ae, {
|
|
1501
|
-
children: !i &&
|
|
1501
|
+
children: !i && f !== "locked" && l(G.div, {
|
|
1502
1502
|
initial: {
|
|
1503
1503
|
opacity: 0,
|
|
1504
1504
|
width: 0
|
|
@@ -1516,43 +1516,43 @@ function I_({ module: t, statusTag: e = void 0, breadcrumbs: n = [], actions: r
|
|
|
1516
1516
|
children: l(j, {
|
|
1517
1517
|
variant: "ghost",
|
|
1518
1518
|
hideLabel: !0,
|
|
1519
|
-
onClick: () =>
|
|
1519
|
+
onClick: () => u(),
|
|
1520
1520
|
label: "Open main menu",
|
|
1521
1521
|
icon: Zd
|
|
1522
1522
|
})
|
|
1523
1523
|
})
|
|
1524
1524
|
})
|
|
1525
1525
|
}), g("div", {
|
|
1526
|
-
className: k("flex flex-grow items-center gap-2", i &&
|
|
1527
|
-
children: [i &&
|
|
1526
|
+
className: k("flex flex-grow items-center gap-2", i && p && "justify-center"),
|
|
1527
|
+
children: [i && p && w && !("loading" in w) && l("div", {
|
|
1528
1528
|
className: "absolute left-4",
|
|
1529
1529
|
children: l(mt, {
|
|
1530
|
-
href:
|
|
1530
|
+
href: w.href,
|
|
1531
1531
|
children: l(j, {
|
|
1532
1532
|
variant: "ghost",
|
|
1533
1533
|
hideLabel: !0,
|
|
1534
1534
|
label: "Back",
|
|
1535
1535
|
icon: fl,
|
|
1536
|
-
onClick: (
|
|
1536
|
+
onClick: (x) => x.preventDefault()
|
|
1537
1537
|
})
|
|
1538
1538
|
})
|
|
1539
|
-
}), i &&
|
|
1539
|
+
}), i && p ? l("div", {
|
|
1540
1540
|
className: "text-lg font-semibold text-f1-foreground",
|
|
1541
|
-
children: "loading" in
|
|
1541
|
+
children: "loading" in v ? l(M, {
|
|
1542
1542
|
className: "h-4 w-24"
|
|
1543
|
-
}) :
|
|
1543
|
+
}) : v.label
|
|
1544
1544
|
}) : l(yy, {
|
|
1545
|
-
breadcrumbs:
|
|
1545
|
+
breadcrumbs: h,
|
|
1546
1546
|
append: a !== void 0 && l(Sy, {
|
|
1547
1547
|
label: a.label,
|
|
1548
1548
|
isMarked: a.isMarked,
|
|
1549
1549
|
onChange: a?.onChange
|
|
1550
1550
|
})
|
|
1551
|
-
},
|
|
1551
|
+
}, h[0].id)]
|
|
1552
1552
|
})]
|
|
1553
1553
|
}), g("div", {
|
|
1554
1554
|
className: "flex items-center gap-3",
|
|
1555
|
-
children: [!i &&
|
|
1555
|
+
children: [!i && m && l("div", {
|
|
1556
1556
|
children: e.tooltip ? l(ut, {
|
|
1557
1557
|
label: e.tooltip,
|
|
1558
1558
|
children: l("div", {
|
|
@@ -1566,7 +1566,7 @@ function I_({ module: t, statusTag: e = void 0, breadcrumbs: n = [], actions: r
|
|
|
1566
1566
|
text: e.text,
|
|
1567
1567
|
variant: e.variant
|
|
1568
1568
|
})
|
|
1569
|
-
}), !i &&
|
|
1569
|
+
}), !i && m && (o || b || y) && l("div", {
|
|
1570
1570
|
className: "h-4 w-px bg-f1-border-secondary"
|
|
1571
1571
|
}), o && g("div", {
|
|
1572
1572
|
className: "flex items-center gap-3",
|
|
@@ -1587,24 +1587,28 @@ function I_({ module: t, statusTag: e = void 0, breadcrumbs: n = [], actions: r
|
|
|
1587
1587
|
disabled: !o.next
|
|
1588
1588
|
})]
|
|
1589
1589
|
})]
|
|
1590
|
-
}), o &&
|
|
1590
|
+
}), o && b && l("div", {
|
|
1591
1591
|
className: "h-4 w-px bg-f1-border-secondary"
|
|
1592
|
-
}), (
|
|
1592
|
+
}), (y || b) && g("div", {
|
|
1593
1593
|
className: "flex items-center gap-2",
|
|
1594
|
-
children: [
|
|
1594
|
+
children: [y && l("div", {
|
|
1595
1595
|
className: "items-right flex gap-2",
|
|
1596
1596
|
children: l(Iy, {
|
|
1597
1597
|
...s,
|
|
1598
1598
|
currentModule: t.name
|
|
1599
1599
|
})
|
|
1600
|
-
}),
|
|
1600
|
+
}), b && l("div", {
|
|
1601
1601
|
className: "items-right flex gap-2",
|
|
1602
|
-
children: r.map((
|
|
1603
|
-
action:
|
|
1604
|
-
},
|
|
1602
|
+
children: r.map((x, A) => l(Ry, {
|
|
1603
|
+
action: x
|
|
1604
|
+
}, A))
|
|
1605
1605
|
})]
|
|
1606
1606
|
}), g("div", {
|
|
1607
|
-
|
|
1607
|
+
className: "flex items-center gap-3",
|
|
1608
|
+
children: [l(eu, {
|
|
1609
|
+
tooltip: c,
|
|
1610
|
+
autoOpen: d
|
|
1611
|
+
}), l(df, {})]
|
|
1608
1612
|
})]
|
|
1609
1613
|
})]
|
|
1610
1614
|
});
|
|
@@ -7685,7 +7689,7 @@ const BC = ({ aiBlockConfig: t, translations: e, imageUploadConfig: n }) => vn.c
|
|
|
7685
7689
|
icon: t.icon
|
|
7686
7690
|
});
|
|
7687
7691
|
}
|
|
7688
|
-
}, JC = ({ enabled: t = !1, greeting: e, title: n, description: r, benefits: i, actions: o, onShow: s, onHide: a, children: c }) => l(
|
|
7692
|
+
}, JC = ({ enabled: t = !1, greeting: e, title: n, description: r, benefits: i, actions: o, onShow: s, onHide: a, children: c }) => l(Ny, {
|
|
7689
7693
|
enabled: t,
|
|
7690
7694
|
greeting: e,
|
|
7691
7695
|
title: n,
|
|
@@ -7718,7 +7722,7 @@ const BC = ({ aiBlockConfig: t, translations: e, imageUploadConfig: n }) => vn.c
|
|
|
7718
7722
|
className: "flex flex-col gap-4 p-6 pt-3",
|
|
7719
7723
|
children: [g("div", {
|
|
7720
7724
|
className: "flex flex-col gap-4",
|
|
7721
|
-
children: [l(
|
|
7725
|
+
children: [l(af, {
|
|
7722
7726
|
spin: !0,
|
|
7723
7727
|
size: "lg"
|
|
7724
7728
|
}), g("div", {
|
|
@@ -12112,7 +12116,7 @@ const $_ = se("OnePersonListItem", Ne(Oh, BN)), HN = {
|
|
|
12112
12116
|
ease: [0, 0, 0.1, 1]
|
|
12113
12117
|
};
|
|
12114
12118
|
function VN({ children: t, sidebar: e, banner: n, ai: r, aiPromotion: i }) {
|
|
12115
|
-
return l(
|
|
12119
|
+
return l(xy, {
|
|
12116
12120
|
children: l(WN, {
|
|
12117
12121
|
ai: r,
|
|
12118
12122
|
aiPromotion: i,
|
|
@@ -12305,7 +12309,7 @@ function Rh({ children: t, header: e, period: n, embedded: r = !1 }) {
|
|
|
12305
12309
|
})]
|
|
12306
12310
|
})]
|
|
12307
12311
|
}), g("div", {
|
|
12308
|
-
children: [l(eu, {}), l(
|
|
12312
|
+
children: [l(eu, {}), l(df, {})]
|
|
12309
12313
|
})]
|
|
12310
12314
|
}), l("div", {
|
|
12311
12315
|
className: k("isolate flex w-full flex-1 flex-col overflow-y-auto overflow-x-hidden [&>*]:flex-1", s && "-mt-3"),
|
package/dist/f0.d.ts
CHANGED
|
@@ -4269,12 +4269,20 @@ export declare interface F0OneIconProps extends SVGProps<SVGSVGElement> {
|
|
|
4269
4269
|
size?: "xs" | "sm" | "md" | "lg";
|
|
4270
4270
|
}
|
|
4271
4271
|
|
|
4272
|
-
export declare const F0OneSwitch: ({ className, disabled }: F0OneSwitchProps) => JSX_2.Element | null;
|
|
4272
|
+
export declare const F0OneSwitch: ({ className, disabled, tooltip, autoOpen, }: F0OneSwitchProps) => JSX_2.Element | null;
|
|
4273
4273
|
|
|
4274
4274
|
/**
|
|
4275
4275
|
* Props for the F0OneSwitch component
|
|
4276
4276
|
*/
|
|
4277
|
-
export declare type F0OneSwitchProps = React.ComponentPropsWithoutRef<typeof SwitchPrimitive.Root
|
|
4277
|
+
export declare type F0OneSwitchProps = React.ComponentPropsWithoutRef<typeof SwitchPrimitive.Root> & {
|
|
4278
|
+
/** Custom text shown in the tooltip when the chat is closed */
|
|
4279
|
+
tooltip?: {
|
|
4280
|
+
whenDisabled?: string;
|
|
4281
|
+
whenEnabled?: string;
|
|
4282
|
+
};
|
|
4283
|
+
/** When true, the tooltip is opened automatically for 3 seconds*/
|
|
4284
|
+
autoOpen?: boolean;
|
|
4285
|
+
};
|
|
4278
4286
|
|
|
4279
4287
|
/**
|
|
4280
4288
|
* A record mapping section IDs to their individual schemas.
|
package/dist/f0.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { a6 as re, a7 as Vt, aa as ta, ab as wi, ac as _i, ad as Qi, ae as El, af as ra, ag as yt, u as ur, ah as Rn, ai as kl, aj as Sl, ak as Dl, al as Nl, am as st, an as ot, ao as Rl, ap as Al, aq as na, ar as Tl, as as rn, at as ia, au as sa, av as aa, aw as oa, ax as la, ay as ca, az as Ol, aA as Ml, aB as Ll, aC as Il, aD as Pl, a8 as Xe, aE as es, aF as zl, aG as Fl, aH as Bl, aI as da, aJ as Hl, aK as Vl, aL as jl, aM as ua, aN as $l, aO as nr, aP as Wl, aQ as Gl, aR as Ul, aS as ha, aT as Zl, aU as fa, aV as ql, aW as Kl, aX as Yl, aY as Xl, aZ as Jl, a_ as ma, a$ as Ql, b0 as ec, b1 as tc, b2 as rc, b3 as nc, b4 as ic, I as sc, b5 as ac, b6 as oc, b7 as lc, b8 as cc } from "./F0AiChat-
|
|
2
|
-
import { A as Mg, bo as Lg, B as Ig, C as Pg, E as zg, bD as Fg, h as Bg, F as Hg, a as Vg, x as jg, i as $g, b as Wg, b9 as Gg, ba as Ug, bb as Zg, bc as qg, be as Kg, bf as Yg, bg as Xg, bh as Jg, bi as Qg, bj as ev, bk as tv, bz as rv, s as nv, t as iv, v as sv, bn as av, w as ov, c as lv, bp as cv, n as dv, o as uv, p as hv, H as fv, k as mv, L as pv, O as gv, bm as vv, q as yv, P as bv, S as xv, T as wv, l as _v, m as Cv, U as Ev, bA as kv, bu as Sv, r as Dv, j as Nv, bx as Rv, bt as Av, bE as Tv, bs as Ov, br as Mv, bd as Lv, d as Iv, bq as Pv, bv as zv, e as Fv, bF as Bv, bl as Hv, bw as Vv, g as jv, f as $v, bC as Wv, by as Gv, bB as Uv } from "./F0AiChat-
|
|
1
|
+
import { a6 as re, a7 as Vt, aa as ta, ab as wi, ac as _i, ad as Qi, ae as El, af as ra, ag as yt, u as ur, ah as Rn, ai as kl, aj as Sl, ak as Dl, al as Nl, am as st, an as ot, ao as Rl, ap as Al, aq as na, ar as Tl, as as rn, at as ia, au as sa, av as aa, aw as oa, ax as la, ay as ca, az as Ol, aA as Ml, aB as Ll, aC as Il, aD as Pl, a8 as Xe, aE as es, aF as zl, aG as Fl, aH as Bl, aI as da, aJ as Hl, aK as Vl, aL as jl, aM as ua, aN as $l, aO as nr, aP as Wl, aQ as Gl, aR as Ul, aS as ha, aT as Zl, aU as fa, aV as ql, aW as Kl, aX as Yl, aY as Xl, aZ as Jl, a_ as ma, a$ as Ql, b0 as ec, b1 as tc, b2 as rc, b3 as nc, b4 as ic, I as sc, b5 as ac, b6 as oc, b7 as lc, b8 as cc } from "./F0AiChat-BprbqYqq.js";
|
|
2
|
+
import { A as Mg, bo as Lg, B as Ig, C as Pg, E as zg, bD as Fg, h as Bg, F as Hg, a as Vg, x as jg, i as $g, b as Wg, b9 as Gg, ba as Ug, bb as Zg, bc as qg, be as Kg, bf as Yg, bg as Xg, bh as Jg, bi as Qg, bj as ev, bk as tv, bz as rv, s as nv, t as iv, v as sv, bn as av, w as ov, c as lv, bp as cv, n as dv, o as uv, p as hv, H as fv, k as mv, L as pv, O as gv, bm as vv, q as yv, P as bv, S as xv, T as wv, l as _v, m as Cv, U as Ev, bA as kv, bu as Sv, r as Dv, j as Nv, bx as Rv, bt as Av, bE as Tv, bs as Ov, br as Mv, bd as Lv, d as Iv, bq as Pv, bv as zv, e as Fv, bF as Bv, bl as Hv, bw as Vv, g as jv, f as $v, bC as Wv, by as Gv, bB as Uv } from "./F0AiChat-BprbqYqq.js";
|
|
3
3
|
import { jsx as f, jsxs as j, Fragment as Br } from "react/jsx-runtime";
|
|
4
4
|
import * as at from "react";
|
|
5
5
|
import B, { forwardRef as We, useRef as K, useImperativeHandle as dc, Children as nn, createContext as Ct, useContext as ht, useState as Q, useMemo as U, useEffect as J, useCallback as le, useLayoutEffect as si, createElement as qr, isValidElement as pa, Fragment as uc, memo as hc, useReducer as fc, cloneElement as mc, PureComponent as pc } from "react";
|
|
6
6
|
import { createPortal as ga, unstable_batchedUpdates as Kr, flushSync as gc } from "react-dom";
|
|
7
|
-
import { L as va, C as vc, i as ya, D as yc, S as ts, a as bc, f as Un, b as yr, c as xc, A as wc, d as Yr, e as ba, E as _c, g as Qr, h as Cc, j as Ec, k as kc, l as er, m as xa, u as Sc, G as Dc, n as Nc, o as rs, p as Rc, q as wa, r as Ac, B as _a, X as Ca, Y as ai, s as Tc, t as Ea, v as Oc, w as Mc, x as Lc, y as Ic, z as Pc, F as zc, H as Fc, I as Bc, J as ns, K as Hc, M as Cr, N as Zn, O as Vc, P as jc, Q as $c, R as Wc, T as Gc, U as Uc, V as Zc, W as qc, Z as Kc, _ as Yc, $ as Xc, a0 as is, a1 as Jc, a2 as Qc, a3 as ss, a4 as ka, a5 as ed, a6 as td, a7 as rd, a8 as nd, a9 as Sa, aa as Ci, ab as id, ac as sd, ad, ae as od, af as Da, ag as Na, ah as ld, ai as cd, aj as dd, ak as ud } from "./DataCollectionStorageProvider-
|
|
8
|
-
import { aB as qv, al as Kv, am as Yv, ap as Xv, at as Jv, au as Qv, aw as ey, ax as ty, ay as ry, az as ny, as as iy, av as sy, an as ay, ao as oy, aA as ly, aq as cy, ar as dy, aC as uy, aD as hy, aE as fy, aF as my } from "./DataCollectionStorageProvider-
|
|
9
|
-
import { A as gy, F as vy, c as yy, b as by, a as xy, o as wy, u as _y } from "./F0HILActionConfirmation-
|
|
7
|
+
import { L as va, C as vc, i as ya, D as yc, S as ts, a as bc, f as Un, b as yr, c as xc, A as wc, d as Yr, e as ba, E as _c, g as Qr, h as Cc, j as Ec, k as kc, l as er, m as xa, u as Sc, G as Dc, n as Nc, o as rs, p as Rc, q as wa, r as Ac, B as _a, X as Ca, Y as ai, s as Tc, t as Ea, v as Oc, w as Mc, x as Lc, y as Ic, z as Pc, F as zc, H as Fc, I as Bc, J as ns, K as Hc, M as Cr, N as Zn, O as Vc, P as jc, Q as $c, R as Wc, T as Gc, U as Uc, V as Zc, W as qc, Z as Kc, _ as Yc, $ as Xc, a0 as is, a1 as Jc, a2 as Qc, a3 as ss, a4 as ka, a5 as ed, a6 as td, a7 as rd, a8 as nd, a9 as Sa, aa as Ci, ab as id, ac as sd, ad, ae as od, af as Da, ag as Na, ah as ld, ai as cd, aj as dd, ak as ud } from "./DataCollectionStorageProvider-7VFEjXoI.js";
|
|
8
|
+
import { aB as qv, al as Kv, am as Yv, ap as Xv, at as Jv, au as Qv, aw as ey, ax as ty, ay as ry, az as ny, as as iy, av as sy, an as ay, ao as oy, aA as ly, aq as cy, ar as dy, aC as uy, aD as hy, aE as fy, aF as my } from "./DataCollectionStorageProvider-7VFEjXoI.js";
|
|
9
|
+
import { A as gy, F as vy, c as yy, b as by, a as xy, o as wy, u as _y } from "./F0HILActionConfirmation-BEjcs8cm.js";
|
|
10
10
|
import { defaultTranslations as Ey } from "./i18n-provider-defaults.js";
|
|
11
11
|
import './f0.css';const hd = {
|
|
12
12
|
xs: 1,
|