@factorialco/f0-react 3.2.6 → 3.2.7

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
@@ -1136,6 +1136,14 @@ declare interface CardPrimaryAction {
1136
1136
  label: string;
1137
1137
  icon?: IconType;
1138
1138
  onClick: () => void;
1139
+ /**
1140
+ * Visual emphasis of the primary action. `"outline"` renders it as an outline
1141
+ * button while keeping it pinned at the trailing edge (so a lone CTA never
1142
+ * sheds into the "⋯" menu). Use it when the card's only action shouldn't carry
1143
+ * full primary weight.
1144
+ * @default "default"
1145
+ */
1146
+ variant?: "default" | "outline";
1139
1147
  }
1140
1148
 
1141
1149
  declare interface CardRowConfirmAction {
@@ -3396,6 +3404,25 @@ declare interface F0CardRowProps {
3396
3404
  * Use `visible` + `onDismiss` for controlled dismiss behaviour.
3397
3405
  */
3398
3406
  alert?: CardAlertProps;
3407
+ /**
3408
+ * Opt-in: makes the whole row a link to this href. The row only becomes a
3409
+ * click target (pointer cursor + hover affordance + overlay link) when `link`
3410
+ * or `onClick` is set — otherwise it's a static row whose only interactive
3411
+ * parts are its actions.
3412
+ */
3413
+ link?: string;
3414
+ /**
3415
+ * Opt-in: called when the row is clicked. Like `link`, it turns the whole row
3416
+ * into an explicit click target (pointer cursor + hover affordance). Use it
3417
+ * for cards whose entire surface is the action (e.g. entry-point cards with no
3418
+ * CTA button); leave it unset for rows that act only through their buttons.
3419
+ */
3420
+ onClick?: () => void;
3421
+ /**
3422
+ * Disables the full-row overlay link (used with `link`) so a parent can manage
3423
+ * drag-and-drop while still allowing click navigation via `onClick`.
3424
+ */
3425
+ disableOverlayLink?: boolean;
3399
3426
  }
3400
3427
 
3401
3428
  /**
@@ -4703,11 +4730,8 @@ declare module "@tiptap/core" {
4703
4730
 
4704
4731
  declare module "@tiptap/core" {
4705
4732
  interface Commands<ReturnType> {
4706
- enhanceHighlight: {
4707
- setEnhanceHighlight: (from: number, to: number, options?: {
4708
- placeholder?: string;
4709
- }) => ReturnType;
4710
- clearEnhanceHighlight: () => ReturnType;
4733
+ moodTracker: {
4734
+ insertMoodTracker: (data: MoodTrackerData) => ReturnType;
4711
4735
  };
4712
4736
  }
4713
4737
  }
@@ -4715,8 +4739,11 @@ declare module "@tiptap/core" {
4715
4739
 
4716
4740
  declare module "@tiptap/core" {
4717
4741
  interface Commands<ReturnType> {
4718
- moodTracker: {
4719
- insertMoodTracker: (data: MoodTrackerData) => ReturnType;
4742
+ enhanceHighlight: {
4743
+ setEnhanceHighlight: (from: number, to: number, options?: {
4744
+ placeholder?: string;
4745
+ }) => ReturnType;
4746
+ clearEnhanceHighlight: () => ReturnType;
4720
4747
  };
4721
4748
  }
4722
4749
  }
package/dist/ai.js CHANGED
@@ -1,6 +1,6 @@
1
- import { C as e, D as r, c as t, F as o, a as i, f as n, g as F, d as C, e as A, I as l, P as d, b as u, u as m } from "./F0CanvasPanel-BIiLn_fA.js";
1
+ import { C as e, D as r, c as t, F as o, a as i, f as n, g as F, d as C, e as A, I as l, P as d, b as u, u as m } from "./F0CanvasPanel-Cq4Hljwy.js";
2
2
  import { defaultTranslations as c } from "./i18n-provider-defaults.js";
3
- import { A as P, s as v, t as f, w as g, l as p, i as T, q as y, x as S, p as x, r as H, j as V, e as b, g as k, k as w, F as M, h as O, a as D, n as j, m as q, o as z, b as B, f as E, v as L, c as R, d as G, u as J } from "./useChatHistory-Cr-xjwIK.js";
3
+ import { A as P, s as v, t as f, w as g, l as p, i as T, q as y, x as S, p as x, r as H, j as V, e as b, g as k, k as w, F as M, h as O, a as D, n as j, m as q, o as z, b as B, f as E, v as L, c as R, d as G, u as J } from "./useChatHistory-g8vzWwzv.js";
4
4
  export {
5
5
  P as AiChatTranslationsProvider,
6
6
  e as ChatSpinner,
@@ -9355,11 +9355,8 @@ declare module "@tiptap/core" {
9355
9355
 
9356
9356
  declare module "@tiptap/core" {
9357
9357
  interface Commands<ReturnType> {
9358
- enhanceHighlight: {
9359
- setEnhanceHighlight: (from: number, to: number, options?: {
9360
- placeholder?: string;
9361
- }) => ReturnType;
9362
- clearEnhanceHighlight: () => ReturnType;
9358
+ moodTracker: {
9359
+ insertMoodTracker: (data: MoodTrackerData) => ReturnType;
9363
9360
  };
9364
9361
  }
9365
9362
  }
@@ -9367,8 +9364,11 @@ declare module "@tiptap/core" {
9367
9364
 
9368
9365
  declare module "@tiptap/core" {
9369
9366
  interface Commands<ReturnType> {
9370
- moodTracker: {
9371
- insertMoodTracker: (data: MoodTrackerData) => ReturnType;
9367
+ enhanceHighlight: {
9368
+ setEnhanceHighlight: (from: number, to: number, options?: {
9369
+ placeholder?: string;
9370
+ }) => ReturnType;
9371
+ clearEnhanceHighlight: () => ReturnType;
9372
9372
  };
9373
9373
  }
9374
9374
  }
@@ -1,9 +1,9 @@
1
- import { h as ga, B as pa, i as ba, j as xa, k as Dt, l as Be, m as Te, n as va, o as b, p as J, q as ye, u as oe, T as ya, r as wa, s as Na, R as Ca, t as Ia, v as ce, w as ka, x as Nt, y as ut, z as Ve, A as Le, E as Sa, G as Fa, H as U, J as Aa, K as La, L as xe, M as mn, N as Oa, O as Pa, Q as H, S as hn, U as z, V as ke, W as Ea, X as _a, Y as Da, Z as Ta, _ as za, $ as Oe, a0 as gn, a1 as Ra, a2 as we, a3 as Ue, a4 as Ba, e as pn, a5 as Ae, a6 as $a, a7 as bn, a8 as ie, a9 as X, aa as xn, ab as vn, ac as Ma, ad as yn, ae as pe, af as ae, ag as Wa, ah as ja, ai as Va, aj as Ua, ak as ve, al as Ye, am as Ha, an as Ga, ao as Ka, ap as qa, aq as Je, ar as wn, as as Ya, at as Ja, au as Za, av as He, aw as Xa, ax as Nn, ay as Qa, az as er, aA as tr, aB as nr, aC as ar, aD as rr, aE as ir, aF as lr, aG as ft, aH as Cn, aI as mt, aJ as In, aK as sr, aL as or, aM as cr, aN as dr, aO as ur, aP as Ze, aQ as Xe, aR as ht, aS as kn, aT as fr, aU as Ct, aV as mr, aW as hr, aX as gr, aY as Re, aZ as pr, a_ as br, a$ as $e, b0 as Tt, b1 as gt, b2 as xr, b3 as vr, a as yr, b as wr, b4 as Sn, b5 as Nr, g as Cr, F as Ir, b6 as kr, b7 as Fn, b8 as Sr, b9 as An, ba as Ln, bb as Fr, bc as Ar, bd as Lr, be as Or, bf as Pr, bg as Er, bh as _r, bi as Dr, bj as Tr, bk as On, bl as zr, bm as Rr, bn as Br, bo as $r, bp as ge, bq as It, br as kt, bs as St, bt as Pn, bu as Ft, bv as En, bw as _n, bx as Mr, by as Wr, bz as jr, bA as Vr, bB as Ur, bC as Hr, bD as Gr, bE as Kr, bF as zt, bG as qr, bH as Yr, bI as Rt, bJ as Bt, bK as $t, bL as Jr, bM as Zr, bN as Xr, bO as Qr, bP as Dn, bQ as ei, bR as ti } from "./F0CanvasPanel-BIiLn_fA.js";
2
- import { c1 as Kc, c0 as qc, cd as Yc, bZ as Jc, b_ as Zc, bS as Xc, cg as Qc, bT as ed, bU as td, ch as nd, b$ as ad, c9 as rd, ca as id, ce as ld, bV as sd, c3 as od, c2 as cd, bW as dd, bX as ud, cb as fd, ci as md, cc as hd, cf as gd, c8 as pd, c5 as bd, c7 as xd, c4 as vd, bY as yd, c6 as wd } from "./F0CanvasPanel-BIiLn_fA.js";
1
+ import { h as ga, B as pa, i as ba, j as xa, k as Dt, l as Be, m as Te, n as va, o as b, p as J, q as ye, u as oe, T as ya, r as wa, s as Na, R as Ca, t as Ia, v as ce, w as ka, x as Nt, y as ut, z as Ve, A as Le, E as Sa, G as Fa, H as U, J as Aa, K as La, L as xe, M as mn, N as Oa, O as Pa, Q as H, S as hn, U as z, V as ke, W as Ea, X as _a, Y as Da, Z as Ta, _ as za, $ as Oe, a0 as gn, a1 as Ra, a2 as we, a3 as Ue, a4 as Ba, e as pn, a5 as Ae, a6 as $a, a7 as bn, a8 as ie, a9 as X, aa as xn, ab as vn, ac as Ma, ad as yn, ae as pe, af as ae, ag as Wa, ah as ja, ai as Va, aj as Ua, ak as ve, al as Ye, am as Ha, an as Ga, ao as Ka, ap as qa, aq as Je, ar as wn, as as Ya, at as Ja, au as Za, av as He, aw as Xa, ax as Nn, ay as Qa, az as er, aA as tr, aB as nr, aC as ar, aD as rr, aE as ir, aF as lr, aG as ft, aH as Cn, aI as mt, aJ as In, aK as sr, aL as or, aM as cr, aN as dr, aO as ur, aP as Ze, aQ as Xe, aR as ht, aS as kn, aT as fr, aU as Ct, aV as mr, aW as hr, aX as gr, aY as Re, aZ as pr, a_ as br, a$ as $e, b0 as Tt, b1 as gt, b2 as xr, b3 as vr, a as yr, b as wr, b4 as Sn, b5 as Nr, g as Cr, F as Ir, b6 as kr, b7 as Fn, b8 as Sr, b9 as An, ba as Ln, bb as Fr, bc as Ar, bd as Lr, be as Or, bf as Pr, bg as Er, bh as _r, bi as Dr, bj as Tr, bk as On, bl as zr, bm as Rr, bn as Br, bo as $r, bp as ge, bq as It, br as kt, bs as St, bt as Pn, bu as Ft, bv as En, bw as _n, bx as Mr, by as Wr, bz as jr, bA as Vr, bB as Ur, bC as Hr, bD as Gr, bE as Kr, bF as zt, bG as qr, bH as Yr, bI as Rt, bJ as Bt, bK as $t, bL as Jr, bM as Zr, bN as Xr, bO as Qr, bP as Dn, bQ as ei, bR as ti } from "./F0CanvasPanel-Cq4Hljwy.js";
2
+ import { c1 as Kc, c0 as qc, cd as Yc, bZ as Jc, b_ as Zc, bS as Xc, cg as Qc, bT as ed, bU as td, ch as nd, b$ as ad, c9 as rd, ca as id, ce as ld, bV as sd, c3 as od, c2 as cd, bW as dd, bX as ud, cb as fd, ci as md, cc as hd, cf as gd, c8 as pd, c5 as bd, c7 as xd, c4 as vd, bY as yd, c6 as wd } from "./F0CanvasPanel-Cq4Hljwy.js";
3
3
  import { jsx as e, jsxs as o, Fragment as Z } from "react/jsx-runtime";
4
4
  import ue, { forwardRef as G, useRef as j, useTransition as ni, useState as D, useLayoutEffect as Tn, useId as pt, useContext as Pe, createContext as Qe, useEffect as W, useCallback as ne, useMemo as q, Fragment as ai, isValidElement as ri, cloneElement as zn, Children as Rn } from "react";
5
- import { C as ii, P as li, a as Bn, M as si, p as oi, b as ci, R as Mt, c as $n, u as di, d as ui, e as fi, f as mi, g as hi, h as Mn, S as gi, A as pi, B as bi, L as xi, i as vi, V as yi, j as wi, k as Ni, l as Ci, O as Ii } from "./useDataCollectionSource-BKkv1Qwq.js";
6
- import { r as Cd, s as Id, o as kd, H as Sd, t as Fd, z as Ad, a8 as Ld, G as Od, q as Pd, aa as Ed, a9 as _d, Q as Dd, ad as Td, F as zd, Y as Rd, U as Bd, J as $d, af as Md, K as Wd, Z as jd, _ as Vd, v as Ud, ab as Hd, ac as Gd, N as Kd, $ as qd, a5 as Yd, a7 as Jd, w as Zd, y as Xd, D as Qd, W as eu, ae as tu, X as nu, T as au, ag as ru, x as iu, E as lu, m as su, n as ou, a1 as cu, a2 as du, a6 as uu, I as fu, a3 as mu, a0 as hu, a4 as gu } from "./useDataCollectionSource-BKkv1Qwq.js";
5
+ import { C as ii, P as li, a as Bn, M as si, p as oi, b as ci, R as Mt, c as $n, u as di, d as ui, e as fi, f as mi, g as hi, h as Mn, S as gi, A as pi, B as bi, L as xi, i as vi, V as yi, j as wi, k as Ni, l as Ci, O as Ii } from "./useDataCollectionSource-Cox3EYnv.js";
6
+ import { r as Cd, s as Id, o as kd, H as Sd, t as Fd, z as Ad, a8 as Ld, G as Od, q as Pd, aa as Ed, a9 as _d, Q as Dd, ad as Td, F as zd, Y as Rd, U as Bd, J as $d, af as Md, K as Wd, Z as jd, _ as Vd, v as Ud, ab as Hd, ac as Gd, N as Kd, $ as qd, a5 as Yd, a7 as Jd, w as Zd, y as Xd, D as Qd, W as eu, ae as tu, X as nu, T as au, ag as ru, x as iu, E as lu, m as su, n as ou, a1 as cu, a2 as du, a6 as uu, I as fu, a3 as mu, a0 as hu, a4 as gu } from "./useDataCollectionSource-Cox3EYnv.js";
7
7
  const ki = ga("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
@@ -2262,6 +2262,14 @@ declare interface CardPrimaryAction {
2262
2262
  label: string;
2263
2263
  icon?: IconType;
2264
2264
  onClick: () => void;
2265
+ /**
2266
+ * Visual emphasis of the primary action. `"outline"` renders it as an outline
2267
+ * button while keeping it pinned at the trailing edge (so a lone CTA never
2268
+ * sheds into the "⋯" menu). Use it when the card's only action shouldn't carry
2269
+ * full primary weight.
2270
+ * @default "default"
2271
+ */
2272
+ variant?: "default" | "outline";
2265
2273
  }
2266
2274
 
2267
2275
  declare type CardPropertyDefinition<T> = PropertyDefinition_2<T> & {
@@ -7149,6 +7157,9 @@ compact?: boolean;
7149
7157
 
7150
7158
  export declare type F0CardProps = Omit<CardInternalProps, (typeof privateProps_3)[number]>;
7151
7159
 
7160
+ /**
7161
+ * @experimental This is an experimental component, use it at your own risk.
7162
+ */
7152
7163
  export declare const F0CardRow: WithDataTestIdReturnType_3<ForwardRefExoticComponent<F0CardRowProps & RefAttributes<HTMLDivElement>> & {
7153
7164
  Skeleton: ({ compact }: {
7154
7165
  compact?: boolean;
@@ -7226,6 +7237,25 @@ export declare interface F0CardRowProps {
7226
7237
  * Use `visible` + `onDismiss` for controlled dismiss behaviour.
7227
7238
  */
7228
7239
  alert?: CardAlertProps;
7240
+ /**
7241
+ * Opt-in: makes the whole row a link to this href. The row only becomes a
7242
+ * click target (pointer cursor + hover affordance + overlay link) when `link`
7243
+ * or `onClick` is set — otherwise it's a static row whose only interactive
7244
+ * parts are its actions.
7245
+ */
7246
+ link?: string;
7247
+ /**
7248
+ * Opt-in: called when the row is clicked. Like `link`, it turns the whole row
7249
+ * into an explicit click target (pointer cursor + hover affordance). Use it
7250
+ * for cards whose entire surface is the action (e.g. entry-point cards with no
7251
+ * CTA button); leave it unset for rows that act only through their buttons.
7252
+ */
7253
+ onClick?: () => void;
7254
+ /**
7255
+ * Disables the full-row overlay link (used with `link`) so a parent can manage
7256
+ * drag-and-drop while still allowing click navigation via `onClick`.
7257
+ */
7258
+ disableOverlayLink?: boolean;
7229
7259
  }
7230
7260
 
7231
7261
  declare interface F0CardSelectConfig {
@@ -16401,11 +16431,8 @@ declare module "@tiptap/core" {
16401
16431
 
16402
16432
  declare module "@tiptap/core" {
16403
16433
  interface Commands<ReturnType> {
16404
- enhanceHighlight: {
16405
- setEnhanceHighlight: (from: number, to: number, options?: {
16406
- placeholder?: string;
16407
- }) => ReturnType;
16408
- clearEnhanceHighlight: () => ReturnType;
16434
+ moodTracker: {
16435
+ insertMoodTracker: (data: MoodTrackerData) => ReturnType;
16409
16436
  };
16410
16437
  }
16411
16438
  }
@@ -16413,8 +16440,11 @@ declare module "@tiptap/core" {
16413
16440
 
16414
16441
  declare module "@tiptap/core" {
16415
16442
  interface Commands<ReturnType> {
16416
- moodTracker: {
16417
- insertMoodTracker: (data: MoodTrackerData) => ReturnType;
16443
+ enhanceHighlight: {
16444
+ setEnhanceHighlight: (from: number, to: number, options?: {
16445
+ placeholder?: string;
16446
+ }) => ReturnType;
16447
+ clearEnhanceHighlight: () => ReturnType;
16418
16448
  };
16419
16449
  }
16420
16450
  }
package/dist/f0.js CHANGED
@@ -1,13 +1,13 @@
1
- import { gD as zI, a8 as at, bp as Tx, o as ie, q as Ii, gx as VI, p as ea, eR as Q5, af as Pp, U as K, u as Ze, H as tt, de as nu, A as Op, j as FI, L as ja, c$ as fs, a9 as ur, a5 as Rf, gE as J5, ae as Dl, gF as Y0, gG as eG, gH as tG, gI as GS, e7 as rG, gJ as nG, gK as GI, gL as iG, Q as yt, aP as HI, bg as aG, e3 as HS, v as iu, cV as WI, ba as zl, bh as oG, fr as Dx, aD as Ax, aE as Mx, aF as Ex, al as Lx, cd as nv, gM as Nx, gN as sG, gw as WS, fw as lG, gO as iv, at as uG, gc as Ix, gP as cG, $ as kf, c3 as fG, n as dG, l as hG, gQ as $I, gR as vG, gS as pG, gT as UI, y as gG, gU as mG, gV as yG, gW as bG, gX as $S, fp as _G, gY as xG, fV as au, fW as Pf, g8 as wG, fL as YI, aa as bn, aq as SG, cO as X0, cN as XI, fY as qI, gZ as CG, g_ as TG, g$ as yl, h0 as Of, h1 as ou, h2 as DG, h3 as ZI, h4 as AG, h5 as MG, fK as EG, h6 as Bp, dp as Rx, go as LG, a3 as jI, fo as NG, bL as IG, ad as zp, gd as kx, dW as RG, dX as kG, dY as PG, d as OG, eB as BG, G as KI, cU as ws, dG as QI, dn as JI, bO as Px, dI as e2, J as Vp, K as Fp, cF as Ox, O as Gp, Y as cr, _ as Vl, fP as Al, fQ as Ml, N as El, fR as Ll, fN as zG, fO as ka, cH as t2, as as VG, dl as av, be as Fl, f$ as Fr, bV as FG, e4 as jc, bU as GG, aC as HG, gi as jr, h7 as WG, h8 as $G, h9 as r2, ha as Hp, hb as UG, hc as YG, dt as n2, dr as i2, e1 as XG, hd as qG, aS as a2, aY as ZG, ga as jG, gb as KG, bq as su, bu as lu, bB as Bf, dJ as QG, br as JG, b7 as e3, S as o2, bf as t3, a1 as r3, di as US, dF as Kc, fs as n3, ft as i3, he as a3, aX as o3, bv as s3, cZ as s2, a6 as l3, cM as u3, gA as c3, bD as f3, hf as d3, hg as h3, I as v3, hh as p3, hi as g3, hj as m3, hk as y3, hl as b3 } from "./F0CanvasPanel-BIiLn_fA.js";
2
- import { hB as mpe, C as ype, D as bpe, aQ as _pe, c as xpe, F as wpe, a as Spe, hu as Cpe, f as Tpe, b8 as Dpe, aR as Ape, bE as Mpe, d_ as Epe, aI as Lpe, bk as Npe, ak as Ipe, e6 as Rpe, bS as kpe, g as Ppe, dZ as Ope, hp as Bpe, hG as zpe, cg as Vpe, a$ as Fpe, e as Gpe, bT as Hpe, av as Wpe, bw as $pe, hw as Upe, b3 as Ype, hx as Xpe, hz as qpe, hA as Zpe, ch as jpe, hD as Kpe, c9 as Qpe, ca as Jpe, P as ege, ce as tge, hy as rge, cb as nge, hC as ige, hH as age, hm as oge, hn as sge, ho as lge, cc as uge, hF as cge, hv as fge, hs as dge, hr as hge, cf as vge, fI as pge, gp as gge, hE as mge, aV as yge, c8 as bge, c5 as _ge, c7 as xge, c4 as wge, ht as Sge, gr as Cge, gl as Tge, fZ as Dge, hK as Age, bY as Mge, c6 as Ege, hJ as Lge, bl as Nge, d$ as Ige, fH as Rge, f_ as kge, b as Pge, bo as Oge, gC as Bge, aT as zge, e0 as Vge, hq as Fge, gn as Gge, gm as Hge, hI as Wge } from "./F0CanvasPanel-BIiLn_fA.js";
1
+ import { gD as zI, a8 as at, bp as Tx, o as ie, q as Ii, gx as VI, p as ea, eR as Q5, af as Pp, U as K, u as Ze, H as tt, de as nu, A as Op, j as FI, L as ja, c$ as fs, a9 as ur, a5 as Rf, gE as J5, ae as Dl, gF as Y0, gG as eG, gH as tG, gI as GS, e7 as rG, gJ as nG, gK as GI, gL as iG, Q as yt, aP as HI, bg as aG, e3 as HS, v as iu, cV as WI, ba as zl, bh as oG, fr as Dx, aD as Ax, aE as Mx, aF as Ex, al as Lx, cd as nv, gM as Nx, gN as sG, gw as WS, fw as lG, gO as iv, at as uG, gc as Ix, gP as cG, $ as kf, c3 as fG, n as dG, l as hG, gQ as $I, gR as vG, gS as pG, gT as UI, y as gG, gU as mG, gV as yG, gW as bG, gX as $S, fp as _G, gY as xG, fV as au, fW as Pf, g8 as wG, fL as YI, aa as bn, aq as SG, cO as X0, cN as XI, fY as qI, gZ as CG, g_ as TG, g$ as yl, h0 as Of, h1 as ou, h2 as DG, h3 as ZI, h4 as AG, h5 as MG, fK as EG, h6 as Bp, dp as Rx, go as LG, a3 as jI, fo as NG, bL as IG, ad as zp, gd as kx, dW as RG, dX as kG, dY as PG, d as OG, eB as BG, G as KI, cU as ws, dG as QI, dn as JI, bO as Px, dI as e2, J as Vp, K as Fp, cF as Ox, O as Gp, Y as cr, _ as Vl, fP as Al, fQ as Ml, N as El, fR as Ll, fN as zG, fO as ka, cH as t2, as as VG, dl as av, be as Fl, f$ as Fr, bV as FG, e4 as jc, bU as GG, aC as HG, gi as jr, h7 as WG, h8 as $G, h9 as r2, ha as Hp, hb as UG, hc as YG, dt as n2, dr as i2, e1 as XG, hd as qG, aS as a2, aY as ZG, ga as jG, gb as KG, bq as su, bu as lu, bB as Bf, dJ as QG, br as JG, b7 as e3, S as o2, bf as t3, a1 as r3, di as US, dF as Kc, fs as n3, ft as i3, he as a3, aX as o3, bv as s3, cZ as s2, a6 as l3, cM as u3, gA as c3, bD as f3, hf as d3, hg as h3, I as v3, hh as p3, hi as g3, hj as m3, hk as y3, hl as b3 } from "./F0CanvasPanel-Cq4Hljwy.js";
2
+ import { hB as mpe, C as ype, D as bpe, aQ as _pe, c as xpe, F as wpe, a as Spe, hu as Cpe, f as Tpe, b8 as Dpe, aR as Ape, bE as Mpe, d_ as Epe, aI as Lpe, bk as Npe, ak as Ipe, e6 as Rpe, bS as kpe, g as Ppe, dZ as Ope, hp as Bpe, hG as zpe, cg as Vpe, a$ as Fpe, e as Gpe, bT as Hpe, av as Wpe, bw as $pe, hw as Upe, b3 as Ype, hx as Xpe, hz as qpe, hA as Zpe, ch as jpe, hD as Kpe, c9 as Qpe, ca as Jpe, P as ege, ce as tge, hy as rge, cb as nge, hC as ige, hH as age, hm as oge, hn as sge, ho as lge, cc as uge, hF as cge, hv as fge, hs as dge, hr as hge, cf as vge, fI as pge, gp as gge, hE as mge, aV as yge, c8 as bge, c5 as _ge, c7 as xge, c4 as wge, ht as Sge, gr as Cge, gl as Tge, fZ as Dge, hK as Age, bY as Mge, c6 as Ege, hJ as Lge, bl as Nge, d$ as Ige, fH as Rge, f_ as kge, b as Pge, bo as Oge, gC as Bge, aT as zge, e0 as Vge, hq as Fge, gn as Gge, gm as Hge, hI as Wge } from "./F0CanvasPanel-Cq4Hljwy.js";
3
3
  import { jsx as S, jsxs as z, Fragment as st } from "react/jsx-runtime";
4
4
  import * as St from "react";
5
5
  import _t, { forwardRef as Pr, useRef as fe, useImperativeHandle as _3, Children as ov, createContext as Or, useContext as fr, useState as ce, useMemo as se, useEffect as ge, useCallback as le, useLayoutEffect as q0, isValidElement as l2, Fragment as Wp, memo as u2, useReducer as x3, cloneElement as w3, useId as Ic, useSyncExternalStore as YS } from "react";
6
- import { T as c2, y as S3, z as C3, B as T3, C as D3, D as f2, E as sv, G as Bx, H as d2, I as h2, J as v2, K as A3, L as M3, M as E3, N as L3, O as N3, F as I3 } from "./useChatHistory-Cr-xjwIK.js";
7
- import { A as Uge, s as Yge, t as Xge, w as qge, l as Zge, i as jge, q as Kge, x as Qge, p as Jge, r as eme, j as tme, e as rme, P as nme, g as ime, k as ame, h as ome, a as sme, n as lme, m as ume, o as cme, b as fme, f as dme, v as hme, c as vme, d as pme, u as gme } from "./useChatHistory-Cr-xjwIK.js";
6
+ import { T as c2, y as S3, z as C3, B as T3, C as D3, D as f2, E as sv, G as Bx, H as d2, I as h2, J as v2, K as A3, L as M3, M as E3, N as L3, O as N3, F as I3 } from "./useChatHistory-g8vzWwzv.js";
7
+ import { A as Uge, s as Yge, t as Xge, w as qge, l as Zge, i as jge, q as Kge, x as Qge, p as Jge, r as eme, j as tme, e as rme, P as nme, g as ime, k as ame, h as ome, a as sme, n as lme, m as ume, o as cme, b as fme, f as dme, v as hme, c as vme, d as pme, u as gme } from "./useChatHistory-g8vzWwzv.js";
8
8
  import { createPortal as zx, unstable_batchedUpdates as ud } from "react-dom";
9
- import { C as R3, F as k3, ah as p2, ai as P3, aj as O3, ak as B3, al as Vx, am as Fx, G as z3, an as V3, Y as F3, a8 as G3, ao as H3, Q as W3, ap as $3, aq as U3, c as $p, ar as zf, R as Gx, u as Hx, W as g2, O as Wx, as as m2, at as XS, au as $x, o as Y3, d as y2, $ as b2, av as X3, aw as q3, ax as Z3, ay as j3, az as K3, M as Q3 } from "./useDataCollectionSource-BKkv1Qwq.js";
10
- import { r as yme, s as bme, H as _me, t as xme, z as wme, aQ as Sme, aP as Cme, aL as Tme, aB as Dme, aA as Ame, aC as Mme, aD as Eme, aa as Lme, a9 as Nme, ad as Ime, U as Rme, J as kme, af as Pme, K as Ome, v as Bme, aR as zme, ab as Vme, ac as Fme, N as Gme, w as Hme, P as Wme, y as $me, D as Ume, ae as Yme, T as Xme, ag as qme, x as Zme, E as jme, aT as Kme, m as Qme, n as Jme, aK as eye, aG as tye, aF as rye, aS as nye, a6 as iye, aI as aye, aJ as oye, I as sye, aU as lye, aV as uye, e as cye, aM as fye, aN as dye, aO as hye, aH as vye, f as pye, h as gye, aE as mye, aW as yye } from "./useDataCollectionSource-BKkv1Qwq.js";
9
+ import { C as R3, F as k3, ah as p2, ai as P3, aj as O3, ak as B3, al as Vx, am as Fx, G as z3, an as V3, Y as F3, a8 as G3, ao as H3, Q as W3, ap as $3, aq as U3, c as $p, ar as zf, R as Gx, u as Hx, W as g2, O as Wx, as as m2, at as XS, au as $x, o as Y3, d as y2, $ as b2, av as X3, aw as q3, ax as Z3, ay as j3, az as K3, M as Q3 } from "./useDataCollectionSource-Cox3EYnv.js";
10
+ import { r as yme, s as bme, H as _me, t as xme, z as wme, aQ as Sme, aP as Cme, aL as Tme, aB as Dme, aA as Ame, aC as Mme, aD as Eme, aa as Lme, a9 as Nme, ad as Ime, U as Rme, J as kme, af as Pme, K as Ome, v as Bme, aR as zme, ab as Vme, ac as Fme, N as Gme, w as Hme, P as Wme, y as $me, D as Ume, ae as Yme, T as Xme, ag as qme, x as Zme, E as jme, aT as Kme, m as Qme, n as Jme, aK as eye, aG as tye, aF as rye, aS as nye, a6 as iye, aI as aye, aJ as oye, I as sye, aU as lye, aV as uye, e as cye, aM as fye, aN as dye, aO as hye, aH as vye, f as pye, h as gye, aE as mye, aW as yye } from "./useDataCollectionSource-Cox3EYnv.js";
11
11
  import { utils as Nl, write as _2 } from "./xlsx-Bedf3nwD.js";
12
12
  import { defaultTranslations as _ye } from "./i18n-provider-defaults.js";
13
13
  import './f0.css';const J3 = {
@@ -886,11 +886,8 @@ declare module "@tiptap/core" {
886
886
 
887
887
  declare module "@tiptap/core" {
888
888
  interface Commands<ReturnType> {
889
- enhanceHighlight: {
890
- setEnhanceHighlight: (from: number, to: number, options?: {
891
- placeholder?: string;
892
- }) => ReturnType;
893
- clearEnhanceHighlight: () => ReturnType;
889
+ moodTracker: {
890
+ insertMoodTracker: (data: MoodTrackerData) => ReturnType;
894
891
  };
895
892
  }
896
893
  }
@@ -898,8 +895,11 @@ declare module "@tiptap/core" {
898
895
 
899
896
  declare module "@tiptap/core" {
900
897
  interface Commands<ReturnType> {
901
- moodTracker: {
902
- insertMoodTracker: (data: MoodTrackerData) => ReturnType;
898
+ enhanceHighlight: {
899
+ setEnhanceHighlight: (from: number, to: number, options?: {
900
+ placeholder?: string;
901
+ }) => ReturnType;
902
+ clearEnhanceHighlight: () => ReturnType;
903
903
  };
904
904
  }
905
905
  }