@factorialco/f0-react 6.35.0 → 6.37.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.
@@ -1644,6 +1644,21 @@ declare type CanvasContentBase = {
1644
1644
  title: string;
1645
1645
  description?: string;
1646
1646
  toolCallId?: string;
1647
+ /**
1648
+ * Render this content across the whole frame, covering the docked chat
1649
+ * instead of hugging a seam beside it. For content that is a step of its own
1650
+ * rather than something you work through while talking — picking a template,
1651
+ * say. The chat is only covered, never closed, so the conversation is exactly
1652
+ * where it was when the canvas is dismissed.
1653
+ *
1654
+ * Deliberately NOT called `fullscreen`: the chat's own
1655
+ * `visualizationMode: "fullscreen"` means the opposite arrangement (chat full
1656
+ * width, no canvas), and going back to it is how a covering canvas is
1657
+ * dismissed.
1658
+ *
1659
+ * Defaults to the docked split.
1660
+ */
1661
+ coversChat?: boolean;
1647
1662
  };
1648
1663
 
1649
1664
  /**
@@ -3536,6 +3551,23 @@ declare const daytimePageVariants: (props?: ({
3536
3551
  */
3537
3552
  export declare const DEFAULT_EXPECTED_ITEMS_COUNT = 3;
3538
3553
 
3554
+ /**
3555
+ * How rows start out when the user has not touched them yet.
3556
+ *
3557
+ * - `true` / `false` — every row, or none (the default).
3558
+ * - a number — expand rows shallower than that depth, so `1` opens the
3559
+ * top-level rows and reveals depth 1.
3560
+ * - a predicate — anything else, e.g. `(node) => node.type !== "role"`.
3561
+ *
3562
+ * The policy is re-evaluated per row rather than resolved into a set of ids up
3563
+ * front: rows evaluate it as they mount, so an expanded row's children evaluate
3564
+ * it in turn and the cascade falls out of the component tree. That works the
3565
+ * same whether the tree is already in memory or fetched lazily.
3566
+ */
3567
+ declare type DefaultExpandedPolicy<R extends RecordType> = boolean | number | ((record: R, context: {
3568
+ depth: number;
3569
+ }) => boolean);
3570
+
3539
3571
  /**
3540
3572
  * Built-in renderers for the standard visualizations. `list` covers every
3541
3573
  * row-based slot through its schema; `event-list` and `indicators` spread
@@ -5606,8 +5638,20 @@ declare type F0AvatarPersonProps = {
5606
5638
  badge?: AvatarBadge;
5607
5639
  /**
5608
5640
  * Whether the person is deactivated. If true, the avatar will display an icon instead of the person's name or picture.
5641
+ *
5642
+ * Mutually exclusive with `pending`: they represent opposite ends of the
5643
+ * employee lifecycle. If both are set, `deactivated` takes precedence.
5609
5644
  */
5610
5645
  deactivated?: boolean;
5646
+ /**
5647
+ * Whether the position is still to be filled — a person who is planned but
5648
+ * not hired yet (e.g. an open role in headcount planning). If true, the
5649
+ * avatar will display a search-person icon instead of the person's name or
5650
+ * picture.
5651
+ *
5652
+ * Mutually exclusive with `deactivated`.
5653
+ */
5654
+ pending?: boolean;
5611
5655
  } & Pick<BaseAvatarProps, "aria-label" | "aria-labelledby">;
5612
5656
 
5613
5657
  declare const F0AvatarPulse: {
@@ -12415,6 +12459,27 @@ declare type TableVisualizationOptions<R extends RecordType, _Filters extends Fi
12415
12459
  * The number of columns to freeze on the left
12416
12460
  */
12417
12461
  frozenColumns?: 0 | 1 | 2;
12462
+ /**
12463
+ * For nested tables, which rows start out expanded before the user touches
12464
+ * anything. Pass `true` for the whole tree, a depth, or a predicate:
12465
+ *
12466
+ * ```ts
12467
+ * defaultExpanded: true // everything
12468
+ * defaultExpanded: 2 // down to depth 2
12469
+ * defaultExpanded: (node) => node.type !== "role" // stop at roles
12470
+ * ```
12471
+ *
12472
+ * Once the user expands or collapses a row their choice wins for that row and
12473
+ * the policy no longer applies to it. Changing filters, sortings or
12474
+ * navigation filters resets the tree, so the policy applies again and a
12475
+ * filtered view comes back expanded.
12476
+ *
12477
+ * Expanding a row loads its children, so a policy that opens a large tree
12478
+ * costs one `fetchChildren` per opened row on first paint.
12479
+ *
12480
+ * @default false
12481
+ */
12482
+ defaultExpanded?: DefaultExpandedPolicy<R>;
12418
12483
  /**
12419
12484
  * Allow users to reorder columns (you can only reorder columns that are not frozen) (check cols props to define the order)
12420
12485
  */
@@ -1,6 +1,6 @@
1
- import { t as s, s as t, A as i, a as r, G as o, ao as n, an as l, ap as d, B as S, v as C, x as g, J as m, av as u, aw as h, aF as c, w as b, C as P, au as p, aG as T, z as I, y as F, a1 as E, aZ as A, b3 as B, I as L, aY as y, E as D, b as W, ae as k, af as v, F as _, i as f, l as x, n as O, j as H, c as M, p as R, q as N, H as V, aJ as w, aK as G, ay as z, ak as U, aO as j, aq as X, a4 as Y, aI as q, Q as K, aa as J, O as Q, b7 as Z, T as $, P as aa, K as ea, L as sa, ar as ta, R as ia, aW as ra, a_ as oa, S as na, a5 as la, a6 as da, Y as Sa, Z as Ca, _ as ga, X as ma, $ as ua, U as ha, a0 as ca, a2 as ba, a3 as Pa, a7 as pa, a8 as Ta, b1 as Ia, am as Fa, al as Ea, at as Aa, aH as Ba, aE as La, as as ya, a9 as Da, az as Wa, b2 as ka, b5 as va, ax as _a, aC as fa, aA as xa, b6 as Oa, aD as Ha, aB as Ma, b4 as Ra, d as Na, ad as Va, b0 as wa, a$ as Ga, ah as za, f as Ua, k as ja, o as Xa, g as Ya, h as qa, aR as Ka, aP as Ja, ai as Qa, aj as Za, aN as $a, aQ as ae, e as ee, r as se, aM as te, aS as ie, ab as re, aX as oe, u as ne, ac as le, ag as de, aL as Se, N as Ce, M as ge, D as me, W as ue, V as he, aV as ce, aU as be, aT as Pe } from "./experimental-l7ckfJhf.js";
2
- import { dL as Te, en as Ie, em as Fe, ez as Ee, dj as Ae, ek as Be, cc as Le, c2 as ye, c9 as De, ef as We, bX as ke, bX as ve, bQ as _e, eg as fe, cf as xe, dY as Oe, ch as He, eC as Me, el as Re, ev as Ne, ew as Ve, d4 as we, eA as Ge, k as ze, dM as Ue, cL as je, ej as Xe, ep as Ye, eo as qe, T as Ke, h as Je, bR as Qe, ex as Ze, eD as $e, ey as as, eB as es, eu as ss, er as ts, et as is, eq as rs, eh as os, ei as ns, eb as ls, es as ds } from "./F0CanvasPanel-C4oILlIh.js";
3
- import { ap as Cs, aq as gs, _ as ms, $ as us, Y as hs, a9 as cs, C as bs, a0 as Ps, aB as ps, a5 as Ts, aA as Is, a8 as Fs, Z as Es, an as As, aD as Bs, aC as Ls, af as ys, aa as Ds, aG as Ws, X as ks, ak as vs, ah as _s, ac as fs, aI as xs, ad as Os, al as Hs, am as Ms, a1 as Rs, aE as Ns, aF as Vs, ae as ws, ao as Gs, ax as zs, O as Us, az as js, a2 as Xs, aK as Ys, a4 as qs, a6 as Ks, ai as Js, aH as Qs, aj as Zs, ag as $s, aJ as at, a3 as et, W as st, a7 as tt, T as it, U as rt, at as ot, au as nt, ar as lt, ay as dt, ab as St, av as Ct, h as gt, as as mt, aw as ut, s as ht } from "./CoachmarkProvider-D4-wX33Q.js";
1
+ import { t as s, s as t, A as i, a as r, G as o, ao as n, an as l, ap as d, B as S, v as C, x as g, J as m, av as u, aw as h, aF as c, w as b, C as P, au as p, aG as T, z as I, y as F, a1 as E, aZ as A, b3 as B, I as L, aY as y, E as D, b as W, ae as k, af as v, F as _, i as f, l as x, n as O, j as H, c as M, p as R, q as N, H as V, aJ as w, aK as G, ay as z, ak as U, aO as j, aq as X, a4 as Y, aI as q, Q as K, aa as J, O as Q, b7 as Z, T as $, P as aa, K as ea, L as sa, ar as ta, R as ia, aW as ra, a_ as oa, S as na, a5 as la, a6 as da, Y as Sa, Z as Ca, _ as ga, X as ma, $ as ua, U as ha, a0 as ca, a2 as ba, a3 as Pa, a7 as pa, a8 as Ta, b1 as Ia, am as Fa, al as Ea, at as Aa, aH as Ba, aE as La, as as ya, a9 as Da, az as Wa, b2 as ka, b5 as va, ax as _a, aC as fa, aA as xa, b6 as Oa, aD as Ha, aB as Ma, b4 as Ra, d as Na, ad as Va, b0 as wa, a$ as Ga, ah as za, f as Ua, k as ja, o as Xa, g as Ya, h as qa, aR as Ka, aP as Ja, ai as Qa, aj as Za, aN as $a, aQ as ae, e as ee, r as se, aM as te, aS as ie, ab as re, aX as oe, u as ne, ac as le, ag as de, aL as Se, N as Ce, M as ge, D as me, W as ue, V as he, aV as ce, aU as be, aT as Pe } from "./experimental-DoRjJQf6.js";
2
+ import { dL as Te, en as Ie, em as Fe, ez as Ee, dj as Ae, ek as Be, cc as Le, c2 as ye, c9 as De, ef as We, bX as ke, bX as ve, bQ as _e, eg as fe, cf as xe, dY as Oe, ch as He, eC as Me, el as Re, ev as Ne, ew as Ve, d4 as we, eA as Ge, k as ze, dM as Ue, cL as je, ej as Xe, ep as Ye, eo as qe, T as Ke, h as Je, bR as Qe, ex as Ze, eD as $e, ey as as, eB as es, eu as ss, er as ts, et as is, eq as rs, eh as os, ei as ns, eb as ls, es as ds } from "./F0CanvasPanel-B-Lr6HWC.js";
3
+ import { ap as Cs, aq as gs, _ as ms, $ as us, Y as hs, a9 as cs, C as bs, a0 as Ps, aB as ps, a5 as Ts, aA as Is, a8 as Fs, Z as Es, an as As, aD as Bs, aC as Ls, af as ys, aa as Ds, aG as Ws, X as ks, ak as vs, ah as _s, ac as fs, aI as xs, ad as Os, al as Hs, am as Ms, a1 as Rs, aE as Ns, aF as Vs, ae as ws, ao as Gs, ax as zs, O as Us, az as js, a2 as Xs, aK as Ys, a4 as qs, a6 as Ks, ai as Js, aH as Qs, aj as Zs, ag as $s, aJ as at, a3 as et, W as st, a7 as tt, T as it, U as rt, at as ot, au as nt, ar as lt, ay as dt, ab as St, av as Ct, h as gt, as as mt, aw as ut, s as ht } from "./CoachmarkProvider-B4pRGR0b.js";
4
4
  export {
5
5
  Cs as AUTO_PER_PAGE_MAX,
6
6
  gs as AUTO_PER_PAGE_MIN_RESERVED_ROWS,
package/dist/f0.d.ts CHANGED
@@ -751,6 +751,21 @@ declare type AiChatProviderReturnValue = {
751
751
  * Reset the chat width to the default value (360px)
752
752
  */
753
753
  resetChatWidth: () => void;
754
+ /**
755
+ * True while the user is dragging the chat's resize handle. Broadcast here
756
+ * because everything laid out against the chat's edge has to follow the drag
757
+ * 1:1 — an eased width leaves the seam trailing the cursor.
758
+ *
759
+ * OPTIONAL on purpose: the provider always supplies both, but a required
760
+ * addition to this return type reads as a breaking change to the public API
761
+ * check even though callers only ever read it.
762
+ *
763
+ * The window that renders the handle keeps its own local drag state and
764
+ * mirrors it here; it does not read this back as the gate for its listener,
765
+ * since a split layout has two windows and only one is being dragged.
766
+ */
767
+ isResizing?: boolean;
768
+ setIsResizing?: React.Dispatch<React.SetStateAction<boolean>>;
754
769
  /**
755
770
  * The current visualization mode of the chat
756
771
  */
@@ -2211,6 +2226,21 @@ export declare type CanvasContentBase = {
2211
2226
  title: string;
2212
2227
  description?: string;
2213
2228
  toolCallId?: string;
2229
+ /**
2230
+ * Render this content across the whole frame, covering the docked chat
2231
+ * instead of hugging a seam beside it. For content that is a step of its own
2232
+ * rather than something you work through while talking — picking a template,
2233
+ * say. The chat is only covered, never closed, so the conversation is exactly
2234
+ * where it was when the canvas is dismissed.
2235
+ *
2236
+ * Deliberately NOT called `fullscreen`: the chat's own
2237
+ * `visualizationMode: "fullscreen"` means the opposite arrangement (chat full
2238
+ * width, no canvas), and going back to it is how a covering canvas is
2239
+ * dismissed.
2240
+ *
2241
+ * Defaults to the docked split.
2242
+ */
2243
+ coversChat?: boolean;
2214
2244
  };
2215
2245
 
2216
2246
  /**
@@ -4519,6 +4549,23 @@ declare type DateValue = {
4519
4549
 
4520
4550
  declare type DefaultAction = BannerAction;
4521
4551
 
4552
+ /**
4553
+ * How rows start out when the user has not touched them yet.
4554
+ *
4555
+ * - `true` / `false` — every row, or none (the default).
4556
+ * - a number — expand rows shallower than that depth, so `1` opens the
4557
+ * top-level rows and reveals depth 1.
4558
+ * - a predicate — anything else, e.g. `(node) => node.type !== "role"`.
4559
+ *
4560
+ * The policy is re-evaluated per row rather than resolved into a set of ids up
4561
+ * front: rows evaluate it as they mount, so an expanded row's children evaluate
4562
+ * it in turn and the cascade falls out of the component tree. That works the
4563
+ * same whether the tree is already in memory or fetched lazily.
4564
+ */
4565
+ declare type DefaultExpandedPolicy<R extends RecordType> = boolean | number | ((record: R, context: {
4566
+ depth: number;
4567
+ }) => boolean);
4568
+
4522
4569
  export declare const defaultTranslations: {
4523
4570
  readonly common: {
4524
4571
  readonly selectPlaceholder: "Select";
@@ -7921,7 +7968,7 @@ export declare type F0AvatarModuleProps = VariantProps<typeof moduleAvatarVarian
7921
7968
  } & Pick<BaseAvatarProps, "aria-label" | "aria-labelledby">;
7922
7969
 
7923
7970
  export declare const F0AvatarPerson: WithDataTestIdReturnType_4< {
7924
- ({ firstName, lastName, src, size, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledby, badge, deactivated, }: F0AvatarPersonProps_2): JSX_2.Element;
7971
+ ({ firstName, lastName, src, size, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledby, badge, deactivated, pending, }: F0AvatarPersonProps_2): JSX_2.Element;
7925
7972
  displayName: string;
7926
7973
  }>;
7927
7974
 
@@ -7948,8 +7995,20 @@ export declare type F0AvatarPersonProps = {
7948
7995
  badge?: AvatarBadge;
7949
7996
  /**
7950
7997
  * Whether the person is deactivated. If true, the avatar will display an icon instead of the person's name or picture.
7998
+ *
7999
+ * Mutually exclusive with `pending`: they represent opposite ends of the
8000
+ * employee lifecycle. If both are set, `deactivated` takes precedence.
7951
8001
  */
7952
8002
  deactivated?: boolean;
8003
+ /**
8004
+ * Whether the position is still to be filled — a person who is planned but
8005
+ * not hired yet (e.g. an open role in headcount planning). If true, the
8006
+ * avatar will display a search-person icon instead of the person's name or
8007
+ * picture.
8008
+ *
8009
+ * Mutually exclusive with `deactivated`.
8010
+ */
8011
+ pending?: boolean;
7953
8012
  } & Pick<BaseAvatarProps, "aria-label" | "aria-labelledby">;
7954
8013
 
7955
8014
  export declare const F0AvatarTeam: WithDataTestIdReturnType_4< {
@@ -17720,6 +17779,27 @@ declare type TableVisualizationOptions<R extends RecordType, _Filters extends Fi
17720
17779
  * The number of columns to freeze on the left
17721
17780
  */
17722
17781
  frozenColumns?: 0 | 1 | 2;
17782
+ /**
17783
+ * For nested tables, which rows start out expanded before the user touches
17784
+ * anything. Pass `true` for the whole tree, a depth, or a predicate:
17785
+ *
17786
+ * ```ts
17787
+ * defaultExpanded: true // everything
17788
+ * defaultExpanded: 2 // down to depth 2
17789
+ * defaultExpanded: (node) => node.type !== "role" // stop at roles
17790
+ * ```
17791
+ *
17792
+ * Once the user expands or collapses a row their choice wins for that row and
17793
+ * the policy no longer applies to it. Changing filters, sortings or
17794
+ * navigation filters resets the tree, so the policy applies again and a
17795
+ * filtered view comes back expanded.
17796
+ *
17797
+ * Expanding a row loads its children, so a policy that opens a large tree
17798
+ * costs one `fetchChildren` per opened row on first paint.
17799
+ *
17800
+ * @default false
17801
+ */
17802
+ defaultExpanded?: DefaultExpandedPolicy<R>;
17723
17803
  /**
17724
17804
  * Allow users to reorder columns (you can only reorder columns that are not frozen) (check cols props to define the order)
17725
17805
  */
package/dist/f0.js CHANGED
@@ -1,18 +1,18 @@
1
- import { hV as rN, w as at, e1 as xb, cr as dn, hk as nN, bW as An, fk as kV, hW as PV, hX as iN, r as Xt, c2 as ef, hY as RV, hZ as Tw, h_ as Mr, h$ as Ua, i0 as OV, u as Be, bU as qv, i1 as Yi, i2 as zl, i3 as aN, bT as sl, hh as Vy, i4 as BV, S as ee, s as wb, i5 as zV, i6 as VV, i7 as Dw, cx as FV, i8 as GV, i9 as HV, ia as oN, ib as WV, t as Zv, v as jv, m as tt, x as Kv, y as Gr, O as UV, Q as $V, z as tf, A as rf, ax as $o, B as nf, gs as Fy, d2 as Ft, V as et, ah as yl, d3 as Ma, df as Sb, ic as YV, ck as XV, cl as Aw, n as sN, o as _l, bV as xc, cm as qV, ez as bd, d$ as lN, id as ZV, hj as Mw, d5 as jV, ie as Ew, da as KV, ig as QV, b$ as uN, dX as cN, gb as Gy, dj as JV, a7 as Hy, a6 as fN, gO as Vl, gP as af, gR as hN, hq as eF, gq as dN, d8 as vN, gp as tF, ih as Qv, b3 as Cb, h5 as rF, c7 as pN, fY as nF, au as iF, hR as Tb, b6 as gN, c3 as aF, c4 as oF, c5 as sF, d as lF, bA as mN, ai as rs, bG as yN, b2 as _N, ag as Db, bI as bN, X as Ab, G as ll, H as ul, K as cl, L as fl, gt as ha, $ as xN, j as uF, b0 as xd, as as bl, J as Nr, ej as cF, bR as wN, b4 as Wy, co as wc, ch as fF, aS as of, aq as Fl, dE as SN, dr as hF, g_ as Or, ii as dF, ij as vF, ik as CN, il as Jv, im as pF, io as gF, cC as Kn, R as TN, U as DN, cg as mF, ip as yF, c9 as AN, dV as _F, dW as bF, bO as Uy, d9 as Gl, e4 as Hl, eX as sf, bJ as xF, e2 as wF, bq as SF, ak as MN, dd as CF, aj as TF, aW as Lw, bE as Sc, f_ as DF, f$ as AF, iq as MF, cf as EF, aZ as LF, l as EN, a8 as NF, a5 as IF, ir as kF, hn as PF, cL as RF, c1 as OF, cD as LN, is as NN, it as BF, iu as zF, I as VF, iv as FF, iw as GF, ix as HF, iy as WF } from "./F0CanvasPanel-C4oILlIh.js";
2
- import { iP as Che, C as The, D as Dhe, dy as Ahe, c as Mhe, F as Ehe, a as Lhe, iI as Nhe, f as Ihe, cv as khe, dz as Phe, e6 as Rhe, ca as Ohe, cb as Bhe, ct as zhe, c8 as Vhe, cu as Fhe, dl as Ghe, ef as Hhe, g as Whe, c6 as Uhe, bX as $he, iD as Yhe, iU as Xhe, bQ as qhe, e as Zhe, dY as jhe, k as Khe, cw as Qhe, iK as Jhe, dH as ede, iL as tde, iN as rde, iO as nde, eC as ide, iR as ade, ev as ode, ew as sde, P as lde, eA as ude, iM as cde, ex as fde, iQ as hde, iV as dde, iA as vde, iB as pde, iC as gde, iz as mde, ey as yde, iT as _de, iJ as bde, iG as xde, iF as wde, eB as Sde, gn as Cde, h6 as Tde, iS as Dde, dB as Ade, eu as Mde, er as Ede, et as Lde, eq as Nde, iH as Ide, h8 as kde, h2 as Pde, gS as Rde, iY as Ode, eb as Bde, es as zde, iX as Vde, dP as Fde, cd as Gde, gm as Hde, gT as Wde, b as Ude, dS as $de, hp as Yde, dA as Xde, ce as qde, iE as Zde, h4 as jde, h3 as Kde, iW as Qde } from "./F0CanvasPanel-C4oILlIh.js";
1
+ import { hV as rN, w as at, e1 as xb, cr as dn, hk as nN, bW as An, fk as kV, hW as PV, hX as iN, r as Xt, c2 as ef, hY as RV, hZ as Tw, h_ as Mr, h$ as Ua, i0 as OV, u as Be, bU as qv, i1 as Yi, i2 as zl, i3 as aN, bT as sl, hh as Vy, i4 as BV, S as ee, s as wb, i5 as zV, i6 as VV, i7 as Dw, cx as FV, i8 as GV, i9 as HV, ia as oN, ib as WV, t as Zv, v as jv, m as tt, x as Kv, y as Gr, O as UV, Q as $V, z as tf, A as rf, ax as $o, B as nf, gs as Fy, d2 as Ft, V as et, ah as yl, d3 as Ma, df as Sb, ic as YV, ck as XV, cl as Aw, n as sN, o as _l, bV as xc, cm as qV, ez as bd, d$ as lN, id as ZV, hj as Mw, d5 as jV, ie as Ew, da as KV, ig as QV, b$ as uN, dX as cN, gb as Gy, dj as JV, a7 as Hy, a6 as fN, gO as Vl, gP as af, gR as hN, hq as eF, gq as dN, d8 as vN, gp as tF, ih as Qv, b3 as Cb, h5 as rF, c7 as pN, fY as nF, au as iF, hR as Tb, b6 as gN, c3 as aF, c4 as oF, c5 as sF, d as lF, bA as mN, ai as rs, bG as yN, b2 as _N, ag as Db, bI as bN, X as Ab, G as ll, H as ul, K as cl, L as fl, gt as ha, $ as xN, j as uF, b0 as xd, as as bl, J as Nr, ej as cF, bR as wN, b4 as Wy, co as wc, ch as fF, aS as of, aq as Fl, dE as SN, dr as hF, g_ as Or, ii as dF, ij as vF, ik as CN, il as Jv, im as pF, io as gF, cC as Kn, R as TN, U as DN, cg as mF, ip as yF, c9 as AN, dV as _F, dW as bF, bO as Uy, d9 as Gl, e4 as Hl, eX as sf, bJ as xF, e2 as wF, bq as SF, ak as MN, dd as CF, aj as TF, aW as Lw, bE as Sc, f_ as DF, f$ as AF, iq as MF, cf as EF, aZ as LF, l as EN, a8 as NF, a5 as IF, ir as kF, hn as PF, cL as RF, c1 as OF, cD as LN, is as NN, it as BF, iu as zF, I as VF, iv as FF, iw as GF, ix as HF, iy as WF } from "./F0CanvasPanel-B-Lr6HWC.js";
2
+ import { iP as Che, C as The, D as Dhe, dy as Ahe, c as Mhe, F as Ehe, a as Lhe, iI as Nhe, f as Ihe, cv as khe, dz as Phe, e6 as Rhe, ca as Ohe, cb as Bhe, ct as zhe, c8 as Vhe, cu as Fhe, dl as Ghe, ef as Hhe, g as Whe, c6 as Uhe, bX as $he, iD as Yhe, iU as Xhe, bQ as qhe, e as Zhe, dY as jhe, k as Khe, cw as Qhe, iK as Jhe, dH as ede, iL as tde, iN as rde, iO as nde, eC as ide, iR as ade, ev as ode, ew as sde, P as lde, eA as ude, iM as cde, ex as fde, iQ as hde, iV as dde, iA as vde, iB as pde, iC as gde, iz as mde, ey as yde, iT as _de, iJ as bde, iG as xde, iF as wde, eB as Sde, gn as Cde, h6 as Tde, iS as Dde, dB as Ade, eu as Mde, er as Ede, et as Lde, eq as Nde, iH as Ide, h8 as kde, h2 as Pde, gS as Rde, iY as Ode, eb as Bde, es as zde, iX as Vde, dP as Fde, cd as Gde, gm as Hde, gT as Wde, b as Ude, dS as $de, hp as Yde, dA as Xde, ce as qde, iE as Zde, h4 as jde, h3 as Kde, iW as Qde } from "./F0CanvasPanel-B-Lr6HWC.js";
3
3
  import { jsx as S, jsxs as B, Fragment as it } from "react/jsx-runtime";
4
- import { C as UF, W as $F, w as YF, x as XF, y as qF, z as Nw, aL as ZF, aM as jF, Q as KF, D as QF, H as JF, J as e5, N as t5, l as r5, X as IN, aN as n5, aO as i5, aP as a5, aQ as o5, aR as s5, aS as kN, aT as l5, n as Mb, aU as $a, aV as u5, v as Eb, aW as Lb, a8 as c5, aX as f5, aY as ys, aZ as PN, a_ as h5, a$ as d5, b0 as v5, b1 as p5, b2 as g5, b3 as m5, ak as y5, aA as _5, b4 as b5, af as x5, E as w5, a as S5, f as ep, R as Nb, g as Ib, ai as RN, O as kb, b5 as ON, b6 as Iw, b7 as Pb, Y as C5, h as BN, ao as zN, b8 as T5, b9 as D5, ba as A5, bb as _s, bc as M5, aB as E5, M as L5 } from "./CoachmarkProvider-D4-wX33Q.js";
5
- import { _ as eve, $ as tve, a9 as rve, a0 as nve, a5 as ive, by as ave, bx as ove, bq as sve, be as lve, bd as uve, bf as cve, bg as fve, bi as hve, F as dve, aD as vve, aC as pve, aG as gve, ah as mve, ac as yve, aI as _ve, ad as bve, a1 as xve, bz as wve, aE as Sve, aF as Cve, ae as Tve, a2 as Dve, P as Ave, a4 as Mve, a6 as Eve, aH as Lve, ag as Nve, aJ as Ive, a3 as kve, a7 as Pve, bB as Rve, T as Ove, U as Bve, bp as zve, bv as Vve, bv as Fve, bw as Gve, bl as Hve, bk as Wve, bA as Uve, ay as $ve, bn as Yve, bo as Xve, ab as qve, bC as Zve, bD as jve, K as Kve, i as Qve, br as Jve, bs as epe, bt as tpe, bh as rpe, bm as npe, j as ipe, bu as ape, bj as ope, bE as spe } from "./CoachmarkProvider-D4-wX33Q.js";
4
+ import { C as UF, W as $F, w as YF, x as XF, y as qF, z as Nw, aL as ZF, aM as jF, Q as KF, D as QF, H as JF, J as e5, N as t5, l as r5, X as IN, aN as n5, aO as i5, aP as a5, aQ as o5, aR as s5, aS as kN, aT as l5, n as Mb, aU as $a, aV as u5, v as Eb, aW as Lb, a8 as c5, aX as f5, aY as ys, aZ as PN, a_ as h5, a$ as d5, b0 as v5, b1 as p5, b2 as g5, b3 as m5, ak as y5, aA as _5, b4 as b5, af as x5, E as w5, a as S5, f as ep, R as Nb, g as Ib, ai as RN, O as kb, b5 as ON, b6 as Iw, b7 as Pb, Y as C5, h as BN, ao as zN, b8 as T5, b9 as D5, ba as A5, bb as _s, bc as M5, aB as E5, M as L5 } from "./CoachmarkProvider-B4pRGR0b.js";
5
+ import { _ as eve, $ as tve, a9 as rve, a0 as nve, a5 as ive, by as ave, bx as ove, bq as sve, be as lve, bd as uve, bf as cve, bg as fve, bi as hve, F as dve, aD as vve, aC as pve, aG as gve, ah as mve, ac as yve, aI as _ve, ad as bve, a1 as xve, bz as wve, aE as Sve, aF as Cve, ae as Tve, a2 as Dve, P as Ave, a4 as Mve, a6 as Eve, aH as Lve, ag as Nve, aJ as Ive, a3 as kve, a7 as Pve, bB as Rve, T as Ove, U as Bve, bp as zve, bv as Vve, bv as Fve, bw as Gve, bl as Hve, bk as Wve, bA as Uve, ay as $ve, bn as Yve, bo as Xve, ab as qve, bC as Zve, bD as jve, K as Kve, i as Qve, br as Jve, bs as epe, bt as tpe, bh as rpe, bm as npe, j as ipe, bu as ape, bj as ope, bE as spe } from "./CoachmarkProvider-B4pRGR0b.js";
6
6
  import * as xt from "react";
7
7
  import N5, { forwardRef as Dr, useRef as ce, useImperativeHandle as I5, Children as wd, createContext as Ba, useContext as ns, useState as ue, useMemo as me, useEffect as Me, useCallback as de, useLayoutEffect as $y, isValidElement as VN, Fragment as Wl, useSyncExternalStore as xl, useId as oc, memo as k5 } from "react";
8
8
  import { createPortal as tp } from "react-dom";
9
9
  import { d as re, g as lf, h as P5, i as Js, P as uf, u as Ul, j as R5, f as za } from "./tooltip-DTpaXpXW.js";
10
- import { l as Yy, c as FN, d as Sd, r as Xy } from "./F0VideoPlayer-CI6CZGLe.js";
11
- import { F as upe } from "./F0VideoPlayer-CI6CZGLe.js";
12
- import { F as fpe, p as hpe } from "./index-ByA_oXGj.js";
13
- import { c as vpe } from "./pdfWorker-BMWcmp8A.js";
14
- import { D as O5, E as Cd, G as Rb, H as GN, I as HN, J as B5, K as z5, L as V5, M as F5, N as G5, F as H5 } from "./F0AiProcessingOverlay-CA3YKEvp.js";
15
- import { A as gpe, C as mpe, t as ype, s as _pe, v as bpe, y as xpe, l as wpe, i as Spe, q as Cpe, z as Tpe, B as Dpe, p as Ape, r as Mpe, j as Epe, e as Lpe, g as Npe, k as Ipe, T as kpe, w as Ppe, h as Rpe, a as Ope, n as Bpe, m as zpe, o as Vpe, b as Fpe, f as Gpe, x as Hpe, c as Wpe, d as Upe, u as $pe } from "./F0AiProcessingOverlay-CA3YKEvp.js";
10
+ import { l as Yy, c as FN, d as Sd, r as Xy } from "./F0VideoPlayer-DccGx-zt.js";
11
+ import { F as upe } from "./F0VideoPlayer-DccGx-zt.js";
12
+ import { F as fpe, p as hpe } from "./index-L8Mu3z7W.js";
13
+ import { c as vpe } from "./pdfWorker-Cpuux0OX.js";
14
+ import { D as O5, E as Cd, G as Rb, H as GN, I as HN, J as B5, K as z5, L as V5, M as F5, N as G5, F as H5 } from "./F0AiProcessingOverlay-Cft0hJ2Y.js";
15
+ import { A as gpe, C as mpe, t as ype, s as _pe, v as bpe, y as xpe, l as wpe, i as Spe, q as Cpe, z as Tpe, B as Dpe, p as Ape, r as Mpe, j as Epe, e as Lpe, g as Npe, k as Ipe, T as kpe, w as Ppe, h as Rpe, a as Ope, n as Bpe, m as zpe, o as Vpe, b as Fpe, f as Gpe, x as Hpe, c as Wpe, d as Upe, u as $pe } from "./F0AiProcessingOverlay-Cft0hJ2Y.js";
16
16
  import { g as W5 } from "./_commonjsHelpers-ByX85dGu.js";
17
17
  import { utils as hl, write as WN } from "./xlsx-CzlURDDb.js";
18
18
  import { defaultTranslations as Xpe } from "./i18n-provider-defaults.js";
@@ -0,0 +1,4 @@
1
+ import { F as r } from "./F0VideoPlayer-DccGx-zt.js";
2
+ export {
3
+ r as F0VideoPlayer
4
+ };
@@ -1,7 +1,7 @@
1
- import { S as L, m as ye, u as Z, n as Se, o as Re, i as ke, j as _e, k as Ne, q as Ce, l as Le, w as Fe, r as Ve, s as Te } from "./F0CanvasPanel-C4oILlIh.js";
1
+ import { S as L, m as ye, u as Z, n as Se, o as Re, i as ke, j as _e, k as Ne, q as Ce, l as Le, w as Fe, r as Ve, s as Te } from "./F0CanvasPanel-B-Lr6HWC.js";
2
2
  import { jsx as t, jsxs as y } from "react/jsx-runtime";
3
3
  import { lazy as J, forwardRef as ne, Suspense as He, useState as V, useRef as A, useMemo as te, useCallback as w, useEffect as T } from "react";
4
- import { e as Ee, D as Ue, P as je, c as De } from "./pdfWorker-BMWcmp8A.js";
4
+ import { e as Ee, D as Ue, P as je, c as De } from "./pdfWorker-Cpuux0OX.js";
5
5
  import { F as We } from "./Printer-BD-FEi_2.js";
6
6
  import { d as ae } from "./tooltip-DTpaXpXW.js";
7
7
  import './index.css';const Oe = ({
@@ -222,7 +222,7 @@ import './index.css';const Oe = ({
222
222
  }), i;
223
223
  };
224
224
  Ee();
225
- const qe = J(() => import("./SheetViewer-BelTG51l.js")), Ge = J(() => import("./DocxViewer-DlDQvoVh.js")), Ze = J(() => import("./TextViewer-D7WTedKI.js")), oe = 48, se = ne(
225
+ const qe = J(() => import("./SheetViewer-Lzdr7nCM.js")), Ge = J(() => import("./DocxViewer-CwAXmSZi.js")), Ze = J(() => import("./TextViewer-C22lgvG_.js")), oe = 48, se = ne(
226
226
  (o, a) => {
227
227
  const { kind: e = "pdf", mimeType: i, ...l } = o;
228
228
  if (e === "pdf") return /* @__PURE__ */ t(le, { ref: a, ...l });
@@ -1,8 +1,8 @@
1
1
  import { jsx, jsxs } from "react/jsx-runtime";
2
2
  import { createContext, useReducer, forwardRef, useRef, useImperativeHandle, useEffect, useCallback, useMemo, useContext, useLayoutEffect } from "react";
3
3
  import { e as clsx } from "./tooltip-DTpaXpXW.js";
4
- import { W as invariant } from "./F0CanvasPanel-C4oILlIh.js";
5
- import { d as dequal } from "./CoachmarkProvider-D4-wX33Q.js";
4
+ import { W as invariant } from "./F0CanvasPanel-B-Lr6HWC.js";
5
+ import { d as dequal } from "./CoachmarkProvider-B4pRGR0b.js";
6
6
  import { a as getAugmentedNamespace, g as getDefaultExportFromCjs } from "./_commonjsHelpers-ByX85dGu.js";
7
7
  import { c as commonjsRequire } from "./_commonjs-dynamic-modules-BpilXLfW.js";
8
8
  import './pdfWorker.css';var pdf$1 = { exports: {} };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@factorialco/f0-react",
3
- "version": "6.35.0",
3
+ "version": "6.37.0",
4
4
  "private": false,
5
5
  "files": [
6
6
  "assets",
@@ -1,4 +0,0 @@
1
- import { F as r } from "./F0VideoPlayer-CI6CZGLe.js";
2
- export {
3
- r as F0VideoPlayer
4
- };