@factorialco/f0-react 2.34.0 → 2.36.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
@@ -4216,11 +4216,16 @@ declare module "gridstack" {
4216
4216
  }
4217
4217
 
4218
4218
 
4219
+ declare namespace Calendar {
4220
+ var displayName: string;
4221
+ }
4222
+
4223
+
4219
4224
  declare module "@tiptap/core" {
4220
4225
  interface Commands<ReturnType> {
4221
- aiBlock: {
4222
- insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
4223
- executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
4226
+ enhanceHighlight: {
4227
+ setEnhanceHighlight: (from: number, to: number) => ReturnType;
4228
+ clearEnhanceHighlight: () => ReturnType;
4224
4229
  };
4225
4230
  }
4226
4231
  }
@@ -4228,9 +4233,9 @@ declare module "@tiptap/core" {
4228
4233
 
4229
4234
  declare module "@tiptap/core" {
4230
4235
  interface Commands<ReturnType> {
4231
- enhanceHighlight: {
4232
- setEnhanceHighlight: (from: number, to: number) => ReturnType;
4233
- clearEnhanceHighlight: () => ReturnType;
4236
+ aiBlock: {
4237
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
4238
+ executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
4234
4239
  };
4235
4240
  }
4236
4241
  }
@@ -4265,11 +4270,6 @@ declare module "@tiptap/core" {
4265
4270
  }
4266
4271
 
4267
4272
 
4268
- declare namespace Calendar {
4269
- var displayName: string;
4270
- }
4271
-
4272
-
4273
4273
  declare namespace F0GraphNodeWrapperInner {
4274
4274
  var displayName: string;
4275
4275
  }
package/dist/ai.js CHANGED
@@ -1,6 +1,6 @@
1
- import { D as e, F as r, a as t, e as o, f as i, c as n, d as F, I as C, P as A, b as l, u as d } from "./F0CanvasPanel-EblUp6hE.js";
1
+ import { D as e, F as r, a as t, e as o, f as i, c as n, d as F, I as C, P as A, b as l, u as d } from "./F0CanvasPanel-CzqKtOrT.js";
2
2
  import { defaultTranslations as m } from "./i18n-provider-defaults.js";
3
- import { A as c, C as I, h as P, t as v, v as f, x as p, n as T, j as g, r as y, y as S, q as x, s as H, k as V, e as b, g as k, l as w, F as M, i as O, a as D, p as j, m as q, o as z, b as B, f as E, w as L, c as R, d as G, u as J } from "./useChatHistory-6qTtYcQc.js";
3
+ import { A as c, C as I, h as P, t as v, v as f, x as p, n as T, j as g, r as y, y as S, q as x, s as H, k as V, e as b, g as k, l as w, F as M, i as O, a as D, p as j, m as q, o as z, b as B, f as E, w as L, c as R, d as G, u as J } from "./useChatHistory-CyCXSXX9.js";
4
4
  export {
5
5
  c as AiChatTranslationsProvider,
6
6
  I as ChatSpinner,
@@ -1016,7 +1016,7 @@ declare type BaseFilterDefinition<T extends FilterTypeKey> = {
1016
1016
  hideSelector?: boolean;
1017
1017
  };
1018
1018
 
1019
- declare function BaseHeader({ title, avatar, deactivated, description, primaryAction, secondaryActions, otherActions, status, metadata, }: BaseHeaderProps_2): JSX_2.Element;
1019
+ declare function BaseHeader({ title, avatar, deactivated, description, primaryAction, secondaryActions, otherActions, status, metadata, showBottomBorder, }: BaseHeaderProps_2): JSX_2.Element;
1020
1020
 
1021
1021
  declare type BaseHeaderProps = ComponentProps<typeof BaseHeader>;
1022
1022
 
@@ -1041,6 +1041,8 @@ declare interface BaseHeaderProps_2 {
1041
1041
  actions?: MetadataAction[];
1042
1042
  };
1043
1043
  metadata?: MetadataProps["items"];
1044
+ /** Renders a 1px bottom border at the very bottom of the header. */
1045
+ showBottomBorder?: boolean;
1044
1046
  }
1045
1047
 
1046
1048
  /**
@@ -1269,6 +1271,10 @@ declare type ButtonInternalProps = Pick<ActionProps, "size" | "disabled" | "clas
1269
1271
  * Adds an icon to the button, combined with the label for better clarity and recognition.
1270
1272
  */
1271
1273
  icon?: IconType;
1274
+ /**
1275
+ * Sets the side of the label the icon is placed on. Defaults to "left".
1276
+ */
1277
+ iconPosition?: "left" | "right";
1272
1278
  /**
1273
1279
  * Adds an emoji to the button, can be used as a special case of icon-only button.
1274
1280
  */
@@ -5692,6 +5698,11 @@ declare interface MetadataItem {
5692
5698
  value: MetadataItemValue;
5693
5699
  actions?: (MetadataAction | MetadataCopyAction)[];
5694
5700
  hideLabel?: boolean;
5701
+ /**
5702
+ * Optional leading icon shown before the label/value. Useful when the icon itself
5703
+ * conveys the field (e.g. with `hideLabel`), so the item reads as "icon + value".
5704
+ */
5705
+ icon?: IconType;
5695
5706
  /**
5696
5707
  * Optional info text. When provided, displays an info icon next to the label
5697
5708
  * that shows this text in a tooltip when hovered.
@@ -6953,7 +6964,7 @@ declare type PropertyDefinition_2<T> = {
6953
6964
  hide?: (item: T) => boolean;
6954
6965
  };
6955
6966
 
6956
- declare type Props = {} & Pick<BaseHeaderProps, "avatar" | "title" | "description" | "primaryAction" | "secondaryActions" | "otherActions" | "metadata" | "status" | "deactivated">;
6967
+ declare type Props = {} & Pick<BaseHeaderProps, "avatar" | "title" | "description" | "primaryAction" | "secondaryActions" | "otherActions" | "metadata" | "status" | "deactivated" | "showBottomBorder">;
6957
6968
 
6958
6969
  declare type Props_10<Id extends string | number = string | number> = {
6959
6970
  items: Omit<WidgetSimpleListItemProps<Id>, "onClick">[];
@@ -7148,7 +7159,7 @@ export declare type ResolvedRecordType<R> = R extends RecordType ? R : RecordTyp
7148
7159
  /**
7149
7160
  * @experimental This is an experimental component use it at your own risk
7150
7161
  */
7151
- export declare const ResourceHeader: ({ avatar, title, description, primaryAction, secondaryActions, otherActions, status, metadata, deactivated, }: Props) => JSX_2.Element;
7162
+ export declare const ResourceHeader: ({ avatar, title, description, primaryAction, secondaryActions, otherActions, status, metadata, deactivated, showBottomBorder, }: Props) => JSX_2.Element;
7152
7163
 
7153
7164
  export declare type ResourceHeaderProps = Props;
7154
7165
 
@@ -8672,11 +8683,16 @@ declare module "gridstack" {
8672
8683
  }
8673
8684
 
8674
8685
 
8686
+ declare namespace Calendar {
8687
+ var displayName: string;
8688
+ }
8689
+
8690
+
8675
8691
  declare module "@tiptap/core" {
8676
8692
  interface Commands<ReturnType> {
8677
- aiBlock: {
8678
- insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
8679
- executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
8693
+ enhanceHighlight: {
8694
+ setEnhanceHighlight: (from: number, to: number) => ReturnType;
8695
+ clearEnhanceHighlight: () => ReturnType;
8680
8696
  };
8681
8697
  }
8682
8698
  }
@@ -8684,9 +8700,9 @@ declare module "@tiptap/core" {
8684
8700
 
8685
8701
  declare module "@tiptap/core" {
8686
8702
  interface Commands<ReturnType> {
8687
- enhanceHighlight: {
8688
- setEnhanceHighlight: (from: number, to: number) => ReturnType;
8689
- clearEnhanceHighlight: () => ReturnType;
8703
+ aiBlock: {
8704
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
8705
+ executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
8690
8706
  };
8691
8707
  }
8692
8708
  }
@@ -8721,11 +8737,6 @@ declare module "@tiptap/core" {
8721
8737
  }
8722
8738
 
8723
8739
 
8724
- declare namespace Calendar {
8725
- var displayName: string;
8726
- }
8727
-
8728
-
8729
8740
  declare namespace F0GraphNodeWrapperInner {
8730
8741
  var displayName: string;
8731
8742
  }
@@ -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 X, o as be, u as ie, T as pa, p as ba, q as ga, 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 ge, a0 as $e, a1 as Da, a2 as bt, 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 Xa, az as Ja, aA as Qa, aB as er, aC as tr, aD as nr, aE as lt, aF as it, aG as bn, aH as ar, aI as rr, aJ as lr, aK as ir, aL as Ue, aM as gt, aN as gn, aO as sr, aP as xn, aQ as or, aR as cr, aS as dr, aT as Ee, aU as ur, aV as Te, aW as Lt, aX as st, aY as fr, aZ as mr, a as hr, b as pr, a_ as vn, a$ as br, f as gr, F as xr, b0 as wn, b1 as vr, b2 as yn, b3 as wr, b4 as yr, b5 as Nr, b6 as Cr, b7 as kr, b8 as Sr, b9 as Ir, ba as Fr, bb as Ar, bc as Nn, bd as ue, be as xt, bf as vt, bg as wt, bh as Cn, bi as yt, bj as kn, bk as Sn, bl as Lr, bm as Er, bn as _r, bo as Or, bp as Dr, bq as Tr, br as zr, bs as Pr, bt as Br, bu as Rr, bv as Et, bw as _t, bx as Ot, by as $r, bz as Wr, bA as Mr, bB as jr, bC as In, bD as Vr, bE as Gr } from "./F0CanvasPanel-EblUp6hE.js";
2
- import { bQ as Lc, bP as Ec, c0 as _c, bM as Oc, bN as Dc, bF as Tc, bG as zc, bH as Pc, c1 as Bc, bO as Rc, bY as $c, bZ as Wc, bI as Mc, bS as jc, bR as Vc, bJ as Gc, bK as Hc, b_ as Uc, c2 as Kc, b$ as qc, bX as Yc, bU as Zc, bW as Xc, bT as Jc, bL as Qc, bV as ed } from "./F0CanvasPanel-EblUp6hE.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 X, o as be, u as ie, T as pa, p as ba, q as ga, 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 ge, a0 as $e, a1 as Da, a2 as bt, 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 Xa, az as Ja, aA as Qa, aB as er, aC as tr, aD as nr, aE as lt, aF as it, aG as bn, aH as ar, aI as rr, aJ as lr, aK as ir, aL as Ue, aM as gt, aN as gn, aO as sr, aP as xn, aQ as or, aR as cr, aS as dr, aT as Ee, aU as ur, aV as Te, aW as Lt, aX as st, aY as fr, aZ as mr, a as hr, b as pr, a_ as vn, a$ as br, f as gr, F as xr, b0 as wn, b1 as vr, b2 as yn, b3 as wr, b4 as yr, b5 as Nr, b6 as Cr, b7 as kr, b8 as Sr, b9 as Ir, ba as Fr, bb as Ar, bc as Nn, bd as ue, be as xt, bf as vt, bg as wt, bh as Cn, bi as yt, bj as kn, bk as Sn, bl as Lr, bm as Er, bn as _r, bo as Or, bp as Dr, bq as Tr, br as zr, bs as Pr, bt as Br, bu as Rr, bv as Et, bw as _t, bx as Ot, by as $r, bz as Wr, bA as Mr, bB as jr, bC as In, bD as Vr, bE as Gr } from "./F0CanvasPanel-CzqKtOrT.js";
2
+ import { bQ as Lc, bP as Ec, c0 as _c, bM as Oc, bN as Dc, bF as Tc, bG as zc, bH as Pc, c1 as Bc, bO as Rc, bY as $c, bZ as Wc, bI as Mc, bS as jc, bR as Vc, bJ as Gc, bK as Hc, b_ as Uc, c2 as Kc, b$ as qc, bX as Yc, bU as Zc, bW as Xc, bT as Jc, bL as Qc, bV as ed } from "./F0CanvasPanel-CzqKtOrT.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 Hr, useState as _, useLayoutEffect as Fn, useId as ot, useContext as Ke, createContext as Nt, useEffect as $, useCallback as Q, useMemo as q, Fragment as Ur, isValidElement as Kr, cloneElement as An, Children as Ln } from "react";
5
- import { C as qr, P as Yr, g as En, c as Zr, a as _n, F as ct, f as Xr, M as Jr, b as Qr, R as Dt, d as On, u as el, e as Dn, S as tl, A as nl, B as al, L as rl, h as ll, V as il, i as sl, j as Tt, k as ol, l as cl, O as dl } from "./useDataCollectionSource-BkSLdJZC.js";
6
- import { r as nd, s as ad, p as rd, H as ld, t as id, z as sd, a9 as od, G as cd, q as dd, Q as ud, o as fd, Y as md, U as hd, J as pd, af as bd, K as gd, Z as xd, _ as vd, v as wd, ab as yd, ac as Nd, aa as Cd, ad as kd, N as Sd, $ as Id, a6 as Fd, a8 as Ad, w as Ld, y as Ed, D as _d, W as Od, ae as Dd, X as Td, T as zd, x as Pd, E as Bd, m as Rd, n as $d, a1 as Wd, a2 as Md, a7 as jd, I as Vd, a3 as Gd, a4 as Hd, a0 as Ud, a5 as Kd } from "./useDataCollectionSource-BkSLdJZC.js";
5
+ import { C as qr, P as Yr, g as En, c as Zr, a as _n, F as ct, f as Xr, M as Jr, b as Qr, R as Dt, d as On, u as el, e as Dn, S as tl, A as nl, B as al, L as rl, h as ll, V as il, i as sl, j as Tt, k as ol, l as cl, O as dl } from "./useDataCollectionSource-Bp6MCLzM.js";
6
+ import { r as nd, s as ad, p as rd, H as ld, t as id, z as sd, a9 as od, G as cd, q as dd, Q as ud, o as fd, Y as md, U as hd, J as pd, af as bd, K as gd, Z as xd, _ as vd, v as wd, ab as yd, ac as Nd, aa as Cd, ad as kd, N as Sd, $ as Id, a6 as Fd, a8 as Ad, w as Ld, y as Ed, D as _d, W as Od, ae as Dd, X as Td, T as zd, x as Pd, E as Bd, m as Rd, n as $d, a1 as Wd, a2 as Md, a7 as jd, I as Vd, a3 as Gd, a4 as Hd, a0 as Ud, a5 as Kd } from "./useDataCollectionSource-Bp6MCLzM.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
@@ -1423,7 +1423,7 @@ declare type BaseFilterDefinition<T extends FilterTypeKey> = {
1423
1423
  hideSelector?: boolean;
1424
1424
  };
1425
1425
 
1426
- declare function BaseHeader({ title, avatar, deactivated, description, primaryAction, secondaryActions, otherActions, status, metadata, }: BaseHeaderProps_2): JSX_2.Element;
1426
+ declare function BaseHeader({ title, avatar, deactivated, description, primaryAction, secondaryActions, otherActions, status, metadata, showBottomBorder, }: BaseHeaderProps_2): JSX_2.Element;
1427
1427
 
1428
1428
  declare type BaseHeaderProps = ComponentProps<typeof BaseHeader>;
1429
1429
 
@@ -1448,6 +1448,8 @@ declare interface BaseHeaderProps_2 {
1448
1448
  actions?: MetadataAction[];
1449
1449
  };
1450
1450
  metadata?: MetadataProps["items"];
1451
+ /** Renders a 1px bottom border at the very bottom of the header. */
1452
+ showBottomBorder?: boolean;
1451
1453
  }
1452
1454
 
1453
1455
  /**
@@ -1749,6 +1751,10 @@ declare type ButtonInternalProps = Pick<ActionProps, "size" | "disabled" | "clas
1749
1751
  * Adds an icon to the button, combined with the label for better clarity and recognition.
1750
1752
  */
1751
1753
  icon?: IconType;
1754
+ /**
1755
+ * Sets the side of the label the icon is placed on. Defaults to "left".
1756
+ */
1757
+ iconPosition?: "left" | "right";
1752
1758
  /**
1753
1759
  * Adds an emoji to the button, can be used as a special case of icon-only button.
1754
1760
  */
@@ -7555,6 +7561,7 @@ declare type F0DialogContextType = {
7555
7561
  export declare type F0DialogPrimaryAction = {
7556
7562
  label: string;
7557
7563
  icon?: IconType;
7564
+ iconPosition?: "left" | "right";
7558
7565
  onClick: () => void;
7559
7566
  disabled?: boolean;
7560
7567
  loading?: boolean;
@@ -7576,6 +7583,7 @@ declare type F0DialogProviderProps = {
7576
7583
  export declare type F0DialogSecondaryAction = {
7577
7584
  label: string;
7578
7585
  icon?: IconType;
7586
+ iconPosition?: "left" | "right";
7579
7587
  onClick: () => void;
7580
7588
  disabled?: boolean;
7581
7589
  loading?: boolean;
@@ -11499,6 +11507,11 @@ declare interface MetadataItem {
11499
11507
  value: MetadataItemValue;
11500
11508
  actions?: (MetadataAction | MetadataCopyAction)[];
11501
11509
  hideLabel?: boolean;
11510
+ /**
11511
+ * Optional leading icon shown before the label/value. Useful when the icon itself
11512
+ * conveys the field (e.g. with `hideLabel`), so the item reads as "icon + value".
11513
+ */
11514
+ icon?: IconType;
11502
11515
  /**
11503
11516
  * Optional info text. When provided, displays an info icon next to the label
11504
11517
  * that shows this text in a tooltip when hovered.
@@ -12771,7 +12784,7 @@ declare type Props_3 = {
12771
12784
  list?: TagCounterItem[];
12772
12785
  };
12773
12786
 
12774
- declare type Props_4 = {} & Pick<BaseHeaderProps, "avatar" | "title" | "description" | "primaryAction" | "secondaryActions" | "otherActions" | "metadata" | "status" | "deactivated">;
12787
+ declare type Props_4 = {} & Pick<BaseHeaderProps, "avatar" | "title" | "description" | "primaryAction" | "secondaryActions" | "otherActions" | "metadata" | "status" | "deactivated" | "showBottomBorder">;
12775
12788
 
12776
12789
  export declare type QuestionActionParams = {
12777
12790
  questionId: string;
@@ -15396,11 +15409,16 @@ declare module "gridstack" {
15396
15409
  }
15397
15410
 
15398
15411
 
15412
+ declare namespace Calendar {
15413
+ var displayName: string;
15414
+ }
15415
+
15416
+
15399
15417
  declare module "@tiptap/core" {
15400
15418
  interface Commands<ReturnType> {
15401
- aiBlock: {
15402
- insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
15403
- executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
15419
+ enhanceHighlight: {
15420
+ setEnhanceHighlight: (from: number, to: number) => ReturnType;
15421
+ clearEnhanceHighlight: () => ReturnType;
15404
15422
  };
15405
15423
  }
15406
15424
  }
@@ -15408,9 +15426,9 @@ declare module "@tiptap/core" {
15408
15426
 
15409
15427
  declare module "@tiptap/core" {
15410
15428
  interface Commands<ReturnType> {
15411
- enhanceHighlight: {
15412
- setEnhanceHighlight: (from: number, to: number) => ReturnType;
15413
- clearEnhanceHighlight: () => ReturnType;
15429
+ aiBlock: {
15430
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
15431
+ executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
15414
15432
  };
15415
15433
  }
15416
15434
  }
@@ -15445,11 +15463,6 @@ declare module "@tiptap/core" {
15445
15463
  }
15446
15464
 
15447
15465
 
15448
- declare namespace Calendar {
15449
- var displayName: string;
15450
- }
15451
-
15452
-
15453
15466
  declare namespace F0GraphNodeWrapperInner {
15454
15467
  var displayName: string;
15455
15468
  }
package/dist/f0.js CHANGED
@@ -1,13 +1,13 @@
1
- import { du as dk, a6 as yt, bd as Dg, m as ce, o as Pa, f$ as hk, n as Hs, eH as C3, ac as go, g2 as T3, ad as Ew, S as oe, u as tt, C as dt, cY as Vu, A as vk, i as D3, H as Wv, cK as yu, a7 as kr, a3 as gd, g3 as A3, g4 as Xb, g5 as M3, g6 as E3, g7 as eT, dQ as L3, g8 as N3, g9 as pk, ga as I3, M as pt, aX as k3, aL as R3, b8 as P3, dM as tT, s as Fu, a1 as Lw, a2 as Ws, b9 as O3, fh as B3, aB as Nw, aC as Iw, aD as kw, aj as gk, c0 as Uv, dv as mk, gb as V3, fl as F3, aF as yk, de as z3, br as G3, aV as bk, Y as zu, gc as H3, ae as W3, gd as Rw, ge as rT, ff as U3, gf as $3, gg as Y3, gh as X3, W as Pw, dN as bu, bH as Ow, dK as q3, dp as Bw, at as ou, bI as xk, d5 as Vw, b6 as Us, a8 as Bn, ao as Z3, cz as qb, cy as _k, gi as Ag, d6 as Fw, fR as j3, a0 as wk, fe as K3, by as Q3, ab as Mg, dG as J3, dH as eH, dI as tH, c as rH, er as nH, z as Sk, cF as rl, dm as Ck, bB as zw, E as Eg, G as Lg, cp as Gw, L as Ng, V as Ar, X as xu, fx as su, fy as lu, K as uu, fz as cu, fv as iH, fw as io, cs as Tk, aq as aH, d3 as $v, gj as on, aA as oH, d9 as Dk, d8 as Ak, gk as sH, aN as Mk, aT as lH, dC as uH, dD as cH, dw as fH, be as Gu, bi as Hu, bp as md, dq as dH, bf as hH, b0 as vH, N as Ek, b7 as pH, _ as gH, d0 as nT, dl as Pf, fi as mH, fj as yH, gl as bH, aS as xH, bj as _H, cI as Lk, a4 as wH, cx as SH, g0 as CH, gm as TH, gn as DH, I as AH, go as MH, gp as EH, gq as LH, gr as NH } from "./F0CanvasPanel-EblUp6hE.js";
2
- import { gA as Dme, D as Ame, aM as Mme, F as Eme, a as Lme, e as Nme, b1 as Ime, bs as kme, bc as Rme, ai as Pme, dP as Ome, ar as Bme, bF as Vme, f as Fme, dJ as zme, dy as Gme, gE as Hme, d as Wme, bG as Ume, bk as $me, gv as Yme, aZ as Xme, gw as qme, gy as Zme, gz as jme, c1 as Kme, gB as Qme, bY as Jme, bZ as eye, P as tye, gx as rye, b_ as nye, gF as iye, gs as aye, gt as oye, gu as sye, b$ as lye, gD as uye, fS as cye, gC as fye, aQ as dye, bX as hye, bU as vye, bW as pye, bT as gye, fU as mye, fO as yye, bL as bye, bV as xye, b as _ye, fN as wye, g1 as Sye, aO as Cye, dt as Tye, fQ as Dye, fP as Aye, gG as Mye } from "./F0CanvasPanel-EblUp6hE.js";
1
+ import { du as dk, a6 as yt, bd as Dg, m as ce, o as Pa, f$ as hk, n as Hs, eH as C3, ac as go, g2 as T3, ad as Ew, S as oe, u as tt, C as dt, cY as Vu, A as vk, i as D3, H as Wv, cK as yu, a7 as kr, a3 as gd, g3 as A3, g4 as Xb, g5 as M3, g6 as E3, g7 as eT, dQ as L3, g8 as N3, g9 as pk, ga as I3, M as pt, aX as k3, aL as R3, b8 as P3, dM as tT, s as Fu, a1 as Lw, a2 as Ws, b9 as O3, fh as B3, aB as Nw, aC as Iw, aD as kw, aj as gk, c0 as Uv, dv as mk, gb as V3, fl as F3, aF as yk, de as z3, br as G3, aV as bk, Y as zu, gc as H3, ae as W3, gd as Rw, ge as rT, ff as U3, gf as $3, gg as Y3, gh as X3, W as Pw, dN as bu, bH as Ow, dK as q3, dp as Bw, at as ou, bI as xk, d5 as Vw, b6 as Us, a8 as Bn, ao as Z3, cz as qb, cy as _k, gi as Ag, d6 as Fw, fR as j3, a0 as wk, fe as K3, by as Q3, ab as Mg, dG as J3, dH as eH, dI as tH, c as rH, er as nH, z as Sk, cF as rl, dm as Ck, bB as zw, E as Eg, G as Lg, cp as Gw, L as Ng, V as Ar, X as xu, fx as su, fy as lu, K as uu, fz as cu, fv as iH, fw as io, cs as Tk, aq as aH, d3 as $v, gj as on, aA as oH, d9 as Dk, d8 as Ak, gk as sH, aN as Mk, aT as lH, dC as uH, dD as cH, dw as fH, be as Gu, bi as Hu, bp as md, dq as dH, bf as hH, b0 as vH, N as Ek, b7 as pH, _ as gH, d0 as nT, dl as Pf, fi as mH, fj as yH, gl as bH, aS as xH, bj as _H, cI as Lk, a4 as wH, cx as SH, g0 as CH, gm as TH, gn as DH, I as AH, go as MH, gp as EH, gq as LH, gr as NH } from "./F0CanvasPanel-CzqKtOrT.js";
2
+ import { gA as Dme, D as Ame, aM as Mme, F as Eme, a as Lme, e as Nme, b1 as Ime, bs as kme, bc as Rme, ai as Pme, dP as Ome, ar as Bme, bF as Vme, f as Fme, dJ as zme, dy as Gme, gE as Hme, d as Wme, bG as Ume, bk as $me, gv as Yme, aZ as Xme, gw as qme, gy as Zme, gz as jme, c1 as Kme, gB as Qme, bY as Jme, bZ as eye, P as tye, gx as rye, b_ as nye, gF as iye, gs as aye, gt as oye, gu as sye, b$ as lye, gD as uye, fS as cye, gC as fye, aQ as dye, bX as hye, bU as vye, bW as pye, bT as gye, fU as mye, fO as yye, bL as bye, bV as xye, b as _ye, fN as wye, g1 as Sye, aO as Cye, dt as Tye, fQ as Dye, fP as Aye, gG as Mye } from "./F0CanvasPanel-CzqKtOrT.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 IH, 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 Nk, Fragment as Ig, memo as Ik, useReducer as kH, cloneElement as RH, useId as kg } from "react";
6
- import { z as PH, B as OH, U as iT, D as aT, E as $m, G as oT, H as BH, I as Oa, J as nl, K as VH, L as Hw, M as Rr, N as fi, O as FH, P as zH, Q as kk, Z as Ho, R as GH, S as HH, T as WH, V as Rk, W as Xv, X as Ww, Y as Pk, _ as Ok, $ as pn, a0 as UH, a1 as $H, a2 as Bk, a3 as Rg, a4 as YH, a5 as XH, a6 as Vk, a7 as qH, a8 as ZH, a9 as jH, aa as KH, ab as QH, ac as JH, F as eW } from "./useChatHistory-6qTtYcQc.js";
7
- import { A as Lye, C as Nye, h as Iye, t as kye, v as Rye, x as Pye, ah as Oye, n as Bye, j as Vye, r as Fye, y as zye, q as Gye, s as Hye, k as Wye, e as Uye, g as $ye, l as Yye, i as Xye, a as qye, p as Zye, ai as jye, af as Kye, ae as Qye, ag as Jye, m as e0e, o as t0e, ad as r0e, b as n0e, f as i0e, w as a0e, c as o0e, d as s0e, u as l0e } from "./useChatHistory-6qTtYcQc.js";
6
+ import { z as PH, B as OH, U as iT, D as aT, E as $m, G as oT, H as BH, I as Oa, J as nl, K as VH, L as Hw, M as Rr, N as fi, O as FH, P as zH, Q as kk, Z as Ho, R as GH, S as HH, T as WH, V as Rk, W as Xv, X as Ww, Y as Pk, _ as Ok, $ as pn, a0 as UH, a1 as $H, a2 as Bk, a3 as Rg, a4 as YH, a5 as XH, a6 as Vk, a7 as qH, a8 as ZH, a9 as jH, aa as KH, ab as QH, ac as JH, F as eW } from "./useChatHistory-CyCXSXX9.js";
7
+ import { A as Lye, C as Nye, h as Iye, t as kye, v as Rye, x as Pye, ah as Oye, n as Bye, j as Vye, r as Fye, y as zye, q as Gye, s as Hye, k as Wye, e as Uye, g as $ye, l as Yye, i as Xye, a as qye, p as Zye, ai as jye, af as Kye, ae as Qye, ag as Jye, m as e0e, o as t0e, ad as r0e, b as n0e, f as i0e, w as a0e, c as o0e, d as s0e, u as l0e } from "./useChatHistory-CyCXSXX9.js";
8
8
  import { createPortal as Fk, unstable_batchedUpdates as qd, flushSync as tW } from "react-dom";
9
- import { C as rW, o as nW, G as jb, H as zk, ag as Gk, Q as Hk, ae as iW, U as aW, X as Wk, Y as Uw, ah as $w, a9 as oW, ai as sW, aj as lW, d as Pg, ak as uW, R as Yw, u as Xw, W as Uk, O as qw, al as $k, am as Zw, p as cW, a4 as Yk, $ as Xk, an as fW, ao as dW, ap as hW, aq as vW, ar as pW, M as gW } from "./useDataCollectionSource-BkSLdJZC.js";
10
- import { r as c0e, s as f0e, t as d0e, z as h0e, at as v0e, F as p0e, J as g0e, af as m0e, K as y0e, v as b0e, ab as x0e, ac as _0e, aa as w0e, ad as S0e, N as C0e, w as T0e, P as D0e, y as A0e, D as M0e, T as E0e, x as L0e, E as N0e, m as I0e, n as k0e, as as R0e, a7 as P0e, I as O0e, au as B0e, av as V0e, aw as F0e, e as z0e } from "./useDataCollectionSource-BkSLdJZC.js";
9
+ import { C as rW, o as nW, G as jb, H as zk, ag as Gk, Q as Hk, ae as iW, U as aW, X as Wk, Y as Uw, ah as $w, a9 as oW, ai as sW, aj as lW, d as Pg, ak as uW, R as Yw, u as Xw, W as Uk, O as qw, al as $k, am as Zw, p as cW, a4 as Yk, $ as Xk, an as fW, ao as dW, ap as hW, aq as vW, ar as pW, M as gW } from "./useDataCollectionSource-Bp6MCLzM.js";
10
+ import { r as c0e, s as f0e, t as d0e, z as h0e, at as v0e, F as p0e, J as g0e, af as m0e, K as y0e, v as b0e, ab as x0e, ac as _0e, aa as w0e, ad as S0e, N as C0e, w as T0e, P as D0e, y as A0e, D as M0e, T as E0e, x as L0e, E as N0e, m as I0e, n as k0e, as as R0e, a7 as P0e, I as O0e, au as B0e, av as V0e, aw as F0e, e as z0e } from "./useDataCollectionSource-Bp6MCLzM.js";
11
11
  import { utils as fu, write as qk } from "./xlsx-Bedf3nwD.js";
12
12
  import { defaultTranslations as H0e } from "./i18n-provider-defaults.js";
13
13
  import './f0.css';const mW = {
@@ -842,11 +842,16 @@ declare module "gridstack" {
842
842
  }
843
843
 
844
844
 
845
+ declare namespace Calendar {
846
+ var displayName: string;
847
+ }
848
+
849
+
845
850
  declare module "@tiptap/core" {
846
851
  interface Commands<ReturnType> {
847
- aiBlock: {
848
- insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
849
- executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
852
+ enhanceHighlight: {
853
+ setEnhanceHighlight: (from: number, to: number) => ReturnType;
854
+ clearEnhanceHighlight: () => ReturnType;
850
855
  };
851
856
  }
852
857
  }
@@ -854,9 +859,9 @@ declare module "@tiptap/core" {
854
859
 
855
860
  declare module "@tiptap/core" {
856
861
  interface Commands<ReturnType> {
857
- enhanceHighlight: {
858
- setEnhanceHighlight: (from: number, to: number) => ReturnType;
859
- clearEnhanceHighlight: () => ReturnType;
862
+ aiBlock: {
863
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
864
+ executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
860
865
  };
861
866
  }
862
867
  }
@@ -891,11 +896,6 @@ declare module "@tiptap/core" {
891
896
  }
892
897
 
893
898
 
894
- declare namespace Calendar {
895
- var displayName: string;
896
- }
897
-
898
-
899
899
  declare namespace F0GraphNodeWrapperInner {
900
900
  var displayName: string;
901
901
  }