@factorialco/f0-react 2.26.0 → 2.27.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: {
@@ -4173,6 +4174,11 @@ declare module "gridstack" {
4173
4174
  }
4174
4175
 
4175
4176
 
4177
+ declare namespace Calendar {
4178
+ var displayName: string;
4179
+ }
4180
+
4181
+
4176
4182
  declare module "@tiptap/core" {
4177
4183
  interface Commands<ReturnType> {
4178
4184
  aiBlock: {
@@ -4222,11 +4228,6 @@ declare module "@tiptap/core" {
4222
4228
  }
4223
4229
 
4224
4230
 
4225
- declare namespace Calendar {
4226
- var displayName: string;
4227
- }
4228
-
4229
-
4230
4231
  declare namespace F0GraphNodeWrapperInner {
4231
4232
  var displayName: string;
4232
4233
  }
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-Cq8UdI6Q.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: {
@@ -3801,7 +3802,11 @@ declare type EditableTableColumnDefinition<R extends RecordType, Sortings extend
3801
3802
  }) => void;
3802
3803
  /**
3803
3804
  * Returns a hint to display as an icon with tooltip inside the cell.
3804
- * Use to warn the user when a value diverges from its formula-inferred value.
3805
+ * Use to warn the user when a value diverges from its formula-inferred value,
3806
+ * or to provide extra context for non-editable / disabled cells (e.g. why a
3807
+ * value was inferred, who a row is backfilling, why editing is locked).
3808
+ *
3809
+ * Supported by all `editType` values, including `display-only` and `disabled`.
3805
3810
  *
3806
3811
  * Return `undefined` to hide the hint.
3807
3812
  *
@@ -5291,6 +5296,7 @@ declare const Input_2: React_2.ForwardRefExoticComponent<Omit<React_2.InputHTMLA
5291
5296
  declare const INPUTFIELD_SIZES: readonly ["sm", "md"];
5292
5297
 
5293
5298
  declare type InputFieldProps<T> = {
5299
+ id?: string;
5294
5300
  autoFocus?: boolean;
5295
5301
  label: string;
5296
5302
  placeholder?: string;
@@ -5376,7 +5382,7 @@ declare const inputFieldStatus: readonly ["default", "warning", "info", "error"]
5376
5382
 
5377
5383
  declare type InputFieldStatusType = (typeof inputFieldStatus)[number];
5378
5384
 
5379
- 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"> & {
5380
5386
  type?: Exclude<HTMLInputTypeAttribute, "number">;
5381
5387
  onPressEnter?: () => void;
5382
5388
  };
@@ -5973,8 +5979,26 @@ declare type NumberInputInternalProps = Omit<InputInternalProps<string>, "value"
5973
5979
  maxDecimals?: number;
5974
5980
  onChange?: (value: number | null) => void;
5975
5981
  units?: string;
5982
+ extraContent?: ReactNode;
5983
+ inputWidth?: string;
5984
+ popover?: NumberInputPopoverConfig;
5976
5985
  };
5977
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
+
5978
6002
  export declare type NumberInputProps = Omit<NumberInputInternalProps, (typeof privateProps_4)[number]>;
5979
6003
 
5980
6004
  declare type Numeric = NumericValue | number | undefined | null;
@@ -8515,6 +8539,11 @@ declare module "gridstack" {
8515
8539
  }
8516
8540
 
8517
8541
 
8542
+ declare namespace Calendar {
8543
+ var displayName: string;
8544
+ }
8545
+
8546
+
8518
8547
  declare module "@tiptap/core" {
8519
8548
  interface Commands<ReturnType> {
8520
8549
  aiBlock: {
@@ -8564,11 +8593,6 @@ declare module "@tiptap/core" {
8564
8593
  }
8565
8594
 
8566
8595
 
8567
- declare namespace Calendar {
8568
- var displayName: string;
8569
- }
8570
-
8571
-
8572
8596
  declare namespace F0GraphNodeWrapperInner {
8573
8597
  var displayName: string;
8574
8598
  }
@@ -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-DxlMzt-m.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-DxlMzt-m.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
@@ -4108,6 +4108,7 @@ export declare const defaultTranslations: {
4108
4108
  readonly toggleDropdownMenu: "Toggle dropdown menu";
4109
4109
  readonly selectAll: "Select all";
4110
4110
  readonly selectAllItems: "Select all {{total}} items";
4111
+ readonly apply: "Apply";
4111
4112
  };
4112
4113
  readonly status: {
4113
4114
  readonly selected: {
@@ -5016,7 +5017,11 @@ declare type EditableTableColumnDefinition<R extends RecordType, Sortings extend
5016
5017
  }) => void;
5017
5018
  /**
5018
5019
  * Returns a hint to display as an icon with tooltip inside the cell.
5019
- * Use to warn the user when a value diverges from its formula-inferred value.
5020
+ * Use to warn the user when a value diverges from its formula-inferred value,
5021
+ * or to provide extra context for non-editable / disabled cells (e.g. why a
5022
+ * value was inferred, who a row is backfilling, why editing is locked).
5023
+ *
5024
+ * Supported by all `editType` values, including `display-only` and `disabled`.
5020
5025
  *
5021
5026
  * Return `undefined` to hide the hint.
5022
5027
  *
@@ -10835,6 +10840,7 @@ declare type InputFieldInheritedProps = (typeof inputFieldInheritedProps)[number
10835
10840
  declare const inputFieldInheritedProps: readonly ["className", "label", "placeholder", "hideLabel", "size", "error", "disabled", "readonly", "required", "clearable", "labelIcon", "status", "hint", "loading", "transparent"];
10836
10841
 
10837
10842
  declare type InputFieldProps<T> = {
10843
+ id?: string;
10838
10844
  autoFocus?: boolean;
10839
10845
  label: string;
10840
10846
  placeholder?: string;
@@ -15080,6 +15086,11 @@ declare module "gridstack" {
15080
15086
  }
15081
15087
 
15082
15088
 
15089
+ declare namespace Calendar {
15090
+ var displayName: string;
15091
+ }
15092
+
15093
+
15083
15094
  declare module "@tiptap/core" {
15084
15095
  interface Commands<ReturnType> {
15085
15096
  aiBlock: {
@@ -15129,11 +15140,6 @@ declare module "@tiptap/core" {
15129
15140
  }
15130
15141
 
15131
15142
 
15132
- declare namespace Calendar {
15133
- var displayName: string;
15134
- }
15135
-
15136
-
15137
15143
  declare namespace F0GraphNodeWrapperInner {
15138
15144
  var displayName: string;
15139
15145
  }
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-Cq8UdI6Q.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-Cq8UdI6Q.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-DxlMzt-m.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-DxlMzt-m.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: {
@@ -840,6 +841,11 @@ declare module "gridstack" {
840
841
  }
841
842
 
842
843
 
844
+ declare namespace Calendar {
845
+ var displayName: string;
846
+ }
847
+
848
+
843
849
  declare module "@tiptap/core" {
844
850
  interface Commands<ReturnType> {
845
851
  aiBlock: {
@@ -889,11 +895,6 @@ declare module "@tiptap/core" {
889
895
  }
890
896
 
891
897
 
892
- declare namespace Calendar {
893
- var displayName: string;
894
- }
895
-
896
-
897
898
  declare namespace F0GraphNodeWrapperInner {
898
899
  var displayName: string;
899
900
  }
@@ -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: {