@factorialco/f0-react 4.58.0 → 4.59.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-Dy0LRDdf.js → ChatPdfThumbnail-DECZZzOT.js} +1 -1
- package/dist/{DocumentToolbar-Z4__mOa2.js → DocumentToolbar-BQRZ8kPq.js} +2 -2
- package/dist/{DocxViewer-BHfK1ueA.js → DocxViewer-f1Qx-1g7.js} +2 -2
- package/dist/{F0AiProcessingOverlay-oR419tUE.js → F0AiProcessingOverlay-C3PLGL9k.js} +146 -146
- package/dist/{F0CanvasPanel-B7F3sn6X.js → F0CanvasPanel-Bm-rOddX.js} +18217 -18041
- package/dist/{SheetViewer-Ya4FAZI6.js → SheetViewer-CyFUTGAF.js} +2 -2
- package/dist/{TextViewer-Ca6Qmxo6.js → TextViewer-CyJFvBXS.js} +2 -2
- package/dist/ai.d.ts +4 -0
- package/dist/ai.js +2 -2
- package/dist/component-status.js +1 -1
- package/dist/experimental.d.ts +86 -1
- package/dist/experimental.js +212 -197
- package/dist/f0.d.ts +7 -1
- package/dist/f0.js +8 -8
- package/dist/i18n-provider-defaults.d.ts +4 -0
- package/dist/i18n-provider-defaults.js +4 -0
- package/dist/{index-Bmo_bXr5.js → index-BihWWw-L.js} +3 -3
- package/dist/{index-BZcVazs8.js → index-CbHjzW27.js} +1 -1
- package/dist/{pdfWorker-CbB54VeJ.js → pdfWorker-BJ-lBzFV.js} +2 -2
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/f0.d.ts
CHANGED
|
@@ -123,6 +123,7 @@ import { PieChartProps } from './PieChart';
|
|
|
123
123
|
import { PopoverContentProps } from '@radix-ui/react-popover';
|
|
124
124
|
import { ProgressBarCellValue } from './f0';
|
|
125
125
|
import { ProgressBarCellValue as ProgressBarCellValue_2 } from './types/progressBar';
|
|
126
|
+
import { ProgressSeriesCellValue } from './types/progressSeries';
|
|
126
127
|
import { Props as Props_2 } from './types';
|
|
127
128
|
import { RadarChartProps } from './RadarChart';
|
|
128
129
|
import * as React_2 from 'react';
|
|
@@ -5069,6 +5070,10 @@ export declare const defaultTranslations: {
|
|
|
5069
5070
|
readonly description: "Try a different date or fewer filters";
|
|
5070
5071
|
};
|
|
5071
5072
|
};
|
|
5073
|
+
readonly progressSeries: {
|
|
5074
|
+
readonly noData: "No data";
|
|
5075
|
+
readonly canceled: "Canceled";
|
|
5076
|
+
};
|
|
5072
5077
|
readonly select: {
|
|
5073
5078
|
readonly noResults: "No results found";
|
|
5074
5079
|
readonly loadingMore: "Loading...";
|
|
@@ -13311,7 +13316,7 @@ export declare function injectSectionEnds(items: FlatFormItem[], inSectionQuesti
|
|
|
13311
13316
|
*/
|
|
13312
13317
|
export declare const Input: ForwardRefExoticComponent<Omit<F0TextInputProps, "ref"> & RefAttributes<HTMLInputElement>>;
|
|
13313
13318
|
|
|
13314
|
-
declare const Input_2: React_2.ForwardRefExoticComponent<Omit<React_2.InputHTMLAttributes<HTMLInputElement>, "onChange" | "size"> & Pick<InputFieldProps<string>, "label" | "onChange" | "size" | "icon" | "role" | "onFocus" | "onBlur" | "transparent" | "status" | "loading" | "disabled" | "maxLength" | "required" | "error" | "append" | "hideLabel" | "hint" | "labelIcon" | "onClickContent" | "readonly" | "clearable" | "autocomplete" | "onClear" | "
|
|
13319
|
+
declare const Input_2: React_2.ForwardRefExoticComponent<Omit<React_2.InputHTMLAttributes<HTMLInputElement>, "onChange" | "size"> & Pick<InputFieldProps<string>, "label" | "onChange" | "size" | "icon" | "role" | "onFocus" | "onBlur" | "transparent" | "status" | "loading" | "disabled" | "maxLength" | "required" | "error" | "append" | "hideLabel" | "hint" | "isEmpty" | "labelIcon" | "onClickContent" | "readonly" | "clearable" | "autocomplete" | "onClear" | "emptyValue" | "hideMaxLength" | "appendTag" | "lengthProvider" | "buttonToggle"> & React_2.RefAttributes<HTMLInputElement>>;
|
|
13315
13320
|
|
|
13316
13321
|
declare const INPUTFIELD_SIZES: readonly ["sm", "md"];
|
|
13317
13322
|
|
|
@@ -18258,6 +18263,7 @@ declare const valueDisplayRenderers: {
|
|
|
18258
18263
|
readonly person: (args: PersonCellValue_2, meta: ValueDisplayRendererContext_2) => JSX_2.Element;
|
|
18259
18264
|
readonly percentage: (args: PercentageCellValue, meta: ValueDisplayRendererContext_2) => JSX_2.Element | null;
|
|
18260
18265
|
readonly progressBar: (args: ProgressBarCellValue_2, _meta: ValueDisplayRendererContext_2) => JSX_2.Element | null;
|
|
18266
|
+
readonly progressSeries: (args: ProgressSeriesCellValue, meta: ValueDisplayRendererContext_2) => JSX_2.Element;
|
|
18261
18267
|
readonly barSeries: (args: BarSeriesCellValue, meta: ValueDisplayRendererContext_2) => JSX_2.Element;
|
|
18262
18268
|
readonly categoryBarChart: (args: CategoryBarChartCellValue, meta: ValueDisplayRendererContext_2) => JSX_2.Element;
|
|
18263
18269
|
readonly hourDistribution: (args: HourDistributionCellValue_2, meta: ValueDisplayRendererContext_2) => JSX_2.Element;
|
package/dist/f0.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { gQ as uN, w as rt, cb as T_, J as vn, gy as cN, H as fn, eW as WV, gR as fN, s as qv, S as Q, u as Re, V as tt, dw as Rl, O as pl, y as UV, Y as _d, bS as Ma, r as Bt, ad as Jc, gS as $V, ak as il, gv as qy, gT as YV, gU as XV, gV as Dw, e6 as qV, gW as ZV, gX as hN, gY as jV, gZ as KV, g_ as dN, g$ as QV, c2 as vN, c3 as pN, W as ef, X as tf, m as Je, $ as rf, fZ as gN, a4 as $t, aj as nf, a6 as Wo, aT as D_, ar as A_, h0 as JV, bd as eF, e1 as Aw, n as mN, o as gl, be as tF, aH as Zv, aI as jv, aJ as Kv, cX as xd, c9 as yN, h1 as rF, gx as Mw, fz as nF, h2 as Ew, ft as iF, h3 as aF, bM as bN, bX as _N, fI as Zy, ag as Fr, aw as oF, d6 as jy, bY as xN, g4 as Ol, g5 as af, g7 as wN, gE as sF, fX as SN, fW as lF, bT as M_, bU as E_, h4 as Qv, dF as L_, gl as uF, ab as CN, fs as cF, cu as fF, gN as N_, bA as TN, bF as hF, bG as dF, bH as vF, d as pF, U as DN, dc as es, dR as AN, dE as MN, cx as I_, bP as EN, d0 as P_, f$ as al, g0 as ol, _ as sl, g1 as ll, f_ as ha, bZ as LN, j as gF, dC as wd, bp as ml, bh as Er, cF as mF, aa as NN, dG as Ky, e2 as _c, cE as yF, a7 as Bl, b0 as IN, aG as bF, ge as Rr, h5 as _F, h6 as xF, h7 as PN, h8 as Jv, h9 as wF, ha as SF, d$ as CF, hb as TF, aW as kN, bV as DF, bW as AF, cc as zl, cg as Vl, cn as of, dT as MF, cd as EF, bc as LF, a0 as RN, bg as NF, a9 as IF, by as Lw, dQ as xc, fv as PF, fw as kF, hc as RF, a$ as OF, ch as BF, l as ON, ae as zF, c6 as VF, gB as FF, b3 as GF, M as BN, hd as zN, he as HF, hf as WF, I as UF, hg as $F, hh as YF, hi as XF, hj as qF } from "./F0CanvasPanel-Bm-rOddX.js";
|
|
2
|
+
import { hz as phe, C as ghe, D as mhe, aU as yhe, c as bhe, F as _he, a as xhe, hs as whe, f as She, bk as Che, aV as The, cp as Dhe, c1 as Ahe, aM as Mhe, bt as Ehe, aq as Lhe, e5 as Nhe, ay as Ihe, cB as Phe, g as khe, bI as Rhe, cC as Ohe, hn as Bhe, hE as zhe, bN as Vhe, e as Fhe, bQ as Ghe, k as Hhe, ci as Whe, hu as Uhe, b7 as $he, hv as Yhe, hx as Xhe, hy as qhe, c_ as Zhe, hB as jhe, cT as Khe, cU as Qhe, P as Jhe, cY as ede, hw as tde, cV as rde, hA as nde, hF as ide, hk as ade, hl as ode, hm as sde, cW as lde, hD as ude, ht as cde, hq as fde, hp as hde, cZ as dde, fU as vde, gm as pde, hC as gde, aZ as mde, cS as yde, cP as bde, cR as _de, cO as xde, hr as wde, go as Sde, gi as Cde, g8 as Tde, hI as Dde, cG as Ade, cQ as Mde, hH as Ede, bu as Lde, dZ as Nde, fT as Ide, g9 as Pde, b as kde, bx as Rde, gD as Ode, aX as Bde, d_ as zde, ho as Vde, gk as Fde, gj as Gde, hG as Hde } from "./F0CanvasPanel-Bm-rOddX.js";
|
|
3
3
|
import { jsx as w, jsxs as O, Fragment as it } from "react/jsx-runtime";
|
|
4
4
|
import * as bt from "react";
|
|
5
5
|
import ZF, { forwardRef as Dr, useRef as ie, useImperativeHandle as jF, Children as Sd, createContext as Ba, useContext as ts, useState as se, useMemo as ye, useEffect as me, useCallback as le, useLayoutEffect as Nw, isValidElement as VN, Fragment as Fl, useSyncExternalStore as yl, useId as ic, memo as KF } from "react";
|
|
6
|
-
import { D as QF, E as JF, G as e5, H as t5, I as r5, J as n5, K as Cd, L as k_, M as FN, N as GN, O as Jn, P as i5, Q as a5, R as o5, S as s5, U as l5, F as u5 } from "./F0AiProcessingOverlay-
|
|
7
|
-
import { A as Ude, C as $de, t as Yde, s as Xde, v as qde, y as Zde, l as jde, i as Kde, q as Qde, z as Jde, B as eve, p as tve, r as rve, j as nve, e as ive, g as ave, k as ove, T as sve, w as lve, h as uve, a as cve, n as fve, m as hve, o as dve, b as vve, f as pve, x as gve, c as mve, d as yve, u as bve } from "./F0AiProcessingOverlay-
|
|
6
|
+
import { D as QF, E as JF, G as e5, H as t5, I as r5, J as n5, K as Cd, L as k_, M as FN, N as GN, O as Jn, P as i5, Q as a5, R as o5, S as s5, U as l5, F as u5 } from "./F0AiProcessingOverlay-C3PLGL9k.js";
|
|
7
|
+
import { A as Ude, C as $de, t as Yde, s as Xde, v as qde, y as Zde, l as jde, i as Kde, q as Qde, z as Jde, B as eve, p as tve, r as rve, j as nve, e as ive, g as ave, k as ove, T as sve, w as lve, h as uve, a as cve, n as fve, m as hve, o as dve, b as vve, f as pve, x as gve, c as mve, d as yve, u as bve } from "./F0AiProcessingOverlay-C3PLGL9k.js";
|
|
8
8
|
import { d as J, u as ep, g as c5, h as js, P as sf, i as Gl, j as f5, f as yi } from "./tooltip-BH6Se8A4.js";
|
|
9
9
|
import { createPortal as tp } from "react-dom";
|
|
10
|
-
import { C as h5, an as d5, ao as v5, ap as p5, aq as Iw, ar as g5, as as m5, at as y5, au as b5, av as _5, aw as x5, ax as w5, i as S5, F as HN, ay as C5, az as T5, aA as D5, aB as A5, aC as M5, aD as WN, aE as E5, aF as rp, aG as Wa, aH as L5, aI as R_, aJ as O_, I as N5, aK as I5, aL as ps, aM as UN, aN as P5, aO as k5, aP as R5, aQ as O5, aR as B5, aS as z5, _ as V5, ae as F5, aT as G5, U as H5, aU as W5, aV as U5, c as np, R as B_, u as z_, Y as $N, O as V_, aW as YN, aX as Pw, aY as F_, r as $5, e as XN, a2 as qN, aZ as Y5, a_ as X5, a$ as q5, b0 as Z5, M as j5 } from "./index-
|
|
11
|
-
import { t as xve, v as wve, J as Sve, w as Cve, E as Tve, bm as Dve, bl as Ave, bf as Mve, b2 as Eve, b1 as Lve, b3 as Nve, b4 as Ive, b6 as Pve, b7 as kve, ag as Rve, af as Ove, aj as Bve, X as zve, N as Vve, al as Fve, Q as Gve, x as Hve, bn as Wve, ah as Uve, ai as $ve, T as Yve, y as Xve, P as qve, D as Zve, G as jve, ak as Kve, W as Qve, am as Jve, z as epe, H as tpe, bp as rpe, o as npe, q as ipe, be as ape, bj as ope, bj as spe, bk as lpe, ba as upe, b9 as cpe, bo as fpe, ac as hpe, bc as dpe, bd as vpe, K as ppe, bq as gpe, br as mpe, f as ype, bg as bpe, bh as _pe, bi as xpe, b5 as wpe, bb as Spe, g as Cpe, j as Tpe, b8 as Dpe, bs as Ape } from "./index-
|
|
12
|
-
import { F as Epe, p as Lpe } from "./index-
|
|
13
|
-
import { c as Ipe } from "./pdfWorker-
|
|
10
|
+
import { C as h5, an as d5, ao as v5, ap as p5, aq as Iw, ar as g5, as as m5, at as y5, au as b5, av as _5, aw as x5, ax as w5, i as S5, F as HN, ay as C5, az as T5, aA as D5, aB as A5, aC as M5, aD as WN, aE as E5, aF as rp, aG as Wa, aH as L5, aI as R_, aJ as O_, I as N5, aK as I5, aL as ps, aM as UN, aN as P5, aO as k5, aP as R5, aQ as O5, aR as B5, aS as z5, _ as V5, ae as F5, aT as G5, U as H5, aU as W5, aV as U5, c as np, R as B_, u as z_, Y as $N, O as V_, aW as YN, aX as Pw, aY as F_, r as $5, e as XN, a2 as qN, aZ as Y5, a_ as X5, a$ as q5, b0 as Z5, M as j5 } from "./index-CbHjzW27.js";
|
|
11
|
+
import { t as xve, v as wve, J as Sve, w as Cve, E as Tve, bm as Dve, bl as Ave, bf as Mve, b2 as Eve, b1 as Lve, b3 as Nve, b4 as Ive, b6 as Pve, b7 as kve, ag as Rve, af as Ove, aj as Bve, X as zve, N as Vve, al as Fve, Q as Gve, x as Hve, bn as Wve, ah as Uve, ai as $ve, T as Yve, y as Xve, P as qve, D as Zve, G as jve, ak as Kve, W as Qve, am as Jve, z as epe, H as tpe, bp as rpe, o as npe, q as ipe, be as ape, bj as ope, bj as spe, bk as lpe, ba as upe, b9 as cpe, bo as fpe, ac as hpe, bc as dpe, bd as vpe, K as ppe, bq as gpe, br as mpe, f as ype, bg as bpe, bh as _pe, bi as xpe, b5 as wpe, bb as Spe, g as Cpe, j as Tpe, b8 as Dpe, bs as Ape } from "./index-CbHjzW27.js";
|
|
12
|
+
import { F as Epe, p as Lpe } from "./index-BihWWw-L.js";
|
|
13
|
+
import { c as Ipe } from "./pdfWorker-BJ-lBzFV.js";
|
|
14
14
|
import { g as K5 } from "./_commonjsHelpers-ByX85dGu.js";
|
|
15
15
|
import { utils as ul, write as ZN } from "./xlsx-CzlURDDb.js";
|
|
16
16
|
import { defaultTranslations as kpe } from "./i18n-provider-defaults.js";
|
|
@@ -697,6 +697,10 @@ export declare const defaultTranslations: {
|
|
|
697
697
|
readonly description: "Try a different date or fewer filters";
|
|
698
698
|
};
|
|
699
699
|
};
|
|
700
|
+
readonly progressSeries: {
|
|
701
|
+
readonly noData: "No data";
|
|
702
|
+
readonly canceled: "Canceled";
|
|
703
|
+
};
|
|
700
704
|
readonly select: {
|
|
701
705
|
readonly noResults: "No results found";
|
|
702
706
|
readonly loadingMore: "Loading...";
|
|
@@ -1,7 +1,7 @@
|
|
|
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-
|
|
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-Bm-rOddX.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-BJ-lBzFV.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-CyFUTGAF.js")), Ge = J(() => import("./DocxViewer-f1Qx-1g7.js")), Ze = J(() => import("./TextViewer-CyJFvBXS.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 });
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as m, jsxs as P, Fragment as Fe } from "react/jsx-runtime";
|
|
2
2
|
import * as Ve from "react";
|
|
3
3
|
import le, { useRef as W, useState as J, useCallback as ee, useEffect as oe, useContext as ht, useMemo as Z, createContext as Mt, forwardRef as Qe, useLayoutEffect as rn, memo as Et, useReducer as F7, cloneElement as eE, PureComponent as yc, useImperativeHandle as La, Fragment as Ol, useId as vc, createElement as Vv, isValidElement as $7, useDebugValue as tE, version as $2, createRef as z7 } from "react";
|
|
4
|
-
import {
|
|
4
|
+
import { eh as z2, ei as Wf, ej as B7, e3 as nE, ek as j7, el as H7, em as V7, en as V1, eo as W7, ep as U7, eq as q7, er as K7, es as G7, et as Y7, eu as X7, H as qe, ev as iE, ew as J7, Y as Qt, a9 as ig, a0 as rg, bY as Z7, d6 as Q7, J as Ts, w as Lt, r as Xi, ex as rE, ey as oE, ez as eP, eA as tP, eB as Gs, eC as Ct, eD as li, eE as sE, eF as nP, eG as aE, eH as iP, eI as Pn, eJ as og, eK as Zt, eL as lE, eM as sg, eN as mw, eO as gw, eP as yw, eQ as Tn, eR as si, eS as Wv, eT as ag, eU as rP, eV as qn, eW as ls, eX as ii, eY as Fa, eZ as vw, e_ as lg, e$ as Ih, f0 as cg, cr as bw, f1 as oP, f2 as Bu, f3 as cp, f4 as sP, f5 as aP, f6 as lP, f7 as cP, f8 as dP, f9 as fP, fa as cE, fb as dE, fc as fE, fd as uE, fe as hE, ff as uP, fg as dp, fh as hP, fi as pP, fj as Uf, fk as Ds, e9 as mo, fl as ww, fm as qf, fn as pE, ea as mE, fo as mP, fp as gP, e7 as yP, fq as vP, e8 as bP, al as Kn, fr as Gn, fs as wP, ft as gE, fu as yE, cb as Ji, O as Pt, cJ as xP, ay as qi, m as Ae, ad as bc, af as Ml, V as it, a5 as Kf, bZ as kP, fv as _P, fw as SP, u as je, aT as xw, b3 as wc, cp as vE, c1 as bE, aM as kw, bg as dg, ag as fg, fx as wE, aW as CP, a7 as Rr, fy as EP, bQ as xE, fz as AP, cO as cn, fA as kE, fB as _E, fC as Uv, fD as NP, fE as B2, an as Gf, cV as SE, cP as qv, aH as _w, aI as Sw, aJ as Cw, cT as TP, k as Vi, cx as j2, c4 as DP, dg as OP, dE as Kv, fF as MP, fG as IP, fH as W1, dJ as CE, bM as $a, ar as bs, c9 as RP, fI as H2, bX as Ew, fJ as PP, cN as LP, G as FP, A as $P, y as zP, fK as EE, fL as BP, e4 as jP, fM as HP, fN as AE, M as VP, fO as WP, fP as UP, fQ as qP, fR as V2, fS as W2, fT as U1, fU as U2, fV as KP, fW as GP, am as YP, fX as NE, fY as XP, aD as JP, cE as ug, W as TE, X as DE, bS as hg, $ as OE, a6 as ZP, fZ as QP, f_ as q2, a4 as fp, cF as pg, f$ as ME, g0 as IE, _ as RE, g1 as PE, o as xc, dw as mg, ak as go, aw as LE, bd as eL, be as tL, g2 as nL, n as Aw, g3 as FE, g4 as gg, g5 as kc, g6 as iL, g7 as Nw, g8 as Ut, e2 as Gd, g9 as zn, d0 as va, c6 as Gv, at as rL, au as oL, S as Ie, a1 as sL, aa as Yv, ch as aL, bF as $E, bG as zE, bH as BE, s as Yf, ga as Tw, ap as yg, gb as lL, aE as cL, bD as vg, bp as ko, bV as jE, bW as HE, aj as dL, cu as fL, dT as VE, a_ as uL, gc as hL, gd as pL, cS as mL, ge as up, gf as Yo, d$ as gL, dM as yL, gg as vL, b9 as bL, az as Xv, dO as wL, bf as xL, bv as kL, gh as WE, bx as _L, b5 as SL, gi as CL, gj as bg, gk as wg, cc as EL, cd as AL, ce as NL, cg as TL, gl as xg, gm as Jv, bI as kg, gn as DL, go as hp, gp as OL, ax as ML, dG as IL, gq as K2, gr as RL, gs as G2, gt as q1, gu as UE, bT as qE, dL as PL, dt as LL, i as Dw, gv as FL, gw as $L, b7 as zL, ab as BL, j as Ow, cA as jL, dI as HL, dB as Y2, dF as Mw, dQ as VL, l as WL, gx as UL, gy as Iw, d7 as qL, de as KL, dN as GL, gz as YL, q as XL, co as X2, gA as JL, gB as ZL, gC as QL, gD as eF, gE as KE, bP as tF, ae as nF, c as iF, ct as rF, bh as K1, gF as Xf, gG as Rw, gH as Pw, gI as Jf, gJ as oF, bb as sF, cB as Lw, bm as aF, d1 as lF, aY as cF, bs as dF, d8 as fF, dA as uF, dS as hF, dP as pF, dx as GE, dy as YE, dz as XE, dH as JE, dc as ZE, d4 as QE, d2 as e9, d5 as t9, d3 as n9, dd as i9, dK as r9, aq as o9, gK as s9, gL as mF, a$ as gF, dr as yF, dp as vF, dn as bF, dm as wF, dq as xF, by as kF, dU as _F, bN as SF, bO as CF, dR as EF, bB as AF, bC as NF, bU as TF, bL as DF, gM as OF, d_ as MF, gN as IF, gO as RF, gP as PF } from "./F0CanvasPanel-Bm-rOddX.js";
|
|
5
5
|
import { d as Y, e as Yn, T as Zf, a as Qf, b as eu, c as tu, f as dn, u as a9, S as LF } from "./tooltip-BH6Se8A4.js";
|
|
6
6
|
import { g as _g } from "./_commonjsHelpers-ByX85dGu.js";
|
|
7
7
|
import Fw, { unstable_batchedUpdates as ju, createPortal as $w, flushSync as FF } from "react-dom";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { createContext, useReducer, forwardRef, useRef, useImperativeHandle, useEffect, useCallback, useMemo, useContext, useLayoutEffect } from "react";
|
|
3
3
|
import { e as clsx } from "./tooltip-BH6Se8A4.js";
|
|
4
|
-
import { t as invariant } from "./F0CanvasPanel-
|
|
5
|
-
import { d as dequal } from "./index-
|
|
4
|
+
import { t as invariant } from "./F0CanvasPanel-Bm-rOddX.js";
|
|
5
|
+
import { d as dequal } from "./index-CbHjzW27.js";
|
|
6
6
|
import { a as getAugmentedNamespace, g as getDefaultExportFromCjs } from "./_commonjsHelpers-ByX85dGu.js";
|
|
7
7
|
import { c as commonjsRequire } from "./_commonjs-dynamic-modules-BpilXLfW.js";
|
|
8
8
|
import './pdfWorker.css';var pdf$1 = { exports: {} };
|