@factorialco/f0-react 2.26.1 → 2.28.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
@@ -1535,6 +1535,7 @@ export declare const defaultTranslations: {
1535
1535
  readonly toggleDropdownMenu: "Toggle dropdown menu";
1536
1536
  readonly selectAll: "Select all";
1537
1537
  readonly selectAllItems: "Select all {{total}} items";
1538
+ readonly apply: "Apply";
1538
1539
  };
1539
1540
  readonly status: {
1540
1541
  readonly selected: {
@@ -4204,8 +4205,10 @@ declare module "@tiptap/core" {
4204
4205
 
4205
4206
  declare module "@tiptap/core" {
4206
4207
  interface Commands<ReturnType> {
4207
- transcript: {
4208
- insertTranscript: (data: TranscriptData) => ReturnType;
4208
+ videoEmbed: {
4209
+ setVideoEmbed: (options: {
4210
+ src: string;
4211
+ }) => ReturnType;
4209
4212
  };
4210
4213
  }
4211
4214
  }
@@ -4213,10 +4216,8 @@ declare module "@tiptap/core" {
4213
4216
 
4214
4217
  declare module "@tiptap/core" {
4215
4218
  interface Commands<ReturnType> {
4216
- videoEmbed: {
4217
- setVideoEmbed: (options: {
4218
- src: string;
4219
- }) => ReturnType;
4219
+ transcript: {
4220
+ insertTranscript: (data: TranscriptData) => ReturnType;
4220
4221
  };
4221
4222
  }
4222
4223
  }
package/dist/ai.js CHANGED
@@ -1,6 +1,6 @@
1
- import { D as e, F as r, a as t, e as i, f as o, c as n, d as F, I as C, P as A, b as l, u } from "./F0CanvasPanel-EHIkRGh1.js";
1
+ import { D as e, F as r, a as t, e as i, f as o, c as n, d as F, I as C, P as A, b as l, u } from "./F0CanvasPanel-5xCiLQgH.js";
2
2
  import { defaultTranslations as m } from "./i18n-provider-defaults.js";
3
- import { A as c, C as I, h as P, s as v, t as f, w as p, m as T, j as g, q as y, x as S, p as x, r as H, k as V, e as b, g as M, l as O, F as k, i as w, a as D, n as j, o as q, b as z, f as B, v as E, c as L, d as G, u as J } from "./useChatHistory-BD1x2gsG.js";
3
+ import { A as c, C as I, h as P, s as v, t as f, w as p, m as T, j as g, q as y, x as S, p as x, r as H, k as V, e as b, g as M, l as O, F as k, i as w, a as D, n as j, o as q, b as z, f as B, v as E, c as L, d as G, u as J } from "./useChatHistory-D6KnQGF3.js";
4
4
  export {
5
5
  c as AiChatTranslationsProvider,
6
6
  I as ChatSpinner,
@@ -2954,6 +2954,7 @@ declare const defaultTranslations: {
2954
2954
  readonly toggleDropdownMenu: "Toggle dropdown menu";
2955
2955
  readonly selectAll: "Select all";
2956
2956
  readonly selectAllItems: "Select all {{total}} items";
2957
+ readonly apply: "Apply";
2957
2958
  };
2958
2959
  readonly status: {
2959
2960
  readonly selected: {
@@ -5295,6 +5296,7 @@ declare const Input_2: React_2.ForwardRefExoticComponent<Omit<React_2.InputHTMLA
5295
5296
  declare const INPUTFIELD_SIZES: readonly ["sm", "md"];
5296
5297
 
5297
5298
  declare type InputFieldProps<T> = {
5299
+ id?: string;
5298
5300
  autoFocus?: boolean;
5299
5301
  label: string;
5300
5302
  placeholder?: string;
@@ -5380,7 +5382,7 @@ declare const inputFieldStatus: readonly ["default", "warning", "info", "error"]
5380
5382
 
5381
5383
  declare type InputFieldStatusType = (typeof inputFieldStatus)[number];
5382
5384
 
5383
- declare type InputInternalProps<T extends string> = Pick<ComponentProps<typeof Input_2>, "ref"> & Pick<InputFieldProps<T>, "autoFocus" | "required" | "disabled" | "size" | "onChange" | "value" | "placeholder" | "clearable" | "maxLength" | "label" | "labelIcon" | "icon" | "hideLabel" | "name" | "error" | "status" | "hint" | "autocomplete" | "buttonToggle" | "hideMaxLength" | "loading" | "transparent" | "onBlur"> & {
5385
+ declare type InputInternalProps<T extends string> = Pick<ComponentProps<typeof Input_2>, "ref" | "id" | "aria-describedby" | "aria-invalid"> & Pick<InputFieldProps<T>, "autoFocus" | "required" | "disabled" | "size" | "onChange" | "value" | "placeholder" | "clearable" | "maxLength" | "label" | "labelIcon" | "icon" | "hideLabel" | "name" | "error" | "status" | "hint" | "autocomplete" | "buttonToggle" | "hideMaxLength" | "loading" | "transparent" | "onBlur" | "readonly"> & {
5384
5386
  type?: Exclude<HTMLInputTypeAttribute, "number">;
5385
5387
  onPressEnter?: () => void;
5386
5388
  };
@@ -5977,8 +5979,26 @@ declare type NumberInputInternalProps = Omit<InputInternalProps<string>, "value"
5977
5979
  maxDecimals?: number;
5978
5980
  onChange?: (value: number | null) => void;
5979
5981
  units?: string;
5982
+ extraContent?: ReactNode;
5983
+ inputWidth?: string;
5984
+ popover?: NumberInputPopoverConfig;
5980
5985
  };
5981
5986
 
5987
+ export declare interface NumberInputPopoverConfig {
5988
+ icon?: IconType;
5989
+ side?: "top" | "bottom" | "left" | "right";
5990
+ align?: "start" | "center" | "end";
5991
+ open?: boolean;
5992
+ onOpenChange?: (open: boolean) => void;
5993
+ triggerLabel?: string;
5994
+ commitMode?: "immediate" | "deferred";
5995
+ apply?: {
5996
+ label?: string;
5997
+ icon?: IconType;
5998
+ closeOnApply?: boolean;
5999
+ };
6000
+ }
6001
+
5982
6002
  export declare type NumberInputProps = Omit<NumberInputInternalProps, (typeof privateProps_4)[number]>;
5983
6003
 
5984
6004
  declare type Numeric = NumericValue | number | undefined | null;
@@ -8550,8 +8570,10 @@ declare module "@tiptap/core" {
8550
8570
 
8551
8571
  declare module "@tiptap/core" {
8552
8572
  interface Commands<ReturnType> {
8553
- transcript: {
8554
- insertTranscript: (data: TranscriptData) => ReturnType;
8573
+ videoEmbed: {
8574
+ setVideoEmbed: (options: {
8575
+ src: string;
8576
+ }) => ReturnType;
8555
8577
  };
8556
8578
  }
8557
8579
  }
@@ -8559,10 +8581,8 @@ declare module "@tiptap/core" {
8559
8581
 
8560
8582
  declare module "@tiptap/core" {
8561
8583
  interface Commands<ReturnType> {
8562
- videoEmbed: {
8563
- setVideoEmbed: (options: {
8564
- src: string;
8565
- }) => ReturnType;
8584
+ transcript: {
8585
+ insertTranscript: (data: TranscriptData) => ReturnType;
8566
8586
  };
8567
8587
  }
8568
8588
  }
@@ -1,9 +1,9 @@
1
- import { g as da, B as ua, h as fa, i as ma, j as At, k as De, l as ha, m as p, n as J, o as ge, u as ie, T as pa, p as ga, q as ba, R as xa, r as va, s as re, t as wa, v as pt, w as rt, x as Re, A as _e, y as ya, z as Na, C as M, E as Ca, G as ka, H as ve, J as sn, K as Sa, L as Ia, M as W, N as on, S as O, O as we, Q as Fa, U as Aa, V as La, W as Ea, X as _a, Y as ke, Z as cn, _ as Oa, $ as be, a0 as $e, a1 as Da, a2 as gt, d as dn, a3 as Ce, a4 as Ta, a5 as un, a6 as ne, a7 as K, a8 as fn, a9 as mn, aa as za, ab as hn, ac as me, ad as ee, ae as Pa, af as Ba, ag as Ra, ah as $a, ai as pe, aj as Ge, ak as Wa, al as Ma, am as ja, an as Va, ao as He, ap as pn, aq as Ga, ar as Ha, as as Ua, at as We, au as Ka, av as qa, aw as Ya, ax as Za, ay as Ja, az as Xa, aA as Qa, aB as er, aC as tr, aD as nr, aE as lt, aF as it, aG as gn, aH as ar, aI as rr, aJ as lr, aK as ir, aL as Ue, aM as bt, aN as bn, aO as sr, aP as xn, aQ as or, aR as cr, aS as dr, aT as Ee, aU as ur, aV as Lt, aW as st, aX as fr, aY as mr, a as hr, b as pr, aZ as vn, a_ as gr, f as br, F as xr, a$ as wn, b0 as vr, b1 as yn, b2 as wr, b3 as yr, b4 as Nr, b5 as Cr, b6 as kr, b7 as Sr, b8 as Ir, b9 as Fr, ba as Ar, bb as Nn, bc as ue, bd as Cn, be as kn, bf as Lr, bg as Er, bh as _r, bi as Or, bj as Dr, bk as Tr, bl as zr, bm as Et, bn as _t, bo as Ot, bp as Pr, bq as Br, br as Rr, bs as $r, bt as Sn, bu as Wr, bv as Mr } from "./F0CanvasPanel-EHIkRGh1.js";
2
- import { bH as Lc, bG as Ec, bT as _c, bD as Oc, bE as Dc, bw as Tc, bx as zc, bU as Pc, by as Bc, bF as Rc, bP as $c, bQ as Wc, bz as Mc, bJ as jc, bI as Vc, bA as Gc, bB as Hc, bR as Uc, bV as Kc, bS as qc, bO as Yc, bL as Zc, bN as Jc, bK as Xc, bC as Qc, bM as ed } from "./F0CanvasPanel-EHIkRGh1.js";
1
+ import { g as da, B as ua, h as fa, i as ma, j as At, k as De, l as ha, m as p, n as J, o as ge, u as ie, T as pa, p as ga, q as ba, R as xa, r as va, s as re, t as wa, v as pt, w as rt, x as Re, A as _e, y as ya, z as Na, C as M, E as Ca, G as ka, H as ve, J as sn, K as Sa, L as Ia, M as W, N as on, S as O, O as we, Q as Fa, U as Aa, V as La, W as Ea, X as _a, Y as ke, Z as cn, _ as Oa, $ as be, a0 as $e, a1 as Da, a2 as gt, d as dn, a3 as Ce, a4 as Ta, a5 as un, a6 as ne, a7 as K, a8 as fn, a9 as mn, aa as za, ab as hn, ac as me, ad as ee, ae as Pa, af as Ba, ag as Ra, ah as $a, ai as pe, aj as Ge, ak as Wa, al as Ma, am as ja, an as Va, ao as He, ap as pn, aq as Ga, ar as Ha, as as Ua, at as We, au as Ka, av as qa, aw as Ya, ax as Za, ay as Ja, az as Xa, aA as Qa, aB as er, aC as tr, aD as nr, aE as lt, aF as it, aG as gn, aH as ar, aI as rr, aJ as lr, aK as ir, aL as Ue, aM as bt, aN as bn, aO as sr, aP as xn, aQ as or, aR as cr, aS as dr, aT as Ee, aU as ur, aV as Lt, aW as st, aX as fr, aY as mr, a as hr, b as pr, aZ as vn, a_ as gr, f as br, F as xr, a$ as wn, b0 as vr, b1 as yn, b2 as wr, b3 as yr, b4 as Nr, b5 as Cr, b6 as kr, b7 as Sr, b8 as Ir, b9 as Fr, ba as Ar, bb as Nn, bc as ue, bd as Cn, be as kn, bf as Lr, bg as Er, bh as _r, bi as Or, bj as Dr, bk as Tr, bl as zr, bm as Et, bn as _t, bo as Ot, bp as Pr, bq as Br, br as Rr, bs as $r, bt as Sn, bu as Wr, bv as Mr } from "./F0CanvasPanel-5xCiLQgH.js";
2
+ import { bH as Lc, bG as Ec, bT as _c, bD as Oc, bE as Dc, bw as Tc, bx as zc, bU as Pc, by as Bc, bF as Rc, bP as $c, bQ as Wc, bz as Mc, bJ as jc, bI as Vc, bA as Gc, bB as Hc, bR as Uc, bV as Kc, bS as qc, bO as Yc, bL as Zc, bN as Jc, bK as Xc, bC as Qc, bM as ed } from "./F0CanvasPanel-5xCiLQgH.js";
3
3
  import { jsx as e, jsxs as o, Fragment as U } from "react/jsx-runtime";
4
4
  import se, { forwardRef as j, useRef as G, useTransition as jr, useState as _, useLayoutEffect as In, useId as ot, useContext as Ke, createContext as xt, useEffect as $, useCallback as Q, useMemo as q, Fragment as Vr, isValidElement as Gr, cloneElement as Fn, Children as An } from "react";
5
- import { C as Hr, P as Ur, g as Ln, c as Kr, a as En, F as ct, f as qr, b as Te, M as Yr, d as Zr, R as Dt, e as _n, u as Jr, h as On, i as vt, j as wt, k as yt, l as Dn, m as Nt, n as Xr, o as Qr, S as el, p as tl, A as nl, B as al, L as rl, q as ll, V as il, r as sl, s as Tt, t as ol, v as cl, O as dl } from "./useDataCollectionSource-q6ZqmOeN.js";
6
- import { E as nd, G as ad, z as rd, X as ld, H as id, Q as sd, ae as od, W as cd, D as dd, y as ud, a1 as fd, ak as md, a2 as hd, a3 as pd, I as gd, ag as bd, ah as xd, af as vd, ai as wd, Z as yd, a4 as Nd, ab as Cd, ad as kd, J as Sd, N as Id, T as Fd, $ as Ad, aj as Ld, a0 as Ed, _ as _d, K as Od, U as Dd, w as Td, x as zd, a6 as Pd, a7 as Bd, ac as Rd, Y as $d, a8 as Wd, a9 as Md, a5 as jd, aa as Vd } from "./useDataCollectionSource-q6ZqmOeN.js";
5
+ import { C as Hr, P as Ur, g as Ln, c as Kr, a as En, F as ct, f as qr, b as Te, M as Yr, d as Zr, R as Dt, e as _n, u as Jr, h as On, i as vt, j as wt, k as yt, l as Dn, m as Nt, n as Xr, o as Qr, S as el, p as tl, A as nl, B as al, L as rl, q as ll, V as il, r as sl, s as Tt, t as ol, v as cl, O as dl } from "./useDataCollectionSource-DtX_WySE.js";
6
+ import { E as nd, G as ad, z as rd, X as ld, H as id, Q as sd, ae as od, W as cd, D as dd, y as ud, a1 as fd, ak as md, a2 as hd, a3 as pd, I as gd, ag as bd, ah as xd, af as vd, ai as wd, Z as yd, a4 as Nd, ab as Cd, ad as kd, J as Sd, N as Id, T as Fd, $ as Ad, aj as Ld, a0 as Ed, _ as _d, K as Od, U as Dd, w as Td, x as zd, a6 as Pd, a7 as Bd, ac as Rd, Y as $d, a8 as Wd, a9 as Md, a5 as jd, aa as Vd } from "./useDataCollectionSource-DtX_WySE.js";
7
7
  const ul = da("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
@@ -1544,10 +1544,13 @@ export declare type BorderStyleToken = "solid" | "dashed" | "dotted" | "double"
1544
1544
  /** Border width tokens */
1545
1545
  export declare type BorderWidthToken = "none" | "default" | "thick";
1546
1546
 
1547
+ export declare type BoxShadowToken = "none" | "md" | "lg" | "xl";
1548
+
1547
1549
  declare type BoxVariantProps = VariantProps<typeof boxVariants>;
1548
1550
 
1549
1551
  declare const boxVariants: (props?: ({
1550
1552
  zIndex?: "0" | "auto" | "10" | "20" | "50" | "40" | "30" | undefined;
1553
+ boxShadow?: "none" | "lg" | "md" | "xl" | undefined;
1551
1554
  divider?: "x" | "y" | undefined;
1552
1555
  dividerColor?: "info" | "bold" | "default" | "secondary" | "critical" | "warning" | "positive" | "promote" | "selected" | "critical-bold" | "info-bold" | "warning-bold" | "positive-bold" | "selected-bold" | undefined;
1553
1556
  overflow?: "hidden" | "auto" | "scroll" | "visible" | undefined;
@@ -4108,6 +4111,7 @@ export declare const defaultTranslations: {
4108
4111
  readonly toggleDropdownMenu: "Toggle dropdown menu";
4109
4112
  readonly selectAll: "Select all";
4110
4113
  readonly selectAllItems: "Select all {{total}} items";
4114
+ readonly apply: "Apply";
4111
4115
  };
4112
4116
  readonly status: {
4113
4117
  readonly selected: {
@@ -10839,6 +10843,7 @@ declare type InputFieldInheritedProps = (typeof inputFieldInheritedProps)[number
10839
10843
  declare const inputFieldInheritedProps: readonly ["className", "label", "placeholder", "hideLabel", "size", "error", "disabled", "readonly", "required", "clearable", "labelIcon", "status", "hint", "loading", "transparent"];
10840
10844
 
10841
10845
  declare type InputFieldProps<T> = {
10846
+ id?: string;
10842
10847
  autoFocus?: boolean;
10843
10848
  label: string;
10844
10849
  placeholder?: string;
@@ -15115,8 +15120,10 @@ declare module "@tiptap/core" {
15115
15120
 
15116
15121
  declare module "@tiptap/core" {
15117
15122
  interface Commands<ReturnType> {
15118
- transcript: {
15119
- insertTranscript: (data: TranscriptData) => ReturnType;
15123
+ videoEmbed: {
15124
+ setVideoEmbed: (options: {
15125
+ src: string;
15126
+ }) => ReturnType;
15120
15127
  };
15121
15128
  }
15122
15129
  }
@@ -15124,10 +15131,8 @@ declare module "@tiptap/core" {
15124
15131
 
15125
15132
  declare module "@tiptap/core" {
15126
15133
  interface Commands<ReturnType> {
15127
- videoEmbed: {
15128
- setVideoEmbed: (options: {
15129
- src: string;
15130
- }) => ReturnType;
15134
+ transcript: {
15135
+ insertTranscript: (data: TranscriptData) => ReturnType;
15131
15136
  };
15132
15137
  }
15133
15138
  }
package/dist/f0.js CHANGED
@@ -1,13 +1,13 @@
1
- import { dh as dk, a6 as yt, bc as Dg, m as ce, o as Pa, fJ as hk, n as Hs, eq as C3, ac as go, fM as T3, ad as Mw, S as oe, u as tt, C as dt, cM as Vu, A as vk, i as D3, H as Wv, cy as yu, a7 as kr, a3 as gd, fN as A3, fO as Xb, fP as M3, fQ as E3, fR as JC, dz as L3, fS as N3, fT as pk, fU as I3, M as pt, aW as k3, aL as R3, b7 as P3, dv as eT, s as Fu, a1 as Ew, a2 as Ws, b8 as O3, f0 as B3, aB as Lw, aC as Nw, aD as Iw, aj as gk, bT as Uv, di as mk, fV as V3, f6 as F3, aF as yk, d2 as z3, bi as G3, Y as zu, fW as H3, ae as W3, fX as kw, fY as tT, eZ as U3, fZ as $3, eY as Y3, f_ as X3, W as Rw, dw as bu, by as Pw, e$ as q3, dc as Ow, at as ou, bz as bk, cV as Bw, b5 as Us, a8 as Bn, ao as Z3, cq as qb, cp as xk, f$ as Ag, cW as Vw, fC as j3, a0 as _k, bp as K3, ab as Mg, g0 as Q3, g1 as J3, g2 as eH, c as tH, ea as rH, z as wk, ct as rl, da as Sk, bs as Fw, E as Eg, G as Lg, cg as zw, L as Ng, V as Ar, X as xu, fh as su, fi as lu, K as uu, fj as cu, ff as nH, fg as io, cj as Ck, aq as iH, cT as $v, g3 as on, aA as aH, cZ as Tk, cY as Dk, aN as Ak, aT as oH, dq as sH, dr as lH, dj as uH, dd as cH, a$ as fH, N as Mk, b6 as dH, _ as hH, cQ as rT, d9 as Pf, f1 as vH, f2 as pH, g4 as gH, aS as mH, bd as yH, cw as Ek, a4 as bH, co as xH, fK as _H, g5 as wH, g6 as SH, I as CH, g7 as TH, g8 as DH, g9 as AH, ga as MH } from "./F0CanvasPanel-EHIkRGh1.js";
2
- import { gf as Cme, D as Tme, aM as Dme, F as Ame, a as Mme, e as Eme, b0 as Lme, bj as Nme, bb as Ime, ai as kme, dy as Rme, ar as Pme, bw as Ome, f as Bme, dl as Vme, gj as Fme, d as zme, be as Gme, gb as Hme, aY as Wme, f4 as Ume, gd as $me, ge as Yme, bU as Xme, gg as qme, bP as Zme, bQ as jme, P as Kme, gc as Qme, bR as Jme, gk as eye, bS as tye, gi as rye, fD as nye, gh as iye, aQ as aye, bO as oye, bL as sye, bN as lye, bK as uye, fE as cye, fz as fye, bC as dye, bM as hye, b as vye, fy as pye, fL as gye, aO as mye, dg as yye, fB as bye, fA as xye, gl as _ye } from "./F0CanvasPanel-EHIkRGh1.js";
1
+ import { di as dk, a6 as yt, bc as Dg, m as ce, o as Pa, fK as hk, n as Hs, er as C3, ac as go, fN as T3, ad as Mw, S as oe, u as tt, C as dt, cN as Vu, A as vk, i as D3, H as Wv, cz as yu, a7 as kr, a3 as gd, fO as A3, fP as Xb, fQ as M3, fR as E3, fS as JC, dA as L3, fT as N3, fU as pk, fV as I3, M as pt, aW as k3, aL as R3, b7 as P3, dw as eT, s as Fu, a1 as Ew, a2 as Ws, b8 as O3, f1 as B3, aB as Lw, aC as Nw, aD as Iw, aj as gk, bT as Uv, dj as mk, fW as V3, f7 as F3, aF as yk, d3 as z3, bi as G3, Y as zu, fX as H3, ae as W3, fY as kw, fZ as tT, e_ as U3, f_ as $3, eZ as Y3, f$ as X3, W as Rw, dx as bu, by as Pw, f0 as q3, dd as Ow, at as ou, bz as bk, cW as Bw, b5 as Us, a8 as Bn, ao as Z3, cq as qb, cp as xk, g0 as Ag, cX as Vw, fD as j3, a0 as _k, bp as K3, ab as Mg, g1 as Q3, g2 as J3, g3 as eH, c as tH, eb as rH, z as wk, cu as rl, db as Sk, bs as Fw, E as Eg, G as Lg, cg as zw, L as Ng, V as Ar, X as xu, fi as su, fj as lu, K as uu, fk as cu, fg as nH, fh as io, cj as Ck, aq as iH, cU as $v, g4 as on, aA as aH, c_ as Tk, cZ as Dk, aN as Ak, aT as oH, dr as sH, ds as lH, dk as uH, de as cH, a$ as fH, N as Mk, b6 as dH, _ as hH, cR as rT, da as Pf, f2 as vH, f3 as pH, g5 as gH, aS as mH, bd as yH, cx as Ek, a4 as bH, co as xH, fL as _H, g6 as wH, g7 as SH, I as CH, g8 as TH, g9 as DH, ga as AH, gb as MH } from "./F0CanvasPanel-5xCiLQgH.js";
2
+ import { gg as Cme, D as Tme, aM as Dme, F as Ame, a as Mme, e as Eme, b0 as Lme, bj as Nme, bb as Ime, ai as kme, dz as Rme, ar as Pme, bw as Ome, f as Bme, dm as Vme, gk as Fme, d as zme, be as Gme, gc as Hme, aY as Wme, f5 as Ume, ge as $me, gf as Yme, bU as Xme, gh as qme, bP as Zme, bQ as jme, P as Kme, gd as Qme, bR as Jme, gl as eye, bS as tye, gj as rye, fE as nye, gi as iye, aQ as aye, bO as oye, bL as sye, bN as lye, bK as uye, fF as cye, fA as fye, bC as dye, bM as hye, b as vye, fz as pye, fM as gye, aO as mye, dh as yye, fC as bye, fB as xye, gm as _ye } from "./F0CanvasPanel-5xCiLQgH.js";
3
3
  import { jsx as w, jsxs as B, Fragment as kt } from "react/jsx-runtime";
4
4
  import * as Yn from "react";
5
5
  import He, { forwardRef as Jr, useRef as se, useImperativeHandle as EH, Children as Yv, createContext as en, useContext as _r, useState as ye, useMemo as ae, useEffect as _e, useCallback as te, useLayoutEffect as Zb, createElement as Xd, isValidElement as Lk, Fragment as Ig, memo as Nk, useReducer as LH, cloneElement as NH, useId as kg } from "react";
6
- import { y as IH, z as kH, U as nT, D as iT, B as $m, E as aT, G as RH, H as Oa, I as nl, J as PH, K as Gw, L as Rr, M as fi, N as OH, O as BH, P as Ik, Z as Ho, Q as VH, R as FH, S as zH, T as kk, V as Xv, W as Hw, X as Rk, Y as Pk, _ as pn, $ as GH, a0 as HH, a1 as Ok, a2 as Rg, a3 as WH, a4 as UH, a5 as Bk, a6 as $H, a7 as YH, a8 as XH, a9 as qH, aa as ZH, ab as jH, F as KH } from "./useChatHistory-BD1x2gsG.js";
7
- import { A as Sye, C as Cye, h as Tye, s as Dye, t as Aye, w as Mye, ag as Eye, m as Lye, j as Nye, q as Iye, x as kye, p as Rye, r as Pye, k as Oye, e as Bye, g as Vye, l as Fye, i as zye, a as Gye, n as Hye, ah as Wye, ae as Uye, ad as $ye, af as Yye, o as Xye, ac as qye, b as Zye, f as jye, v as Kye, c as Qye, d as Jye, u as e0e } from "./useChatHistory-BD1x2gsG.js";
6
+ import { y as IH, z as kH, U as nT, D as iT, B as $m, E as aT, G as RH, H as Oa, I as nl, J as PH, K as Gw, L as Rr, M as fi, N as OH, O as BH, P as Ik, Z as Ho, Q as VH, R as FH, S as zH, T as kk, V as Xv, W as Hw, X as Rk, Y as Pk, _ as pn, $ as GH, a0 as HH, a1 as Ok, a2 as Rg, a3 as WH, a4 as UH, a5 as Bk, a6 as $H, a7 as YH, a8 as XH, a9 as qH, aa as ZH, ab as jH, F as KH } from "./useChatHistory-D6KnQGF3.js";
7
+ import { A as Sye, C as Cye, h as Tye, s as Dye, t as Aye, w as Mye, ag as Eye, m as Lye, j as Nye, q as Iye, x as kye, p as Rye, r as Pye, k as Oye, e as Bye, g as Vye, l as Fye, i as zye, a as Gye, n as Hye, ah as Wye, ae as Uye, ad as $ye, af as Yye, o as Xye, ac as qye, b as Zye, f as jye, v as Kye, c as Qye, d as Jye, u as e0e } from "./useChatHistory-D6KnQGF3.js";
8
8
  import { createPortal as Vk, unstable_batchedUpdates as qd, flushSync as QH } from "react-dom";
9
- import { C as JH, y as eW, b as Fk, W as jb, X as zk, al as Gk, Z as Hk, aj as tW, _ as rW, a0 as Wk, a1 as Ww, am as nW, an as Uw, ae as iW, ao as aW, ap as oW, e as Pg, aq as sW, R as $w, u as Yw, $ as Uk, O as Xw, ar as lW, as as $k, i as Gu, m as Hu, p as md, at as qw, z as uW, j as cW, a9 as Yk, a4 as Xk, au as fW, av as dW, aw as hW, ax as vW, ay as pW, M as gW } from "./useDataCollectionSource-q6ZqmOeN.js";
10
- import { E as r0e, G as n0e, H as i0e, Q as a0e, aE as o0e, F as s0e, aC as l0e, ak as u0e, I as c0e, ag as f0e, ah as d0e, af as h0e, ai as v0e, J as p0e, P as g0e, N as m0e, T as y0e, K as b0e, U as x0e, w as _0e, x as w0e, az as S0e, aA as C0e, aB as T0e, aD as D0e, ac as A0e, Y as M0e, aF as E0e, aG as L0e, aH as N0e, h as I0e } from "./useDataCollectionSource-q6ZqmOeN.js";
9
+ import { C as JH, y as eW, b as Fk, W as jb, X as zk, al as Gk, Z as Hk, aj as tW, _ as rW, a0 as Wk, a1 as Ww, am as nW, an as Uw, ae as iW, ao as aW, ap as oW, e as Pg, aq as sW, R as $w, u as Yw, $ as Uk, O as Xw, ar as lW, as as $k, i as Gu, m as Hu, p as md, at as qw, z as uW, j as cW, a9 as Yk, a4 as Xk, au as fW, av as dW, aw as hW, ax as vW, ay as pW, M as gW } from "./useDataCollectionSource-DtX_WySE.js";
10
+ import { E as r0e, G as n0e, H as i0e, Q as a0e, aE as o0e, F as s0e, aC as l0e, ak as u0e, I as c0e, ag as f0e, ah as d0e, af as h0e, ai as v0e, J as p0e, P as g0e, N as m0e, T as y0e, K as b0e, U as x0e, w as _0e, x as w0e, az as S0e, aA as C0e, aB as T0e, aD as D0e, ac as A0e, Y as M0e, aF as E0e, aG as L0e, aH as N0e, h as I0e } from "./useDataCollectionSource-DtX_WySE.js";
11
11
  import { utils as fu, write as qk } from "./xlsx-Bedf3nwD.js";
12
12
  import { defaultTranslations as R0e } from "./i18n-provider-defaults.js";
13
13
  import './f0.css';const mW = {
@@ -167,6 +167,7 @@ export declare const defaultTranslations: {
167
167
  readonly toggleDropdownMenu: "Toggle dropdown menu";
168
168
  readonly selectAll: "Select all";
169
169
  readonly selectAllItems: "Select all {{total}} items";
170
+ readonly apply: "Apply";
170
171
  };
171
172
  readonly status: {
172
173
  readonly selected: {
@@ -871,8 +872,10 @@ declare module "@tiptap/core" {
871
872
 
872
873
  declare module "@tiptap/core" {
873
874
  interface Commands<ReturnType> {
874
- transcript: {
875
- insertTranscript: (data: TranscriptData) => ReturnType;
875
+ videoEmbed: {
876
+ setVideoEmbed: (options: {
877
+ src: string;
878
+ }) => ReturnType;
876
879
  };
877
880
  }
878
881
  }
@@ -880,10 +883,8 @@ declare module "@tiptap/core" {
880
883
 
881
884
  declare module "@tiptap/core" {
882
885
  interface Commands<ReturnType> {
883
- videoEmbed: {
884
- setVideoEmbed: (options: {
885
- src: string;
886
- }) => ReturnType;
886
+ transcript: {
887
+ insertTranscript: (data: TranscriptData) => ReturnType;
887
888
  };
888
889
  }
889
890
  }
@@ -166,7 +166,8 @@ const e = {
166
166
  toggle: "Toggle",
167
167
  toggleDropdownMenu: "Toggle dropdown menu",
168
168
  selectAll: "Select all",
169
- selectAllItems: "Select all {{total}} items"
169
+ selectAllItems: "Select all {{total}} items",
170
+ apply: "Apply"
170
171
  },
171
172
  status: {
172
173
  selected: {