@factorialco/f0-react 4.60.1 → 4.61.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/{ChatPdfThumbnail-C6f0btcZ.js → ChatPdfThumbnail-DduRbhCq.js} +1 -1
- package/dist/{DocumentToolbar-D5RFd-m2.js → DocumentToolbar-BP2OdGIL.js} +1 -1
- package/dist/{DocxViewer-YbJWweNA.js → DocxViewer-vVS2WHK4.js} +1 -1
- package/dist/{SheetViewer-JzdSM-Xt.js → SheetViewer-B3QtS9JS.js} +1 -1
- package/dist/{TextViewer-GEPi8xxX.js → TextViewer-CWjZ3iBC.js} +1 -1
- package/dist/ai.d.ts +8 -8
- package/dist/component-status.d.ts +8 -8
- package/dist/component-status.js +1 -1
- package/dist/experimental.d.ts +25 -9
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +25 -9
- package/dist/f0.js +4 -4
- package/dist/i18n-provider-defaults.d.ts +8 -8
- package/dist/{index-BjppyLWI.js → index-BfXb0pT1.js} +2 -2
- package/dist/{index-B00tg7uM.js → index-oBF86Fzo.js} +7117 -7070
- package/dist/{pdfWorker-DGnb8wYm.js → pdfWorker-BRFX1gbJ.js} +1 -1
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -9321,12 +9321,28 @@ declare type SearchOptions = {
|
|
|
9321
9321
|
* result calls `onSelect` (e.g. the graph view reveals/centers the node).
|
|
9322
9322
|
*/
|
|
9323
9323
|
export declare type SearchPreview<R extends RecordType> = {
|
|
9324
|
-
|
|
9324
|
+
/**
|
|
9325
|
+
* Fetch one page of matches for `query`. `page` starts at 0 and increments as
|
|
9326
|
+
* the user scrolls the dropdown to the bottom; it is optional so existing
|
|
9327
|
+
* non-paginated consumers keep the plain `(query) => Promise<R[]>` shape.
|
|
9328
|
+
* Return a bare array for a single, non-paginated page (treated as
|
|
9329
|
+
* `hasMore: false`), or a `SearchPreviewPage` to drive infinite scroll.
|
|
9330
|
+
*/
|
|
9331
|
+
search: (query: string, page?: number) => Promise<R[] | SearchPreviewPage<R>>;
|
|
9325
9332
|
getId: (record: R) => string;
|
|
9326
9333
|
render: (record: R) => SearchPreviewResultData;
|
|
9327
9334
|
onSelect: (record: R) => void;
|
|
9328
9335
|
};
|
|
9329
9336
|
|
|
9337
|
+
/**
|
|
9338
|
+
* One page of search-preview results. `hasMore` tells the dropdown whether to
|
|
9339
|
+
* keep pulling further pages as the user scrolls (infinite scroll).
|
|
9340
|
+
*/
|
|
9341
|
+
export declare type SearchPreviewPage<R extends RecordType> = {
|
|
9342
|
+
records: R[];
|
|
9343
|
+
hasMore: boolean;
|
|
9344
|
+
};
|
|
9345
|
+
|
|
9330
9346
|
/** Data shown for a single row of the search preview dropdown. */
|
|
9331
9347
|
export declare type SearchPreviewResultData = {
|
|
9332
9348
|
avatar?: AvatarVariant;
|
|
@@ -11527,9 +11543,11 @@ declare namespace Calendar {
|
|
|
11527
11543
|
|
|
11528
11544
|
declare module "@tiptap/core" {
|
|
11529
11545
|
interface Commands<ReturnType> {
|
|
11530
|
-
|
|
11531
|
-
|
|
11532
|
-
|
|
11546
|
+
enhanceHighlight: {
|
|
11547
|
+
setEnhanceHighlight: (from: number, to: number, options?: {
|
|
11548
|
+
placeholder?: string;
|
|
11549
|
+
}) => ReturnType;
|
|
11550
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
11533
11551
|
};
|
|
11534
11552
|
}
|
|
11535
11553
|
}
|
|
@@ -11537,11 +11555,9 @@ declare module "@tiptap/core" {
|
|
|
11537
11555
|
|
|
11538
11556
|
declare module "@tiptap/core" {
|
|
11539
11557
|
interface Commands<ReturnType> {
|
|
11540
|
-
|
|
11541
|
-
|
|
11542
|
-
|
|
11543
|
-
}) => ReturnType;
|
|
11544
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
11558
|
+
aiBlock: {
|
|
11559
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
11560
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
11545
11561
|
};
|
|
11546
11562
|
}
|
|
11547
11563
|
}
|
package/dist/experimental.js
CHANGED
|
@@ -3,8 +3,8 @@ import { cL as R0, cK as E0, cX as L0, cH as z0, cI as A0, cB as F0, cC as P0, c
|
|
|
3
3
|
import { jsx as n, jsxs as m, Fragment as De } from "react/jsx-runtime";
|
|
4
4
|
import Q, { forwardRef as Ae, useRef as _, useTransition as zd, useState as $, useLayoutEffect as ar, useId as Ur, useContext as Nt, createContext as st, useEffect as te, useCallback as K, useMemo as he, Fragment as Rt, isValidElement as Ad, cloneElement as Pa, Suspense as bo, lazy as tn, createElement as Mn, memo as Ma, Children as Oa } from "react";
|
|
5
5
|
import { d as S, T as Fd, a as Pd, b as Md, f as Je, c as Od } from "./tooltip-BH6Se8A4.js";
|
|
6
|
-
import { C as Dd, P as Bd, a as Nn, M as _d, p as Hd, b as $d, R as Yo, c as Da, u as Wd, e as jd, f as Vd, g as Ud, h as Gd, i as Kd, O as Ba, j as _a, S as qd, A as Yd, B as Xd, L as Qd, k as Jd, V as Zd, l as eu, m as tu, n as nu } from "./index-
|
|
7
|
-
import { a3 as ix, a4 as ax, t as sx, v as lx, r as cx, J as dx, w as ux, E as fx, ae as hx, I as mx, s as px, a1 as gx, ag as bx, af as vx, U as xx, aj as yx, F as wx, _ as Nx, X as Cx, N as Ix, al as Sx, Q as kx, $ as Tx, a0 as Rx, x as Ex, ah as Lx, ai as zx, T as Ax, a2 as Fx, ab as Px, ad as Mx, y as Ox, D as Dx, G as Bx, Y as _x, ak as Hx, Z as $x, W as Wx, am as jx, z as Vx, H as Ux, o as Gx, q as Kx, a7 as qx, a8 as Yx, a5 as Xx, ac as Qx, K as Jx, a9 as Zx, a6 as e1, aa as t1 } from "./index-
|
|
6
|
+
import { C as Dd, P as Bd, a as Nn, M as _d, p as Hd, b as $d, R as Yo, c as Da, u as Wd, e as jd, f as Vd, g as Ud, h as Gd, i as Kd, O as Ba, j as _a, S as qd, A as Yd, B as Xd, L as Qd, k as Jd, V as Zd, l as eu, m as tu, n as nu } from "./index-oBF86Fzo.js";
|
|
7
|
+
import { a3 as ix, a4 as ax, t as sx, v as lx, r as cx, J as dx, w as ux, E as fx, ae as hx, I as mx, s as px, a1 as gx, ag as bx, af as vx, U as xx, aj as yx, F as wx, _ as Nx, X as Cx, N as Ix, al as Sx, Q as kx, $ as Tx, a0 as Rx, x as Ex, ah as Lx, ai as zx, T as Ax, a2 as Fx, ab as Px, ad as Mx, y as Ox, D as Dx, G as Bx, Y as _x, ak as Hx, Z as $x, W as Wx, am as jx, z as Vx, H as Ux, o as Gx, q as Kx, a7 as qx, a8 as Yx, a5 as Xx, ac as Qx, K as Jx, a9 as Zx, a6 as e1, aa as t1 } from "./index-oBF86Fzo.js";
|
|
8
8
|
import ru from "react-dom";
|
|
9
9
|
const ou = Sl("Search", [
|
|
10
10
|
["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }],
|
|
@@ -8425,7 +8425,7 @@ const $h = {
|
|
|
8425
8425
|
] })
|
|
8426
8426
|
] }) });
|
|
8427
8427
|
}, Jh = tn(
|
|
8428
|
-
() => import("./index-
|
|
8428
|
+
() => import("./index-BfXb0pT1.js").then((e) => e.i).then((e) => ({
|
|
8429
8429
|
default: e.F0PdfViewer
|
|
8430
8430
|
}))
|
|
8431
8431
|
), Zh = () => {
|
|
@@ -12641,7 +12641,7 @@ const Wp = (e) => {
|
|
|
12641
12641
|
}
|
|
12642
12642
|
)
|
|
12643
12643
|
] });
|
|
12644
|
-
}, Jp = tn(() => import("./ChatPdfThumbnail-
|
|
12644
|
+
}, Jp = tn(() => import("./ChatPdfThumbnail-DduRbhCq.js")), Zp = tn(() => import("./ChatSheetThumbnail-BvnxT-4A.js")), eg = tn(() => import("./ChatDocxThumbnail-DzNPNFya.js")), tg = tn(() => import("./ChatTextThumbnail-yVt_iYi7.js")), Fr = 288, ng = 160, rg = (e) => {
|
|
12645
12645
|
const [t, r] = $(!1);
|
|
12646
12646
|
return te(() => {
|
|
12647
12647
|
const o = e.current;
|
package/dist/f0.d.ts
CHANGED
|
@@ -16013,12 +16013,28 @@ declare type SearchOptions = {
|
|
|
16013
16013
|
* result calls `onSelect` (e.g. the graph view reveals/centers the node).
|
|
16014
16014
|
*/
|
|
16015
16015
|
declare type SearchPreview<R extends RecordType> = {
|
|
16016
|
-
|
|
16016
|
+
/**
|
|
16017
|
+
* Fetch one page of matches for `query`. `page` starts at 0 and increments as
|
|
16018
|
+
* the user scrolls the dropdown to the bottom; it is optional so existing
|
|
16019
|
+
* non-paginated consumers keep the plain `(query) => Promise<R[]>` shape.
|
|
16020
|
+
* Return a bare array for a single, non-paginated page (treated as
|
|
16021
|
+
* `hasMore: false`), or a `SearchPreviewPage` to drive infinite scroll.
|
|
16022
|
+
*/
|
|
16023
|
+
search: (query: string, page?: number) => Promise<R[] | SearchPreviewPage<R>>;
|
|
16017
16024
|
getId: (record: R) => string;
|
|
16018
16025
|
render: (record: R) => SearchPreviewResultData;
|
|
16019
16026
|
onSelect: (record: R) => void;
|
|
16020
16027
|
};
|
|
16021
16028
|
|
|
16029
|
+
/**
|
|
16030
|
+
* One page of search-preview results. `hasMore` tells the dropdown whether to
|
|
16031
|
+
* keep pulling further pages as the user scrolls (infinite scroll).
|
|
16032
|
+
*/
|
|
16033
|
+
declare type SearchPreviewPage<R extends RecordType> = {
|
|
16034
|
+
records: R[];
|
|
16035
|
+
hasMore: boolean;
|
|
16036
|
+
};
|
|
16037
|
+
|
|
16022
16038
|
/** Data shown for a single row of the search preview dropdown. */
|
|
16023
16039
|
declare type SearchPreviewResultData = {
|
|
16024
16040
|
avatar?: AvatarVariant;
|
|
@@ -18722,9 +18738,11 @@ declare namespace Calendar {
|
|
|
18722
18738
|
|
|
18723
18739
|
declare module "@tiptap/core" {
|
|
18724
18740
|
interface Commands<ReturnType> {
|
|
18725
|
-
|
|
18726
|
-
|
|
18727
|
-
|
|
18741
|
+
enhanceHighlight: {
|
|
18742
|
+
setEnhanceHighlight: (from: number, to: number, options?: {
|
|
18743
|
+
placeholder?: string;
|
|
18744
|
+
}) => ReturnType;
|
|
18745
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
18728
18746
|
};
|
|
18729
18747
|
}
|
|
18730
18748
|
}
|
|
@@ -18732,11 +18750,9 @@ declare module "@tiptap/core" {
|
|
|
18732
18750
|
|
|
18733
18751
|
declare module "@tiptap/core" {
|
|
18734
18752
|
interface Commands<ReturnType> {
|
|
18735
|
-
|
|
18736
|
-
|
|
18737
|
-
|
|
18738
|
-
}) => ReturnType;
|
|
18739
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
18753
|
+
aiBlock: {
|
|
18754
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
18755
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
18740
18756
|
};
|
|
18741
18757
|
}
|
|
18742
18758
|
}
|
package/dist/f0.js
CHANGED
|
@@ -7,10 +7,10 @@ import { D as TF, E as DF, G as AF, H as MF, I as rI, J as LF, K as EF, L as NF,
|
|
|
7
7
|
import { A as Eve, C as Nve, t as Ive, s as kve, v as Pve, y as Rve, l as Ove, i as Bve, q as zve, z as Vve, B as Fve, p as Gve, r as Hve, j as Wve, e as Uve, g as $ve, k as Yve, T as Xve, w as qve, h as Zve, a as jve, n as Kve, m as Qve, o as Jve, b as epe, f as tpe, x as rpe, c as npe, d as ipe, u as ape } from "./F0AiProcessingOverlay-DWjggPHl.js";
|
|
8
8
|
import { d as ee, u as ap, g as zF, h as nl, P as pf, i as Zl, j as VF, f as bi } from "./tooltip-BH6Se8A4.js";
|
|
9
9
|
import { createPortal as op } from "react-dom";
|
|
10
|
-
import { C as FF, an as GF, ao as HF, ap as WF, aq as Uw, ar as UF, as as $F, at as YF, au as XF, av as qF, aw as ZF, ax as jF, i as KF, F as aI, ay as QF, az as JF, aA as eG, aB as tG, aC as rG, aD as oI, aE as nG, aF as sp, aG as Ya, aH as iG, aI as U_, aJ as $_, I as aG, aK as oG, aL as ws, aM as sI, aN as sG, aO as lG, aP as uG, aQ as cG, aR as fG, aS as dG, _ as hG, ae as vG, aT as pG, U as gG, aU as mG, aV as yG, c as lp, R as Y_, u as X_, Y as lI, O as q_, aW as uI, aX as $w, aY as Z_, r as bG, e as cI, a2 as fI, aZ as _G, a_ as xG, a$ as wG, b0 as SG, M as CG } from "./index-
|
|
11
|
-
import { t as spe, v as lpe, J as upe, w as cpe, E as fpe, bm as dpe, bl as hpe, bf as vpe, b2 as ppe, b1 as gpe, b3 as mpe, b4 as ype, b6 as bpe, b7 as _pe, ag as xpe, af as wpe, aj as Spe, X as Cpe, N as Tpe, al as Dpe, Q as Ape, x as Mpe, bn as Lpe, ah as Epe, ai as Npe, T as Ipe, y as kpe, P as Ppe, D as Rpe, G as Ope, ak as Bpe, W as zpe, am as Vpe, z as Fpe, H as Gpe, bp as Hpe, o as Wpe, q as Upe, be as $pe, bj as Ype, bj as Xpe, bk as qpe, ba as Zpe, b9 as jpe, bo as Kpe, ac as Qpe, bc as Jpe, bd as ege, K as tge, bq as rge, br as nge, f as ige, bg as age, bh as oge, bi as sge, b5 as lge, bb as uge, g as cge, j as fge, b8 as dge, bs as hge } from "./index-
|
|
12
|
-
import { F as pge, p as gge } from "./index-
|
|
13
|
-
import { c as yge } from "./pdfWorker-
|
|
10
|
+
import { C as FF, an as GF, ao as HF, ap as WF, aq as Uw, ar as UF, as as $F, at as YF, au as XF, av as qF, aw as ZF, ax as jF, i as KF, F as aI, ay as QF, az as JF, aA as eG, aB as tG, aC as rG, aD as oI, aE as nG, aF as sp, aG as Ya, aH as iG, aI as U_, aJ as $_, I as aG, aK as oG, aL as ws, aM as sI, aN as sG, aO as lG, aP as uG, aQ as cG, aR as fG, aS as dG, _ as hG, ae as vG, aT as pG, U as gG, aU as mG, aV as yG, c as lp, R as Y_, u as X_, Y as lI, O as q_, aW as uI, aX as $w, aY as Z_, r as bG, e as cI, a2 as fI, aZ as _G, a_ as xG, a$ as wG, b0 as SG, M as CG } from "./index-oBF86Fzo.js";
|
|
11
|
+
import { t as spe, v as lpe, J as upe, w as cpe, E as fpe, bm as dpe, bl as hpe, bf as vpe, b2 as ppe, b1 as gpe, b3 as mpe, b4 as ype, b6 as bpe, b7 as _pe, ag as xpe, af as wpe, aj as Spe, X as Cpe, N as Tpe, al as Dpe, Q as Ape, x as Mpe, bn as Lpe, ah as Epe, ai as Npe, T as Ipe, y as kpe, P as Ppe, D as Rpe, G as Ope, ak as Bpe, W as zpe, am as Vpe, z as Fpe, H as Gpe, bp as Hpe, o as Wpe, q as Upe, be as $pe, bj as Ype, bj as Xpe, bk as qpe, ba as Zpe, b9 as jpe, bo as Kpe, ac as Qpe, bc as Jpe, bd as ege, K as tge, bq as rge, br as nge, f as ige, bg as age, bh as oge, bi as sge, b5 as lge, bb as uge, g as cge, j as fge, b8 as dge, bs as hge } from "./index-oBF86Fzo.js";
|
|
12
|
+
import { F as pge, p as gge } from "./index-BfXb0pT1.js";
|
|
13
|
+
import { c as yge } from "./pdfWorker-BRFX1gbJ.js";
|
|
14
14
|
import { g as TG } from "./_commonjsHelpers-ByX85dGu.js";
|
|
15
15
|
import { utils as hl, write as dI } from "./xlsx-CzlURDDb.js";
|
|
16
16
|
import { defaultTranslations as _ge } from "./i18n-provider-defaults.js";
|
|
@@ -1059,9 +1059,11 @@ declare namespace Calendar {
|
|
|
1059
1059
|
|
|
1060
1060
|
declare module "@tiptap/core" {
|
|
1061
1061
|
interface Commands<ReturnType> {
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1062
|
+
enhanceHighlight: {
|
|
1063
|
+
setEnhanceHighlight: (from: number, to: number, options?: {
|
|
1064
|
+
placeholder?: string;
|
|
1065
|
+
}) => ReturnType;
|
|
1066
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
1065
1067
|
};
|
|
1066
1068
|
}
|
|
1067
1069
|
}
|
|
@@ -1069,11 +1071,9 @@ declare module "@tiptap/core" {
|
|
|
1069
1071
|
|
|
1070
1072
|
declare module "@tiptap/core" {
|
|
1071
1073
|
interface Commands<ReturnType> {
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
}) => ReturnType;
|
|
1076
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
1074
|
+
aiBlock: {
|
|
1075
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
1076
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
1077
1077
|
};
|
|
1078
1078
|
}
|
|
1079
1079
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { S as L, m as ye, u as Z, n as Se, o as Re, i as ke, j as _e, k as Ne, q as Ce, l as Le, w as Fe, r as Ve, s as Te } from "./F0CanvasPanel-DZnIZ1lj.js";
|
|
2
2
|
import { jsx as t, jsxs as y } from "react/jsx-runtime";
|
|
3
3
|
import { lazy as J, forwardRef as ne, Suspense as He, useState as V, useRef as A, useMemo as te, useCallback as w, useEffect as T } from "react";
|
|
4
|
-
import { e as Ee, D as Ue, P as je, c as De } from "./pdfWorker-
|
|
4
|
+
import { e as Ee, D as Ue, P as je, c as De } from "./pdfWorker-BRFX1gbJ.js";
|
|
5
5
|
import { F as We } from "./Printer-B7iDPx2r.js";
|
|
6
6
|
import { d as ae } from "./tooltip-BH6Se8A4.js";
|
|
7
7
|
import './index.css';const Oe = ({
|
|
@@ -222,7 +222,7 @@ import './index.css';const Oe = ({
|
|
|
222
222
|
}), i;
|
|
223
223
|
};
|
|
224
224
|
Ee();
|
|
225
|
-
const qe = J(() => import("./SheetViewer-
|
|
225
|
+
const qe = J(() => import("./SheetViewer-B3QtS9JS.js")), Ge = J(() => import("./DocxViewer-vVS2WHK4.js")), Ze = J(() => import("./TextViewer-CWjZ3iBC.js")), oe = 48, se = ne(
|
|
226
226
|
(o, a) => {
|
|
227
227
|
const { kind: e = "pdf", mimeType: i, ...l } = o;
|
|
228
228
|
if (e === "pdf") return /* @__PURE__ */ t(le, { ref: a, ...l });
|