@factorialco/f0-react 4.21.0 → 4.22.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/ai.d.ts CHANGED
@@ -5075,10 +5075,8 @@ declare module "@tiptap/core" {
5075
5075
 
5076
5076
  declare module "@tiptap/core" {
5077
5077
  interface Commands<ReturnType> {
5078
- videoEmbed: {
5079
- setVideoEmbed: (options: {
5080
- src: string;
5081
- }) => ReturnType;
5078
+ transcript: {
5079
+ insertTranscript: (data: TranscriptData) => ReturnType;
5082
5080
  };
5083
5081
  }
5084
5082
  }
@@ -5086,8 +5084,10 @@ declare module "@tiptap/core" {
5086
5084
 
5087
5085
  declare module "@tiptap/core" {
5088
5086
  interface Commands<ReturnType> {
5089
- transcript: {
5090
- insertTranscript: (data: TranscriptData) => ReturnType;
5087
+ videoEmbed: {
5088
+ setVideoEmbed: (options: {
5089
+ src: string;
5090
+ }) => ReturnType;
5091
5091
  };
5092
5092
  }
5093
5093
  }
package/dist/ai.js CHANGED
@@ -1,6 +1,6 @@
1
- import { C as e, D as r, c as t, F as i, a as o, f as n, g as F, d as C, e as l, I as A, P as d, b as u, u as h } from "./F0CanvasPanel-z7lqIQw9.js";
1
+ import { C as e, D as r, c as t, F as i, a as o, f as n, g as F, d as C, e as l, I as A, P as d, b as u, u as h } from "./F0CanvasPanel-CTxchgH0.js";
2
2
  import { defaultTranslations as c } from "./i18n-provider-defaults.js";
3
- import { A as P, C as T, t as p, s as v, v as g, y as f, l as y, i as S, q as x, z as b, B as k, p as H, r as O, j as V, e as w, g as B, k as M, F as z, T as D, w as L, h as j, a as q, n as E, m as G, o as R, b as J, f as K, x as N, c as Q, d as U, u as W } from "./F0AiProcessingOverlay-Bw0Mt_R2.js";
3
+ import { A as P, C as T, t as p, s as v, v as g, y as f, l as y, i as S, q as x, z as b, B as k, p as H, r as O, j as V, e as w, g as B, k as M, F as z, T as D, w as L, h as j, a as q, n as E, m as G, o as R, b as J, f as K, x as N, c as Q, d as U, u as W } from "./F0AiProcessingOverlay-BDMg5ViV.js";
4
4
  export {
5
5
  P as AiChatTranslationsProvider,
6
6
  e as ChatSpinner,
@@ -1071,7 +1071,7 @@ declare type BaseFilterDefinition<T extends FilterTypeKey> = {
1071
1071
  hideSelector?: boolean;
1072
1072
  };
1073
1073
 
1074
- declare function BaseHeader({ title, avatar, deactivated, description, primaryAction, secondaryActions, otherActions, status, metadata, metadataRowGap, showBottomBorder, }: BaseHeaderProps_2): JSX_2.Element;
1074
+ declare function BaseHeader({ title, avatar, deactivated, description, primaryAction, secondaryActions, otherActions, status, metadata, metadataRowGap, showBottomBorder, onClose, }: BaseHeaderProps_2): JSX_2.Element;
1075
1075
 
1076
1076
  declare type BaseHeaderProps = ComponentProps<typeof BaseHeader>;
1077
1077
 
@@ -1099,6 +1099,8 @@ declare interface BaseHeaderProps_2 {
1099
1099
  metadataRowGap?: MetadataProps["rowGap"];
1100
1100
  /** Renders a 1px bottom border at the very bottom of the header. */
1101
1101
  showBottomBorder?: boolean;
1102
+ /** When set, renders a close button in the header actions that calls this on click. */
1103
+ onClose?: () => void;
1102
1104
  }
1103
1105
 
1104
1106
  /**
@@ -8225,7 +8227,7 @@ declare type PropertyDefinition_2<T> = {
8225
8227
  hide?: (item: T) => boolean;
8226
8228
  };
8227
8229
 
8228
- declare type Props = {} & Pick<BaseHeaderProps, "avatar" | "title" | "description" | "primaryAction" | "secondaryActions" | "otherActions" | "metadata" | "status" | "deactivated" | "metadataRowGap" | "showBottomBorder">;
8230
+ declare type Props = {} & Pick<BaseHeaderProps, "avatar" | "title" | "description" | "primaryAction" | "secondaryActions" | "otherActions" | "metadata" | "status" | "deactivated" | "metadataRowGap" | "showBottomBorder" | "onClose">;
8229
8231
 
8230
8232
  declare type Props_10<Id extends string | number = string | number> = {
8231
8233
  items: Omit<WidgetSimpleListItemProps<Id>, "onClick">[];
@@ -8421,7 +8423,7 @@ export declare type ResolvedRecordType<R> = R extends RecordType ? R : RecordTyp
8421
8423
  /**
8422
8424
  * @experimental This is an experimental component use it at your own risk
8423
8425
  */
8424
- export declare const ResourceHeader: ({ avatar, title, description, primaryAction, secondaryActions, otherActions, status, metadata, deactivated, metadataRowGap, showBottomBorder, }: Props) => JSX_2.Element;
8426
+ export declare const ResourceHeader: ({ avatar, title, description, primaryAction, secondaryActions, otherActions, status, metadata, deactivated, metadataRowGap, showBottomBorder, onClose, }: Props) => JSX_2.Element;
8425
8427
 
8426
8428
  export declare type ResourceHeaderProps = Props;
8427
8429
 
@@ -10669,10 +10671,8 @@ declare module "@tiptap/core" {
10669
10671
 
10670
10672
  declare module "@tiptap/core" {
10671
10673
  interface Commands<ReturnType> {
10672
- videoEmbed: {
10673
- setVideoEmbed: (options: {
10674
- src: string;
10675
- }) => ReturnType;
10674
+ transcript: {
10675
+ insertTranscript: (data: TranscriptData) => ReturnType;
10676
10676
  };
10677
10677
  }
10678
10678
  }
@@ -10680,8 +10680,10 @@ declare module "@tiptap/core" {
10680
10680
 
10681
10681
  declare module "@tiptap/core" {
10682
10682
  interface Commands<ReturnType> {
10683
- transcript: {
10684
- insertTranscript: (data: TranscriptData) => ReturnType;
10683
+ videoEmbed: {
10684
+ setVideoEmbed: (options: {
10685
+ src: string;
10686
+ }) => ReturnType;
10685
10687
  };
10686
10688
  }
10687
10689
  }
@@ -1,9 +1,9 @@
1
- import { h as Ua, B as Va, i as Ga, j as Ka, k as wn, l as lt, m as et, n as qa, o as g, p as ae, q as $e, u as te, T as Ya, r as Qa, s as Ja, R as Xa, t as Za, v as ye, w as es, x as nn, y as bt, z as at, A as Ee, E as ts, G as ns, H as Z, J as rs, K as as, L as ce, M as ir, N as ss, O as is, Q as ue, S as St, U as Q, V as He, W as os, X as ls, Y as cs, Z as ds, _ as us, $ as Se, a0 as or, a1 as lr, a2 as Be, a3 as xt, a4 as fs, e as cr, a5 as We, a6 as dr, a7 as Ft, a8 as Ne, a9 as pe, aa as vt, ab as ur, ac as ms, ad as fr, ae as ve, af as we, ag as hs, ah as ps, ai as gs, aj as bs, ak as xs, al as ze, am as Tt, an as mr, ao as vs, ap as ys, aq as ws, ar as At, as as hr, at as pr, au as Ns, av as Cs, aw as yt, ax as ks, ay as gr, az as Is, aA as Ss, aB as Fs, aC as Ts, aD as As, aE as br, aF as xr, aG as vr, aH as Gt, aI as yr, aJ as Kt, aK as wr, aL as Es, aM as Rs, aN as Ds, aO as Nr, aP as Ps, aQ as De, aR as Je, aS as qt, aT as Cr, aU as Ls, aV as rn, aW as Os, aX as _s, aY as zs, aZ as Ye, a_ as $s, a$ as Bs, b0 as ct, b1 as Nn, b2 as Yt, b3 as Ms, b4 as js, a as Ws, b as Hs, b5 as Et, b6 as Us, g as Vs, F as Gs, b7 as Ks, b8 as kr, b9 as qs, ba as an, bb as Ys, bc as sn, bd as Xe, be as Qs, bf as Ir, bg as Sr, bh as Js, bi as Fr, bj as Xs, bk as Zs, bl as ei, bm as Tr, bn as ti, bo as ni, bp as ri, bq as on, br as ai, bs as si, bt as ii, bu as oi, bv as li, bw as ci, bx as Ar, by as Er, bz as di, bA as ui, bB as fi, bC as mi, bD as hi, bE as Rr, bF as pi, bG as gi, bH as Dr, bI as Pr, bJ as bi, bK as xi, bL as vi, bM as yi, bN as wi, bO as Ni, bP as Lr, bQ as Ci, bR as ki, bS as Ii, bT as Or, bU as Si, bV as Fi, bW as Ti, bX as Ai, bY as Ei, bZ as Ri, b_ as Pe, b$ as ln, c0 as cn, c1 as dn, c2 as _r, c3 as un, c4 as zr, c5 as $r, c6 as Di, c7 as Pi, c8 as Li, c9 as Oi, ca as _i, cb as zi, cc as $i, cd as Cn, ce as Bi, cf as Mi, cg as kn, ch as In, ci as Sn, cj as ji, ck as Wi, cl as Hi, cm as Ui, cn as Br, co as Vi, cp as Gi } from "./F0CanvasPanel-z7lqIQw9.js";
2
- import { cB as xm, cA as vm, cN as ym, cx as wm, cy as Nm, cq as Cm, cr as km, cr as Im, cs as Sm, cQ as Fm, cz as Tm, cJ as Am, cK as Em, cO as Rm, ct as Dm, cD as Pm, cC as Lm, cu as Om, cv as _m, cL as zm, cR as $m, cM as Bm, cP as Mm, cI as jm, cF as Wm, cH as Hm, cE as Um, cw as Vm, cG as Gm } from "./F0CanvasPanel-z7lqIQw9.js";
1
+ import { h as Ua, B as Va, i as Ga, j as Ka, k as wn, l as lt, m as et, n as qa, o as g, p as ae, q as $e, u as te, T as Ya, r as Qa, s as Ja, R as Xa, t as Za, v as ye, w as es, x as nn, y as bt, z as at, A as Ee, E as ts, G as ns, H as Z, J as rs, K as as, L as ce, M as ir, N as ss, O as is, Q as ue, S as St, U as Q, V as He, W as os, X as ls, Y as cs, Z as ds, _ as us, $ as Se, a0 as or, a1 as lr, a2 as Be, a3 as xt, a4 as fs, e as cr, a5 as We, a6 as dr, a7 as Ft, a8 as Ne, a9 as pe, aa as vt, ab as ur, ac as ms, ad as fr, ae as ve, af as we, ag as hs, ah as ps, ai as gs, aj as bs, ak as xs, al as ze, am as Tt, an as mr, ao as vs, ap as ys, aq as ws, ar as At, as as hr, at as pr, au as Ns, av as Cs, aw as yt, ax as ks, ay as gr, az as Is, aA as Ss, aB as Fs, aC as Ts, aD as As, aE as br, aF as xr, aG as vr, aH as Gt, aI as yr, aJ as Kt, aK as wr, aL as Es, aM as Rs, aN as Ds, aO as Nr, aP as Ps, aQ as De, aR as Je, aS as qt, aT as Cr, aU as Ls, aV as rn, aW as Os, aX as _s, aY as zs, aZ as Ye, a_ as $s, a$ as Bs, b0 as ct, b1 as Nn, b2 as Yt, b3 as Ms, b4 as js, a as Ws, b as Hs, b5 as Et, b6 as Us, g as Vs, F as Gs, b7 as Ks, b8 as kr, b9 as qs, ba as an, bb as Ys, bc as sn, bd as Xe, be as Qs, bf as Ir, bg as Sr, bh as Js, bi as Fr, bj as Xs, bk as Zs, bl as ei, bm as Tr, bn as ti, bo as ni, bp as ri, bq as on, br as ai, bs as si, bt as ii, bu as oi, bv as li, bw as ci, bx as Ar, by as Er, bz as di, bA as ui, bB as fi, bC as mi, bD as hi, bE as Rr, bF as pi, bG as gi, bH as Dr, bI as Pr, bJ as bi, bK as xi, bL as vi, bM as yi, bN as wi, bO as Ni, bP as Lr, bQ as Ci, bR as ki, bS as Ii, bT as Or, bU as Si, bV as Fi, bW as Ti, bX as Ai, bY as Ei, bZ as Ri, b_ as Pe, b$ as ln, c0 as cn, c1 as dn, c2 as _r, c3 as un, c4 as zr, c5 as $r, c6 as Di, c7 as Pi, c8 as Li, c9 as Oi, ca as _i, cb as zi, cc as $i, cd as Cn, ce as Bi, cf as Mi, cg as kn, ch as In, ci as Sn, cj as ji, ck as Wi, cl as Hi, cm as Ui, cn as Br, co as Vi, cp as Gi } from "./F0CanvasPanel-CTxchgH0.js";
2
+ import { cB as xm, cA as vm, cN as ym, cx as wm, cy as Nm, cq as Cm, cr as km, cr as Im, cs as Sm, cQ as Fm, cz as Tm, cJ as Am, cK as Em, cO as Rm, ct as Dm, cD as Pm, cC as Lm, cu as Om, cv as _m, cL as zm, cR as $m, cM as Bm, cP as Mm, cI as jm, cF as Wm, cH as Hm, cE as Um, cw as Vm, cG as Gm } from "./F0CanvasPanel-CTxchgH0.js";
3
3
  import { jsx as t, jsxs as d, Fragment as fe } from "react/jsx-runtime";
4
4
  import Te, { forwardRef as de, useRef as O, useTransition as Ki, useState as A, useLayoutEffect as Qe, useId as Qt, useContext as Le, createContext as Ie, useEffect as G, useCallback as H, useMemo as X, Fragment as Ke, isValidElement as qi, cloneElement as Mr, memo as jr, Children as Wr } from "react";
5
- import { C as Yi, P as Qi, a as st, M as Ji, p as Xi, b as Zi, R as Fn, c as Hr, u as eo, d as to, e as no, f as ro, g as ao, D as so, h as io, O as Ur, i as Vr, S as oo, A as lo, B as co, L as uo, j as fo, V as mo, k as ho, l as po, m as go } from "./useDataCollectionSource-n-b2mvDf.js";
6
- import { s as qm, t as Ym, q as Qm, J as Jm, v as Xm, E as Zm, aa as eh, I as th, r as nh, ac as rh, ab as ah, U as sh, af as ih, F as oh, _ as lh, X as ch, N as dh, ah as uh, Q as fh, $ as mh, a0 as hh, w as ph, ad as gh, ae as bh, T as xh, a1 as vh, a7 as yh, a9 as wh, x as Nh, z as Ch, G as kh, Y as Ih, ag as Sh, Z as Fh, W as Th, ai as Ah, y as Eh, H as Rh, n as Dh, o as Ph, a3 as Lh, a4 as Oh, a8 as _h, K as zh, a5 as $h, a2 as Bh, a6 as Mh } from "./useDataCollectionSource-n-b2mvDf.js";
5
+ import { C as Yi, P as Qi, a as st, M as Ji, p as Xi, b as Zi, R as Fn, c as Hr, u as eo, d as to, e as no, f as ro, g as ao, D as so, h as io, O as Ur, i as Vr, S as oo, A as lo, B as co, L as uo, j as fo, V as mo, k as ho, l as po, m as go } from "./useDataCollectionSource-3M3fBCbs.js";
6
+ import { s as qm, t as Ym, q as Qm, J as Jm, v as Xm, E as Zm, aa as eh, I as th, r as nh, ac as rh, ab as ah, U as sh, af as ih, F as oh, _ as lh, X as ch, N as dh, ah as uh, Q as fh, $ as mh, a0 as hh, w as ph, ad as gh, ae as bh, T as xh, a1 as vh, a7 as yh, a9 as wh, x as Nh, z as Ch, G as kh, Y as Ih, ag as Sh, Z as Fh, W as Th, ai as Ah, y as Eh, H as Rh, n as Dh, o as Ph, a3 as Lh, a4 as Oh, a8 as _h, K as zh, a5 as $h, a2 as Bh, a6 as Mh } from "./useDataCollectionSource-3M3fBCbs.js";
7
7
  const bo = Ua("Search", [
8
8
  ["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }],
9
9
  ["path", { d: "m21 21-4.3-4.3", key: "1qie3q" }]
package/dist/f0.d.ts CHANGED
@@ -1556,7 +1556,7 @@ declare type BaseFilterDefinition<T extends FilterTypeKey> = {
1556
1556
  hideSelector?: boolean;
1557
1557
  };
1558
1558
 
1559
- declare function BaseHeader({ title, avatar, deactivated, description, primaryAction, secondaryActions, otherActions, status, metadata, metadataRowGap, showBottomBorder, }: BaseHeaderProps_2): JSX_2.Element;
1559
+ declare function BaseHeader({ title, avatar, deactivated, description, primaryAction, secondaryActions, otherActions, status, metadata, metadataRowGap, showBottomBorder, onClose, }: BaseHeaderProps_2): JSX_2.Element;
1560
1560
 
1561
1561
  declare type BaseHeaderProps = ComponentProps<typeof BaseHeader>;
1562
1562
 
@@ -1584,6 +1584,8 @@ declare interface BaseHeaderProps_2 {
1584
1584
  metadataRowGap?: MetadataProps["rowGap"];
1585
1585
  /** Renders a 1px bottom border at the very bottom of the header. */
1586
1586
  showBottomBorder?: boolean;
1587
+ /** When set, renders a close button in the header actions that calls this on click. */
1588
+ onClose?: () => void;
1587
1589
  }
1588
1590
 
1589
1591
  /**
@@ -14493,7 +14495,7 @@ declare type Props_3 = {
14493
14495
  list?: TagCounterItem[];
14494
14496
  };
14495
14497
 
14496
- declare type Props_4 = {} & Pick<BaseHeaderProps, "avatar" | "title" | "description" | "primaryAction" | "secondaryActions" | "otherActions" | "metadata" | "status" | "deactivated" | "metadataRowGap" | "showBottomBorder">;
14498
+ declare type Props_4 = {} & Pick<BaseHeaderProps, "avatar" | "title" | "description" | "primaryAction" | "secondaryActions" | "otherActions" | "metadata" | "status" | "deactivated" | "metadataRowGap" | "showBottomBorder" | "onClose">;
14497
14499
 
14498
14500
  export declare type QuestionActionParams = {
14499
14501
  questionId: string;
@@ -17606,10 +17608,8 @@ declare module "@tiptap/core" {
17606
17608
 
17607
17609
  declare module "@tiptap/core" {
17608
17610
  interface Commands<ReturnType> {
17609
- videoEmbed: {
17610
- setVideoEmbed: (options: {
17611
- src: string;
17612
- }) => ReturnType;
17611
+ transcript: {
17612
+ insertTranscript: (data: TranscriptData) => ReturnType;
17613
17613
  };
17614
17614
  }
17615
17615
  }
@@ -17617,8 +17617,10 @@ declare module "@tiptap/core" {
17617
17617
 
17618
17618
  declare module "@tiptap/core" {
17619
17619
  interface Commands<ReturnType> {
17620
- transcript: {
17621
- insertTranscript: (data: TranscriptData) => ReturnType;
17620
+ videoEmbed: {
17621
+ setVideoEmbed: (options: {
17622
+ src: string;
17623
+ }) => ReturnType;
17622
17624
  };
17623
17625
  }
17624
17626
  }
package/dist/f0.js CHANGED
@@ -1,13 +1,13 @@
1
- import { a8 as rt, b_ as K_, o as ae, q as Nn, gC as c2, p as Mn, eS as RG, gI as f2, af as Jp, U as K, u as We, H as tt, dm as hu, A as Xl, j as PG, L as xv, bP as no, a9 as Gt, a5 as Wf, gJ as kG, ae as kl, gz as ub, gK as OG, gL as BG, gM as uC, e0 as zG, gN as VG, gO as d2, fr as eg, gP as FG, gQ as GG, gR as Al, gS as $f, gT as vu, gU as HG, gV as h2, gW as WG, gX as $G, ch as UG, cg as YG, v as Es, J as Uf, K as Yf, Q as nt, O as Xf, fR as v2, Y as Zt, ad as qf, _ as ys, aQ as Q_, am as J_, gY as XG, b9 as qG, dX as cC, bN as p2, ba as ql, bb as ZG, aE as ew, aF as tw, aG as rw, cN as _v, gZ as g2, g_ as jG, fv as KG, gB as fC, g$ as QG, h0 as JG, h1 as e3, h2 as t3, h3 as r3, dV as nw, aD as m2, h4 as dC, fp as n3, h5 as i3, fY as pu, fZ as Zf, ga as a3, fP as y2, aa as bn, ar as o3, cY as cb, bU as b2, h6 as s3, f$ as x2, fO as l3, h7 as tg, dw as iw, gn as u3, a3 as _2, fo as c3, cj as f3, gc as aw, bA as d3, bB as h3, bC as v3, d as p3, eC as g3, G as w2, d2 as Ls, dK as S2, dv as C2, cm as ow, bL as T2, cS as sw, fT as Ol, fU as Bl, N as zl, fV as Vl, fS as Ga, bV as D2, at as m3, dt as wv, bm as Zl, be as Br, ct as y3, a2 as A2, dx as fb, dY as sf, cs as b3, $ as jf, aZ as M2, gh as qr, h8 as x3, h9 as _3, ha as E2, hb as rg, hc as w3, hd as S3, bQ as L2, bR as N2, he as C3, aT as I2, bS as R2, b$ as gu, c3 as mu, ca as Kf, dM as T3, c0 as D3, b8 as A3, S as P2, bd as M3, a1 as E3, bv as hC, dJ as lf, fs as L3, ft as N3, hf as I3, aY as R3, c4 as P3, bT as k2, a6 as k3, bZ as O3, gF as B3, hg as db, bH as O2, b0 as z3, y as B2, hh as z2, hi as V2, hj as V3, hk as F3, I as G3, hl as H3, hm as W3, hn as $3, ho as U3 } from "./F0CanvasPanel-z7lqIQw9.js";
2
- import { hE as yge, C as bge, D as xge, aR as _ge, c as wge, F as Sge, a as Cge, hx as Tge, f as Dge, bh as Age, aS as Mge, cc as Ege, dS as Lge, aJ as Nge, bq as Ige, al as Rge, d$ as Pge, au as kge, cq as Oge, g as Bge, bD as zge, cr as Vge, hs as Fge, hs as Gge, hJ as Hge, bI as Wge, e as $ge, bM as Uge, aw as Yge, c5 as Xge, hz as qge, b4 as Zge, hA as jge, hC as Kge, hD as Qge, cQ as Jge, hG as eme, cJ as tme, cK as rme, P as nme, cO as ime, hB as ame, cL as ome, hF as sme, hK as lme, hp as ume, hq as cme, hr as fme, cM as dme, hI as hme, hy as vme, hv as pme, hu as gme, cP as mme, fM as yme, go as bme, hH as xme, aW as _me, cI as wme, cF as Sme, cH as Cme, cE as Tme, hw as Dme, gq as Ame, gk as Mme, g0 as Eme, hN as Lme, cw as Nme, cG as Ime, hM as Rme, br as Pme, dT as kme, fL as Ome, g1 as Bme, b as zme, bu as Vme, gH as Fme, aU as Gme, dU as Hme, ht as Wme, ht as $me, gm as Ume, gl as Yme, hL as Xme } from "./F0CanvasPanel-z7lqIQw9.js";
1
+ import { a8 as rt, b_ as K_, o as ae, q as Nn, gC as c2, p as Mn, eS as RG, gI as f2, af as Jp, U as K, u as We, H as tt, dm as hu, A as Xl, j as PG, L as xv, bP as no, a9 as Gt, a5 as Wf, gJ as kG, ae as kl, gz as ub, gK as OG, gL as BG, gM as uC, e0 as zG, gN as VG, gO as d2, fr as eg, gP as FG, gQ as GG, gR as Al, gS as $f, gT as vu, gU as HG, gV as h2, gW as WG, gX as $G, ch as UG, cg as YG, v as Es, J as Uf, K as Yf, Q as nt, O as Xf, fR as v2, Y as Zt, ad as qf, _ as ys, aQ as Q_, am as J_, gY as XG, b9 as qG, dX as cC, bN as p2, ba as ql, bb as ZG, aE as ew, aF as tw, aG as rw, cN as _v, gZ as g2, g_ as jG, fv as KG, gB as fC, g$ as QG, h0 as JG, h1 as e3, h2 as t3, h3 as r3, dV as nw, aD as m2, h4 as dC, fp as n3, h5 as i3, fY as pu, fZ as Zf, ga as a3, fP as y2, aa as bn, ar as o3, cY as cb, bU as b2, h6 as s3, f$ as x2, fO as l3, h7 as tg, dw as iw, gn as u3, a3 as _2, fo as c3, cj as f3, gc as aw, bA as d3, bB as h3, bC as v3, d as p3, eC as g3, G as w2, d2 as Ls, dK as S2, dv as C2, cm as ow, bL as T2, cS as sw, fT as Ol, fU as Bl, N as zl, fV as Vl, fS as Ga, bV as D2, at as m3, dt as wv, bm as Zl, be as Br, ct as y3, a2 as A2, dx as fb, dY as sf, cs as b3, $ as jf, aZ as M2, gh as qr, h8 as x3, h9 as _3, ha as E2, hb as rg, hc as w3, hd as S3, bQ as L2, bR as N2, he as C3, aT as I2, bS as R2, b$ as gu, c3 as mu, ca as Kf, dM as T3, c0 as D3, b8 as A3, S as P2, bd as M3, a1 as E3, bv as hC, dJ as lf, fs as L3, ft as N3, hf as I3, aY as R3, c4 as P3, bT as k2, a6 as k3, bZ as O3, gF as B3, hg as db, bH as O2, b0 as z3, y as B2, hh as z2, hi as V2, hj as V3, hk as F3, I as G3, hl as H3, hm as W3, hn as $3, ho as U3 } from "./F0CanvasPanel-CTxchgH0.js";
2
+ import { hE as yge, C as bge, D as xge, aR as _ge, c as wge, F as Sge, a as Cge, hx as Tge, f as Dge, bh as Age, aS as Mge, cc as Ege, dS as Lge, aJ as Nge, bq as Ige, al as Rge, d$ as Pge, au as kge, cq as Oge, g as Bge, bD as zge, cr as Vge, hs as Fge, hs as Gge, hJ as Hge, bI as Wge, e as $ge, bM as Uge, aw as Yge, c5 as Xge, hz as qge, b4 as Zge, hA as jge, hC as Kge, hD as Qge, cQ as Jge, hG as eme, cJ as tme, cK as rme, P as nme, cO as ime, hB as ame, cL as ome, hF as sme, hK as lme, hp as ume, hq as cme, hr as fme, cM as dme, hI as hme, hy as vme, hv as pme, hu as gme, cP as mme, fM as yme, go as bme, hH as xme, aW as _me, cI as wme, cF as Sme, cH as Cme, cE as Tme, hw as Dme, gq as Ame, gk as Mme, g0 as Eme, hN as Lme, cw as Nme, cG as Ime, hM as Rme, br as Pme, dT as kme, fL as Ome, g1 as Bme, b as zme, bu as Vme, gH as Fme, aU as Gme, dU as Hme, ht as Wme, ht as $me, gm as Ume, gl as Yme, hL as Xme } from "./F0CanvasPanel-CTxchgH0.js";
3
3
  import { jsx as S, jsxs as B, Fragment as it } from "react/jsx-runtime";
4
4
  import * as wt from "react";
5
5
  import xt, { forwardRef as yr, useRef as ie, useImperativeHandle as Y3, Children as Sv, createContext as nn, useContext as Lr, useState as re, useMemo as le, useEffect as de, useCallback as oe, useLayoutEffect as hb, isValidElement as F2, Fragment as yu, memo as G2, useReducer as X3, cloneElement as q3, useId as Hc, useSyncExternalStore as jl } from "react";
6
- import { D as Z3, E as j3, G as K3, H as H2, I as Cv, J as lw, K as W2, L as $2, M as bi, N as Q3, O as J3, P as eH, Q as tH, R as rH, F as nH } from "./F0AiProcessingOverlay-Bw0Mt_R2.js";
7
- import { A as Zme, C as jme, t as Kme, s as Qme, v as Jme, y as eye, l as tye, i as rye, q as nye, z as iye, B as aye, p as oye, r as sye, j as lye, e as uye, g as cye, k as fye, T as dye, w as hye, h as vye, a as pye, n as gye, m as mye, o as yye, b as bye, f as xye, x as _ye, c as wye, d as Sye, u as Cye } from "./F0AiProcessingOverlay-Bw0Mt_R2.js";
6
+ import { D as Z3, E as j3, G as K3, H as H2, I as Cv, J as lw, K as W2, L as $2, M as bi, N as Q3, O as J3, P as eH, Q as tH, R as rH, F as nH } from "./F0AiProcessingOverlay-BDMg5ViV.js";
7
+ import { A as Zme, C as jme, t as Kme, s as Qme, v as Jme, y as eye, l as tye, i as rye, q as nye, z as iye, B as aye, p as oye, r as sye, j as lye, e as uye, g as cye, k as fye, T as dye, w as hye, h as vye, a as pye, n as gye, m as mye, o as yye, b as bye, f as xye, x as _ye, c as wye, d as Sye, u as Cye } from "./F0AiProcessingOverlay-BDMg5ViV.js";
8
8
  import { createPortal as Qf, unstable_batchedUpdates as Sd } from "react-dom";
9
- import { aj as U2, C as iH, F as Y2, ak as X2, al as aH, am as oH, an as sH, ao as ng, ap as ig, I as lH, aq as uH, ar as pa, _ as cH, aa as fH, as as dH, U as hH, at as vH, au as pH, c as ag, R as uw, u as cw, Y as q2, O as fw, D as gH, h as mH, av as Z2, aw as vC, ax as dw, q as yH, d as j2, a1 as K2, ay as bH, az as xH, aA as _H, aB as wH, aC as SH, M as CH } from "./useDataCollectionSource-n-b2mvDf.js";
10
- import { s as Dye, t as Aye, J as Mye, v as Eye, E as Lye, aT as Nye, aS as Iye, aO as Rye, aE as Pye, aD as kye, aF as Oye, aG as Bye, ac as zye, ab as Vye, af as Fye, X as Gye, N as Hye, ah as Wye, Q as $ye, w as Uye, aU as Yye, ad as Xye, ae as qye, T as Zye, x as jye, P as Kye, z as Qye, G as Jye, ag as e0e, W as t0e, ai as r0e, y as n0e, H as i0e, aW as a0e, n as o0e, o as s0e, aN as l0e, aJ as u0e, aI as c0e, aV as f0e, a8 as d0e, aL as h0e, aM as v0e, K as p0e, aX as g0e, aY as m0e, e as y0e, aP as b0e, aQ as x0e, aR as _0e, aK as w0e, f as S0e, i as C0e, aH as T0e, aZ as D0e } from "./useDataCollectionSource-n-b2mvDf.js";
9
+ import { aj as U2, C as iH, F as Y2, ak as X2, al as aH, am as oH, an as sH, ao as ng, ap as ig, I as lH, aq as uH, ar as pa, _ as cH, aa as fH, as as dH, U as hH, at as vH, au as pH, c as ag, R as uw, u as cw, Y as q2, O as fw, D as gH, h as mH, av as Z2, aw as vC, ax as dw, q as yH, d as j2, a1 as K2, ay as bH, az as xH, aA as _H, aB as wH, aC as SH, M as CH } from "./useDataCollectionSource-3M3fBCbs.js";
10
+ import { s as Dye, t as Aye, J as Mye, v as Eye, E as Lye, aT as Nye, aS as Iye, aO as Rye, aE as Pye, aD as kye, aF as Oye, aG as Bye, ac as zye, ab as Vye, af as Fye, X as Gye, N as Hye, ah as Wye, Q as $ye, w as Uye, aU as Yye, ad as Xye, ae as qye, T as Zye, x as jye, P as Kye, z as Qye, G as Jye, ag as e0e, W as t0e, ai as r0e, y as n0e, H as i0e, aW as a0e, n as o0e, o as s0e, aN as l0e, aJ as u0e, aI as c0e, aV as f0e, a8 as d0e, aL as h0e, aM as v0e, K as p0e, aX as g0e, aY as m0e, e as y0e, aP as b0e, aQ as x0e, aR as _0e, aK as w0e, f as S0e, i as C0e, aH as T0e, aZ as D0e } from "./useDataCollectionSource-3M3fBCbs.js";
11
11
  import { utils as Fl, write as Q2 } from "./xlsx-Bedf3nwD.js";
12
12
  import { defaultTranslations as M0e } from "./i18n-provider-defaults.js";
13
13
  import './f0.css';const TH = {
@@ -986,10 +986,8 @@ declare module "@tiptap/core" {
986
986
 
987
987
  declare module "@tiptap/core" {
988
988
  interface Commands<ReturnType> {
989
- videoEmbed: {
990
- setVideoEmbed: (options: {
991
- src: string;
992
- }) => ReturnType;
989
+ transcript: {
990
+ insertTranscript: (data: TranscriptData) => ReturnType;
993
991
  };
994
992
  }
995
993
  }
@@ -997,8 +995,10 @@ declare module "@tiptap/core" {
997
995
 
998
996
  declare module "@tiptap/core" {
999
997
  interface Commands<ReturnType> {
1000
- transcript: {
1001
- insertTranscript: (data: TranscriptData) => ReturnType;
998
+ videoEmbed: {
999
+ setVideoEmbed: (options: {
1000
+ src: string;
1001
+ }) => ReturnType;
1002
1002
  };
1003
1003
  }
1004
1004
  }