@factorialco/f0-react 2.14.5 → 2.15.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/{F0AiProposalCard-Dm9l3Kgu.js → F0AiProposalCard-CDG2dAfX.js} +3589 -3551
- package/dist/ai.d.ts +59 -6
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +59 -6
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +59 -6
- package/dist/f0.js +6 -6
- package/dist/i18n-provider-defaults.d.ts +59 -6
- package/dist/i18n-provider-defaults.js +38 -0
- package/dist/{index-Qr9ueKPG.js → index-D928oKGT.js} +1 -1
- package/dist/styles.css +1 -1
- package/dist/{useDataCollectionSource-DXKGQFzT.js → useDataCollectionSource-DeiW759t.js} +7244 -7238
- package/icons/app/CursorClick.d.ts +4 -0
- package/icons/app/CursorClick.d.ts.map +1 -0
- package/icons/app/CursorClick.js +5 -0
- package/icons/app/FitView.d.ts +4 -0
- package/icons/app/FitView.d.ts.map +1 -0
- package/icons/app/FitView.js +5 -0
- package/icons/app/index.d.ts +2 -0
- package/icons/app/index.d.ts.map +1 -1
- package/icons/app/index.js +2 -0
- package/package.json +3 -1
package/dist/ai.d.ts
CHANGED
|
@@ -2317,6 +2317,44 @@ export declare const defaultTranslations: {
|
|
|
2317
2317
|
};
|
|
2318
2318
|
};
|
|
2319
2319
|
};
|
|
2320
|
+
readonly graph: {
|
|
2321
|
+
readonly canvas: "Graph canvas";
|
|
2322
|
+
readonly view: "Graph view";
|
|
2323
|
+
readonly controls: {
|
|
2324
|
+
readonly findMe: "Find me";
|
|
2325
|
+
readonly fitToView: "Fit to view";
|
|
2326
|
+
readonly zoomIn: "Zoom in";
|
|
2327
|
+
readonly zoomOut: "Zoom out";
|
|
2328
|
+
readonly navigation: "Graph navigation";
|
|
2329
|
+
readonly metadataSettings: "Metadata visibility";
|
|
2330
|
+
readonly tagTypeLabels: {
|
|
2331
|
+
readonly person: "People";
|
|
2332
|
+
readonly team: "Teams";
|
|
2333
|
+
readonly company: "Companies";
|
|
2334
|
+
readonly status: "Statuses";
|
|
2335
|
+
readonly alert: "Alerts";
|
|
2336
|
+
readonly balance: "Balances";
|
|
2337
|
+
readonly dot: "Tags";
|
|
2338
|
+
readonly raw: "Tags";
|
|
2339
|
+
};
|
|
2340
|
+
};
|
|
2341
|
+
readonly search: {
|
|
2342
|
+
readonly noResults: "No results";
|
|
2343
|
+
};
|
|
2344
|
+
readonly detailPanel: {
|
|
2345
|
+
readonly details: "Details";
|
|
2346
|
+
readonly moreActions: "More actions";
|
|
2347
|
+
readonly resize: "Resize detail panel";
|
|
2348
|
+
};
|
|
2349
|
+
readonly expander: {
|
|
2350
|
+
readonly collapse: "Collapse {{count}} items";
|
|
2351
|
+
readonly expand: "Expand {{count}} items";
|
|
2352
|
+
readonly expandWithParentSingular: "Expand {{parent}}, {{count}} child";
|
|
2353
|
+
readonly expandWithParentPlural: "Expand {{parent}}, {{count}} children";
|
|
2354
|
+
readonly collapseWithParent: "Collapse {{parent}}";
|
|
2355
|
+
readonly collapseDefault: "Collapse children";
|
|
2356
|
+
};
|
|
2357
|
+
};
|
|
2320
2358
|
readonly wizard: {
|
|
2321
2359
|
readonly previous: "Previous";
|
|
2322
2360
|
readonly next: "Continue";
|
|
@@ -3757,9 +3795,9 @@ declare namespace Calendar {
|
|
|
3757
3795
|
|
|
3758
3796
|
declare module "@tiptap/core" {
|
|
3759
3797
|
interface Commands<ReturnType> {
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3798
|
+
aiBlock: {
|
|
3799
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
3800
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
3763
3801
|
};
|
|
3764
3802
|
}
|
|
3765
3803
|
}
|
|
@@ -3767,9 +3805,9 @@ declare module "@tiptap/core" {
|
|
|
3767
3805
|
|
|
3768
3806
|
declare module "@tiptap/core" {
|
|
3769
3807
|
interface Commands<ReturnType> {
|
|
3770
|
-
|
|
3771
|
-
|
|
3772
|
-
|
|
3808
|
+
enhanceHighlight: {
|
|
3809
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
3810
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
3773
3811
|
};
|
|
3774
3812
|
}
|
|
3775
3813
|
}
|
|
@@ -3802,3 +3840,18 @@ declare module "@tiptap/core" {
|
|
|
3802
3840
|
};
|
|
3803
3841
|
}
|
|
3804
3842
|
}
|
|
3843
|
+
|
|
3844
|
+
|
|
3845
|
+
declare namespace F0GraphNodeWrapperInner {
|
|
3846
|
+
var displayName: string;
|
|
3847
|
+
}
|
|
3848
|
+
|
|
3849
|
+
|
|
3850
|
+
declare namespace F0GraphExpanderWrapperInner {
|
|
3851
|
+
var displayName: string;
|
|
3852
|
+
}
|
|
3853
|
+
|
|
3854
|
+
|
|
3855
|
+
declare namespace F0GraphCollapserWrapperInner {
|
|
3856
|
+
var displayName: string;
|
|
3857
|
+
}
|
package/dist/ai.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { d as o, l as r, k as e, F as t, a as n, C as i, b as d, m as C, n as F, e as l, h as m, I as u, g as h, c as A, i as D, u as c, j as v, f as I } from "./useDataCollectionSource-
|
|
1
|
+
import { d as o, l as r, k as e, F as t, a as n, C as i, b as d, m as C, n as F, e as l, h as m, I as u, g as h, c as A, i as D, u as c, j as v, f as I } from "./useDataCollectionSource-DeiW759t.js";
|
|
2
2
|
import { defaultTranslations as b } from "./i18n-provider-defaults.js";
|
|
3
|
-
import { A as p, C as P, c as S, D as T, a as w, b as x, e as H, f as M, g as V, h as k, p as j, l as y, r as O, m as q, n as z, i as B, F as E, d as L, M as W, k as G, j as J, q as K, o as N, s as Q, u as R } from "./F0AiProposalCard-
|
|
3
|
+
import { A as p, C as P, c as S, D as T, a as w, b as x, e as H, f as M, g as V, h as k, p as j, l as y, r as O, m as q, n as z, i as B, F as E, d as L, M as W, k as G, j as J, q as K, o as N, s as Q, u as R } from "./F0AiProposalCard-CDG2dAfX.js";
|
|
4
4
|
export {
|
|
5
5
|
p as AiChatTranslationsProvider,
|
|
6
6
|
o as CanvasCard,
|
package/dist/experimental.d.ts
CHANGED
|
@@ -3537,6 +3537,44 @@ declare const defaultTranslations: {
|
|
|
3537
3537
|
};
|
|
3538
3538
|
};
|
|
3539
3539
|
};
|
|
3540
|
+
readonly graph: {
|
|
3541
|
+
readonly canvas: "Graph canvas";
|
|
3542
|
+
readonly view: "Graph view";
|
|
3543
|
+
readonly controls: {
|
|
3544
|
+
readonly findMe: "Find me";
|
|
3545
|
+
readonly fitToView: "Fit to view";
|
|
3546
|
+
readonly zoomIn: "Zoom in";
|
|
3547
|
+
readonly zoomOut: "Zoom out";
|
|
3548
|
+
readonly navigation: "Graph navigation";
|
|
3549
|
+
readonly metadataSettings: "Metadata visibility";
|
|
3550
|
+
readonly tagTypeLabels: {
|
|
3551
|
+
readonly person: "People";
|
|
3552
|
+
readonly team: "Teams";
|
|
3553
|
+
readonly company: "Companies";
|
|
3554
|
+
readonly status: "Statuses";
|
|
3555
|
+
readonly alert: "Alerts";
|
|
3556
|
+
readonly balance: "Balances";
|
|
3557
|
+
readonly dot: "Tags";
|
|
3558
|
+
readonly raw: "Tags";
|
|
3559
|
+
};
|
|
3560
|
+
};
|
|
3561
|
+
readonly search: {
|
|
3562
|
+
readonly noResults: "No results";
|
|
3563
|
+
};
|
|
3564
|
+
readonly detailPanel: {
|
|
3565
|
+
readonly details: "Details";
|
|
3566
|
+
readonly moreActions: "More actions";
|
|
3567
|
+
readonly resize: "Resize detail panel";
|
|
3568
|
+
};
|
|
3569
|
+
readonly expander: {
|
|
3570
|
+
readonly collapse: "Collapse {{count}} items";
|
|
3571
|
+
readonly expand: "Expand {{count}} items";
|
|
3572
|
+
readonly expandWithParentSingular: "Expand {{parent}}, {{count}} child";
|
|
3573
|
+
readonly expandWithParentPlural: "Expand {{parent}}, {{count}} children";
|
|
3574
|
+
readonly collapseWithParent: "Collapse {{parent}}";
|
|
3575
|
+
readonly collapseDefault: "Collapse children";
|
|
3576
|
+
};
|
|
3577
|
+
};
|
|
3540
3578
|
readonly wizard: {
|
|
3541
3579
|
readonly previous: "Previous";
|
|
3542
3580
|
readonly next: "Continue";
|
|
@@ -8396,9 +8434,9 @@ declare namespace Calendar {
|
|
|
8396
8434
|
|
|
8397
8435
|
declare module "@tiptap/core" {
|
|
8398
8436
|
interface Commands<ReturnType> {
|
|
8399
|
-
|
|
8400
|
-
|
|
8401
|
-
|
|
8437
|
+
aiBlock: {
|
|
8438
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
8439
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
8402
8440
|
};
|
|
8403
8441
|
}
|
|
8404
8442
|
}
|
|
@@ -8406,9 +8444,9 @@ declare module "@tiptap/core" {
|
|
|
8406
8444
|
|
|
8407
8445
|
declare module "@tiptap/core" {
|
|
8408
8446
|
interface Commands<ReturnType> {
|
|
8409
|
-
|
|
8410
|
-
|
|
8411
|
-
|
|
8447
|
+
enhanceHighlight: {
|
|
8448
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
8449
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
8412
8450
|
};
|
|
8413
8451
|
}
|
|
8414
8452
|
}
|
|
@@ -8441,3 +8479,18 @@ declare module "@tiptap/core" {
|
|
|
8441
8479
|
};
|
|
8442
8480
|
}
|
|
8443
8481
|
}
|
|
8482
|
+
|
|
8483
|
+
|
|
8484
|
+
declare namespace F0GraphNodeWrapperInner {
|
|
8485
|
+
var displayName: string;
|
|
8486
|
+
}
|
|
8487
|
+
|
|
8488
|
+
|
|
8489
|
+
declare namespace F0GraphExpanderWrapperInner {
|
|
8490
|
+
var displayName: string;
|
|
8491
|
+
}
|
|
8492
|
+
|
|
8493
|
+
|
|
8494
|
+
declare namespace F0GraphCollapserWrapperInner {
|
|
8495
|
+
var displayName: string;
|
|
8496
|
+
}
|
package/dist/experimental.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { o as ua, B as fa, p as ma, D as ha, q as At, r as De, s as ga, t as g, v as X, w as pe, u as se, T as pa, x as ba, y as xa, R as va, z as wa, A as ne, E as ya, G as gt, H as rt, J as Re, K as Ee, L as Na, M as Ca, N as W, O as ka, P as Sa, Q as _e, S as sn, U as Ia, V as Fa, W as R, X as on, Y as O, Z as ve, _ as Aa, $ as La, a0 as Ea, a1 as _a, a2 as Oa, a3 as Ce, a4 as cn, a5 as Da, a6 as be, a7 as $e, a8 as Ta, a9 as pt, n as dn, aa as Ne, ab as za, ac as un, ad as ae, ae as H, af as fn, ag as Pa, ah as Ba, ai as Ra, aj as mn, ak as $a, al as hn, am as me, an as ee, ao as Wa, ap as Ma, aq as ja, ar as Va, as as ge, at as Ge, au as Ga, av as Ha, aw as Ua, ax as Ka, ay as He, az as gn, aA as qa, aB as Ya, aC as Za, aD as We, aE as Xa, aF as Ja, aG as Qa, aH as er, aI as tr, aJ as nr, aK as ar, aL as rr, aM as lr, aN as sr, aO as lt, aP as st, aQ as pn, aR as ir, aS as or, aT as bn, aU as cr, aV as dr, aW as Ue, aX as bt, aY as xn, aZ as ur, a_ as vn, a$ as fr, b0 as mr, b1 as hr, b2 as Le, b3 as gr, b4 as Te, b5 as Lt, b6 as it, b7 as pr, b8 as br, a as xr, g as vr, b9 as wr, ba as wn, bb as yr, bc as Nr, F as Cr, bd as yn, be as kr, bf as Nn, bg as Sr, bh as Et, bi as Ir, bj as Fr, bk as Ar, bl as Lr, bm as Cn, bn as Er, bo as _r, bp as Or, bq as Dr, br as Tr, bs as kn, bt as ue, bu as Sn, bv as xt, bw as vt, bx as wt, by as In, bz as yt, bA as Fn, bB as An, bC as zr, bD as Pr, bE as Br, bF as Rr, bG as $r, bH as Wr, bI as Mr, bJ as jr, bK as Vr, bL as Gr, bM as Hr, bN as _t, bO as Ot, bP as Dt, bQ as Ur, bR as Kr, bS as qr, bT as Yr, bU as Ln, bV as Zr, bW as Xr, bX as Jr } from "./useDataCollectionSource-
|
|
2
|
-
import { ch as Tc, cg as zc, b$ as Pc, ct as Bc, ca as Rc, cb as $c, b_ as Wc, bY as Mc, cd as jc, c0 as Vc, cF as Gc, cD as Hc, c1 as Uc, ce as Kc, cf as qc, cc as Yc, c2 as Zc, cp as Xc, cq as Jc, cu as Qc, cB as ed, cC as td, c8 as nd, cE as ad, c9 as rd, c3 as ld, cj as sd, ci as id, c4 as od, c5 as cd, c6 as dd, cr as ud, cG as fd, bZ as md, cs as hd, cw as gd, cx as pd, co as bd, cl as xd, cn as vd, ck as wd, c7 as yd, cm as Nd, cy as Cd, cz as kd, cv as Sd, cA as Id } from "./useDataCollectionSource-
|
|
1
|
+
import { o as ua, B as fa, p as ma, D as ha, q as At, r as De, s as ga, t as g, v as X, w as pe, u as se, T as pa, x as ba, y as xa, R as va, z as wa, A as ne, E as ya, G as gt, H as rt, J as Re, K as Ee, L as Na, M as Ca, N as W, O as ka, P as Sa, Q as _e, S as sn, U as Ia, V as Fa, W as R, X as on, Y as O, Z as ve, _ as Aa, $ as La, a0 as Ea, a1 as _a, a2 as Oa, a3 as Ce, a4 as cn, a5 as Da, a6 as be, a7 as $e, a8 as Ta, a9 as pt, n as dn, aa as Ne, ab as za, ac as un, ad as ae, ae as H, af as fn, ag as Pa, ah as Ba, ai as Ra, aj as mn, ak as $a, al as hn, am as me, an as ee, ao as Wa, ap as Ma, aq as ja, ar as Va, as as ge, at as Ge, au as Ga, av as Ha, aw as Ua, ax as Ka, ay as He, az as gn, aA as qa, aB as Ya, aC as Za, aD as We, aE as Xa, aF as Ja, aG as Qa, aH as er, aI as tr, aJ as nr, aK as ar, aL as rr, aM as lr, aN as sr, aO as lt, aP as st, aQ as pn, aR as ir, aS as or, aT as bn, aU as cr, aV as dr, aW as Ue, aX as bt, aY as xn, aZ as ur, a_ as vn, a$ as fr, b0 as mr, b1 as hr, b2 as Le, b3 as gr, b4 as Te, b5 as Lt, b6 as it, b7 as pr, b8 as br, a as xr, g as vr, b9 as wr, ba as wn, bb as yr, bc as Nr, F as Cr, bd as yn, be as kr, bf as Nn, bg as Sr, bh as Et, bi as Ir, bj as Fr, bk as Ar, bl as Lr, bm as Cn, bn as Er, bo as _r, bp as Or, bq as Dr, br as Tr, bs as kn, bt as ue, bu as Sn, bv as xt, bw as vt, bx as wt, by as In, bz as yt, bA as Fn, bB as An, bC as zr, bD as Pr, bE as Br, bF as Rr, bG as $r, bH as Wr, bI as Mr, bJ as jr, bK as Vr, bL as Gr, bM as Hr, bN as _t, bO as Ot, bP as Dt, bQ as Ur, bR as Kr, bS as qr, bT as Yr, bU as Ln, bV as Zr, bW as Xr, bX as Jr } from "./useDataCollectionSource-DeiW759t.js";
|
|
2
|
+
import { ch as Tc, cg as zc, b$ as Pc, ct as Bc, ca as Rc, cb as $c, b_ as Wc, bY as Mc, cd as jc, c0 as Vc, cF as Gc, cD as Hc, c1 as Uc, ce as Kc, cf as qc, cc as Yc, c2 as Zc, cp as Xc, cq as Jc, cu as Qc, cB as ed, cC as td, c8 as nd, cE as ad, c9 as rd, c3 as ld, cj as sd, ci as id, c4 as od, c5 as cd, c6 as dd, cr as ud, cG as fd, bZ as md, cs as hd, cw as gd, cx as pd, co as bd, cl as xd, cn as vd, ck as wd, c7 as yd, cm as Nd, cy as Cd, cz as kd, cv as Sd, cA as Id } from "./useDataCollectionSource-DeiW759t.js";
|
|
3
3
|
import { jsx as e, jsxs as o, Fragment as U } from "react/jsx-runtime";
|
|
4
4
|
import ie, { forwardRef as j, useRef as G, useTransition as Qr, useState as E, useLayoutEffect as En, useId as ot, useContext as Ke, createContext as Nt, useEffect as $, useCallback as Q, useMemo as q, Fragment as el, isValidElement as tl, cloneElement as _n, Children as On } from "react";
|
|
5
|
-
import { C as nl, P as al, g as Dn, c as rl, F as ct, f as ll, a as sl, A as il, B as ol, L as cl, b as dl, V as ul, d as fl, e as Tt, h as ml, i as hl } from "./index-
|
|
6
|
-
import { n as Ad, o as Ld, l as Ed, p as _d, u as Od, D as Dd, m as Td, q as zd, x as Pd, y as Bd, N as Rd, z as $d, r as Wd, t as Md, R as jd, s as Vd, j as Gd, k as Hd, w as Ud, v as Kd } from "./index-
|
|
5
|
+
import { C as nl, P as al, g as Dn, c as rl, F as ct, f as ll, a as sl, A as il, B as ol, L as cl, b as dl, V as ul, d as fl, e as Tt, h as ml, i as hl } from "./index-D928oKGT.js";
|
|
6
|
+
import { n as Ad, o as Ld, l as Ed, p as _d, u as Od, D as Dd, m as Td, q as zd, x as Pd, y as Bd, N as Rd, z as $d, r as Wd, t as Md, R as jd, s as Vd, j as Gd, k as Hd, w as Ud, v as Kd } from "./index-D928oKGT.js";
|
|
7
7
|
const gl = ua("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
|
@@ -4848,6 +4848,44 @@ export declare const defaultTranslations: {
|
|
|
4848
4848
|
};
|
|
4849
4849
|
};
|
|
4850
4850
|
};
|
|
4851
|
+
readonly graph: {
|
|
4852
|
+
readonly canvas: "Graph canvas";
|
|
4853
|
+
readonly view: "Graph view";
|
|
4854
|
+
readonly controls: {
|
|
4855
|
+
readonly findMe: "Find me";
|
|
4856
|
+
readonly fitToView: "Fit to view";
|
|
4857
|
+
readonly zoomIn: "Zoom in";
|
|
4858
|
+
readonly zoomOut: "Zoom out";
|
|
4859
|
+
readonly navigation: "Graph navigation";
|
|
4860
|
+
readonly metadataSettings: "Metadata visibility";
|
|
4861
|
+
readonly tagTypeLabels: {
|
|
4862
|
+
readonly person: "People";
|
|
4863
|
+
readonly team: "Teams";
|
|
4864
|
+
readonly company: "Companies";
|
|
4865
|
+
readonly status: "Statuses";
|
|
4866
|
+
readonly alert: "Alerts";
|
|
4867
|
+
readonly balance: "Balances";
|
|
4868
|
+
readonly dot: "Tags";
|
|
4869
|
+
readonly raw: "Tags";
|
|
4870
|
+
};
|
|
4871
|
+
};
|
|
4872
|
+
readonly search: {
|
|
4873
|
+
readonly noResults: "No results";
|
|
4874
|
+
};
|
|
4875
|
+
readonly detailPanel: {
|
|
4876
|
+
readonly details: "Details";
|
|
4877
|
+
readonly moreActions: "More actions";
|
|
4878
|
+
readonly resize: "Resize detail panel";
|
|
4879
|
+
};
|
|
4880
|
+
readonly expander: {
|
|
4881
|
+
readonly collapse: "Collapse {{count}} items";
|
|
4882
|
+
readonly expand: "Expand {{count}} items";
|
|
4883
|
+
readonly expandWithParentSingular: "Expand {{parent}}, {{count}} child";
|
|
4884
|
+
readonly expandWithParentPlural: "Expand {{parent}}, {{count}} children";
|
|
4885
|
+
readonly collapseWithParent: "Collapse {{parent}}";
|
|
4886
|
+
readonly collapseDefault: "Collapse children";
|
|
4887
|
+
};
|
|
4888
|
+
};
|
|
4851
4889
|
readonly wizard: {
|
|
4852
4890
|
readonly previous: "Previous";
|
|
4853
4891
|
readonly next: "Continue";
|
|
@@ -14548,9 +14586,9 @@ declare namespace Calendar {
|
|
|
14548
14586
|
|
|
14549
14587
|
declare module "@tiptap/core" {
|
|
14550
14588
|
interface Commands<ReturnType> {
|
|
14551
|
-
|
|
14552
|
-
|
|
14553
|
-
|
|
14589
|
+
aiBlock: {
|
|
14590
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
14591
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
14554
14592
|
};
|
|
14555
14593
|
}
|
|
14556
14594
|
}
|
|
@@ -14558,9 +14596,9 @@ declare module "@tiptap/core" {
|
|
|
14558
14596
|
|
|
14559
14597
|
declare module "@tiptap/core" {
|
|
14560
14598
|
interface Commands<ReturnType> {
|
|
14561
|
-
|
|
14562
|
-
|
|
14563
|
-
|
|
14599
|
+
enhanceHighlight: {
|
|
14600
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
14601
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
14564
14602
|
};
|
|
14565
14603
|
}
|
|
14566
14604
|
}
|
|
@@ -14593,3 +14631,18 @@ declare module "@tiptap/core" {
|
|
|
14593
14631
|
};
|
|
14594
14632
|
}
|
|
14595
14633
|
}
|
|
14634
|
+
|
|
14635
|
+
|
|
14636
|
+
declare namespace F0GraphNodeWrapperInner {
|
|
14637
|
+
var displayName: string;
|
|
14638
|
+
}
|
|
14639
|
+
|
|
14640
|
+
|
|
14641
|
+
declare namespace F0GraphExpanderWrapperInner {
|
|
14642
|
+
var displayName: string;
|
|
14643
|
+
}
|
|
14644
|
+
|
|
14645
|
+
|
|
14646
|
+
declare namespace F0GraphCollapserWrapperInner {
|
|
14647
|
+
var displayName: string;
|
|
14648
|
+
}
|
package/dist/f0.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { fg as Hr, ad as se, bt as On, t as M, w as ft, fh as Wr, v as yt, dh as qo, am as rr, fi as $o, an as qr, Y as he, u as re, N as oe, f7 as Xt, K as Go, D as jo, Q as $r, fj as vn, ae as Me, aa as bi, fk as Uo, fl as Vo, fm as Qo, fn as sr, fo as Ko, fp as Yo, fq as Gr, fr as Xo, aL as yi, aM as xi, A as zn, aN as wi, at as jr, ct as bn, fs as Ur, ft as Jo, dY as Zo, fu as or, dW as ea, fv as ta, fw as wt, fx as Jt, fy as na, fz as ia, af as We, ay as ra, cI as ui, cH as Vr, fA as sa, b_ as oa, fB as Qr, fC as Mn, eL as Ci, fD as aa, a7 as Ni, W as ce, a8 as la, a9 as qt, bQ as ca, al as In, f3 as Si, fE as da, fF as ua, fG as ha, fH as fa, cd as ma, m as ga, d1 as pa, M as Kr, eN as mt, fI as Yr, fJ as Xr, bT as Ei, fK as Jr, O as _i, P as Di, fL as ki, V as Ri, a0 as ke, a2 as xt, fM as zt, fN as Mt, U as It, fO as Bt, fP as va, fQ as At, fR as Zr, aA as ba, fS as yn, bk as $t, fT as De, c3 as ya, fU as Gt, c2 as xa, c1 as wa, fV as Ca, fW as Na, bm as Bn, a3 as Pn, bh as Ti, bn as Fi, aK as Sa, fX as Oe, fY as Ea, fZ as _a, f_ as es, f$ as Hn, g0 as Da, g1 as ka, c8 as ts, bV as ns, g2 as Ra, g3 as Ta, g4 as Fa, g5 as Aa, aY as is, b2 as La, fa as Oa, fb as za, fd as Ma, g6 as rs, bv as Ct, bz as Nt, bH as Zt, g7 as Ai, g8 as Ia, bw as Ba, bd as Pa, X as ss, bl as Ha, a5 as Wa } from "./useDataCollectionSource-
|
|
2
|
-
import { gz as Vf, d as Qf, b$ as Kf, l as Yf, gL as Xf, aX as Jf, k as Zf, F as em, a as tm, C as nm, gr as im, b as rm, bJ as sm, be as om, bK as am, ga as lm, aP as cm, bs as dm, as as um, gb as hm, aB as fm, bY as mm, gf as gm, gg as pm, gh as vm, gQ as bm, b4 as ym, n as xm, aD as wm, bB as Cm, gu as Nm, b8 as Sm, gv as Em, gx as _m, gy as Dm, cF as km, cD as Rm, e as Tm, h as Fm, gA as Am, cp as Lm, cq as Om, g9 as zm, gP as Mm, b1 as Im, cE as Bm, gw as Pm, cr as Hm, bZ as Wm, gR as qm, gc as $m, gd as Gm, ge as jm, cs as Um, gK as Vm, gF as Qm, gt as Km, gn as Ym, gm as Xm, gl as Jm, gI as Zm, gE as eg, a$ as tg, co as ng, cl as ig, cn as rg, ck as sg, go as og, gD as ag, gC as lg, gp as cg, c7 as dg, cm as ug, gj as hg, gk as fg, gq as mg, g as gg, c as pg, gB as vg, gG as bg, gM as yg, gN as xg, gO as wg, aZ as Cg, gs as Ng, gi as Sg, i as Eg, gH as _g, bu as Dg, aW as kg, gJ as Rg, j as Tg, f as Fg, gS as Ag } from "./useDataCollectionSource-
|
|
1
|
+
import { fg as Hr, ad as se, bt as On, t as M, w as ft, fh as Wr, v as yt, dh as qo, am as rr, fi as $o, an as qr, Y as he, u as re, N as oe, f7 as Xt, K as Go, D as jo, Q as $r, fj as vn, ae as Me, aa as bi, fk as Uo, fl as Vo, fm as Qo, fn as sr, fo as Ko, fp as Yo, fq as Gr, fr as Xo, aL as yi, aM as xi, A as zn, aN as wi, at as jr, ct as bn, fs as Ur, ft as Jo, dY as Zo, fu as or, dW as ea, fv as ta, fw as wt, fx as Jt, fy as na, fz as ia, af as We, ay as ra, cI as ui, cH as Vr, fA as sa, b_ as oa, fB as Qr, fC as Mn, eL as Ci, fD as aa, a7 as Ni, W as ce, a8 as la, a9 as qt, bQ as ca, al as In, f3 as Si, fE as da, fF as ua, fG as ha, fH as fa, cd as ma, m as ga, d1 as pa, M as Kr, eN as mt, fI as Yr, fJ as Xr, bT as Ei, fK as Jr, O as _i, P as Di, fL as ki, V as Ri, a0 as ke, a2 as xt, fM as zt, fN as Mt, U as It, fO as Bt, fP as va, fQ as At, fR as Zr, aA as ba, fS as yn, bk as $t, fT as De, c3 as ya, fU as Gt, c2 as xa, c1 as wa, fV as Ca, fW as Na, bm as Bn, a3 as Pn, bh as Ti, bn as Fi, aK as Sa, fX as Oe, fY as Ea, fZ as _a, f_ as es, f$ as Hn, g0 as Da, g1 as ka, c8 as ts, bV as ns, g2 as Ra, g3 as Ta, g4 as Fa, g5 as Aa, aY as is, b2 as La, fa as Oa, fb as za, fd as Ma, g6 as rs, bv as Ct, bz as Nt, bH as Zt, g7 as Ai, g8 as Ia, bw as Ba, bd as Pa, X as ss, bl as Ha, a5 as Wa } from "./useDataCollectionSource-DeiW759t.js";
|
|
2
|
+
import { gz as Vf, d as Qf, b$ as Kf, l as Yf, gL as Xf, aX as Jf, k as Zf, F as em, a as tm, C as nm, gr as im, b as rm, bJ as sm, be as om, bK as am, ga as lm, aP as cm, bs as dm, as as um, gb as hm, aB as fm, bY as mm, gf as gm, gg as pm, gh as vm, gQ as bm, b4 as ym, n as xm, aD as wm, bB as Cm, gu as Nm, b8 as Sm, gv as Em, gx as _m, gy as Dm, cF as km, cD as Rm, e as Tm, h as Fm, gA as Am, cp as Lm, cq as Om, g9 as zm, gP as Mm, b1 as Im, cE as Bm, gw as Pm, cr as Hm, bZ as Wm, gR as qm, gc as $m, gd as Gm, ge as jm, cs as Um, gK as Vm, gF as Qm, gt as Km, gn as Ym, gm as Xm, gl as Jm, gI as Zm, gE as eg, a$ as tg, co as ng, cl as ig, cn as rg, ck as sg, go as og, gD as ag, gC as lg, gp as cg, c7 as dg, cm as ug, gj as hg, gk as fg, gq as mg, g as gg, c as pg, gB as vg, gG as bg, gM as yg, gN as xg, gO as wg, aZ as Cg, gs as Ng, gi as Sg, i as Eg, gH as _g, bu as Dg, aW as kg, gJ as Rg, j as Tg, f as Fg, gS as Ag } from "./useDataCollectionSource-DeiW759t.js";
|
|
3
3
|
import { jsx as l, jsxs as x, Fragment as we } from "react/jsx-runtime";
|
|
4
4
|
import le, { forwardRef as qe, useRef as W, useImperativeHandle as qa, Children as xn, createContext as Ye, useContext as Re, useState as G, useMemo as P, useEffect as U, useCallback as B, useLayoutEffect as hi, createElement as an, isValidElement as os, Fragment as $a, memo as as, useReducer as Ga, cloneElement as ja, useId as ls } from "react";
|
|
5
|
-
import { t as Ua, v as Va, w as cs, x as Qa, y as Ka, z as Wn, B as Ya, E as Li, G as Xa, H as Ja, I as ds, J as wn, K as Oi, L as us, N as Za, O as hs, P as ar, Q as el } from "./F0AiProposalCard-
|
|
6
|
-
import { A as Og, U as zg, C as Mg, c as Ig, D as Bg, a as Pg, b as Hg, S as Wg, e as qg, f as $g, g as Gg, h as jg, p as Ug, l as Vg, r as Qg, $ as Kg, m as Yg, R as Xg, a0 as Jg, n as Zg, i as ep, a5 as tp, F as np, d as ip, V as rp, W as sp, X as op, Y as ap, M as lp, Z as cp, _ as dp, k as up, j as hp, T as fp, q as mp, a3 as gp, a2 as pp, o as vp, s as bp, u as yp, a4 as xp, a6 as wp, a1 as Cp } from "./F0AiProposalCard-
|
|
5
|
+
import { t as Ua, v as Va, w as cs, x as Qa, y as Ka, z as Wn, B as Ya, E as Li, G as Xa, H as Ja, I as ds, J as wn, K as Oi, L as us, N as Za, O as hs, P as ar, Q as el } from "./F0AiProposalCard-CDG2dAfX.js";
|
|
6
|
+
import { A as Og, U as zg, C as Mg, c as Ig, D as Bg, a as Pg, b as Hg, S as Wg, e as qg, f as $g, g as Gg, h as jg, p as Ug, l as Vg, r as Qg, $ as Kg, m as Yg, R as Xg, a0 as Jg, n as Zg, i as ep, a5 as tp, F as np, d as ip, V as rp, W as sp, X as op, Y as ap, M as lp, Z as cp, _ as dp, k as up, j as hp, T as fp, q as mp, a3 as gp, a2 as pp, o as vp, s as bp, u as yp, a4 as xp, a6 as wp, a1 as Cp } from "./F0AiProposalCard-CDG2dAfX.js";
|
|
7
7
|
import { createPortal as fs, unstable_batchedUpdates as ln } from "react-dom";
|
|
8
|
-
import { C as tl, D as nl, E as il, l as rl } from "./index-
|
|
9
|
-
import { n as Sp, o as Ep, p as _p, u as Dp, F as kp, q as Rp, x as Tp, y as Fp, N as Ap, z as Lp, r as Op, P as zp, t as Mp, R as Ip, s as Bp, j as Pp, k as Hp, w as Wp, v as qp } from "./index-
|
|
8
|
+
import { C as tl, D as nl, E as il, l as rl } from "./index-D928oKGT.js";
|
|
9
|
+
import { n as Sp, o as Ep, p as _p, u as Dp, F as kp, q as Rp, x as Tp, y as Fp, N as Ap, z as Lp, r as Op, P as zp, t as Mp, R as Ip, s as Bp, j as Pp, k as Hp, w as Wp, v as qp } from "./index-D928oKGT.js";
|
|
10
10
|
import { defaultTranslations as Gp } from "./i18n-provider-defaults.js";
|
|
11
11
|
import './f0.css';const sl = {
|
|
12
12
|
xs: 1,
|
|
@@ -773,6 +773,44 @@ export declare const defaultTranslations: {
|
|
|
773
773
|
};
|
|
774
774
|
};
|
|
775
775
|
};
|
|
776
|
+
readonly graph: {
|
|
777
|
+
readonly canvas: "Graph canvas";
|
|
778
|
+
readonly view: "Graph view";
|
|
779
|
+
readonly controls: {
|
|
780
|
+
readonly findMe: "Find me";
|
|
781
|
+
readonly fitToView: "Fit to view";
|
|
782
|
+
readonly zoomIn: "Zoom in";
|
|
783
|
+
readonly zoomOut: "Zoom out";
|
|
784
|
+
readonly navigation: "Graph navigation";
|
|
785
|
+
readonly metadataSettings: "Metadata visibility";
|
|
786
|
+
readonly tagTypeLabels: {
|
|
787
|
+
readonly person: "People";
|
|
788
|
+
readonly team: "Teams";
|
|
789
|
+
readonly company: "Companies";
|
|
790
|
+
readonly status: "Statuses";
|
|
791
|
+
readonly alert: "Alerts";
|
|
792
|
+
readonly balance: "Balances";
|
|
793
|
+
readonly dot: "Tags";
|
|
794
|
+
readonly raw: "Tags";
|
|
795
|
+
};
|
|
796
|
+
};
|
|
797
|
+
readonly search: {
|
|
798
|
+
readonly noResults: "No results";
|
|
799
|
+
};
|
|
800
|
+
readonly detailPanel: {
|
|
801
|
+
readonly details: "Details";
|
|
802
|
+
readonly moreActions: "More actions";
|
|
803
|
+
readonly resize: "Resize detail panel";
|
|
804
|
+
};
|
|
805
|
+
readonly expander: {
|
|
806
|
+
readonly collapse: "Collapse {{count}} items";
|
|
807
|
+
readonly expand: "Expand {{count}} items";
|
|
808
|
+
readonly expandWithParentSingular: "Expand {{parent}}, {{count}} child";
|
|
809
|
+
readonly expandWithParentPlural: "Expand {{parent}}, {{count}} children";
|
|
810
|
+
readonly collapseWithParent: "Collapse {{parent}}";
|
|
811
|
+
readonly collapseDefault: "Collapse children";
|
|
812
|
+
};
|
|
813
|
+
};
|
|
776
814
|
readonly wizard: {
|
|
777
815
|
readonly previous: "Previous";
|
|
778
816
|
readonly next: "Continue";
|
|
@@ -842,9 +880,9 @@ declare namespace Calendar {
|
|
|
842
880
|
|
|
843
881
|
declare module "@tiptap/core" {
|
|
844
882
|
interface Commands<ReturnType> {
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
883
|
+
aiBlock: {
|
|
884
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
885
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
848
886
|
};
|
|
849
887
|
}
|
|
850
888
|
}
|
|
@@ -852,9 +890,9 @@ declare module "@tiptap/core" {
|
|
|
852
890
|
|
|
853
891
|
declare module "@tiptap/core" {
|
|
854
892
|
interface Commands<ReturnType> {
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
893
|
+
enhanceHighlight: {
|
|
894
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
895
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
858
896
|
};
|
|
859
897
|
}
|
|
860
898
|
}
|
|
@@ -887,3 +925,18 @@ declare module "@tiptap/core" {
|
|
|
887
925
|
};
|
|
888
926
|
}
|
|
889
927
|
}
|
|
928
|
+
|
|
929
|
+
|
|
930
|
+
declare namespace F0GraphNodeWrapperInner {
|
|
931
|
+
var displayName: string;
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
|
|
935
|
+
declare namespace F0GraphExpanderWrapperInner {
|
|
936
|
+
var displayName: string;
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
|
|
940
|
+
declare namespace F0GraphCollapserWrapperInner {
|
|
941
|
+
var displayName: string;
|
|
942
|
+
}
|
|
@@ -773,6 +773,44 @@ const e = {
|
|
|
773
773
|
}
|
|
774
774
|
}
|
|
775
775
|
},
|
|
776
|
+
graph: {
|
|
777
|
+
canvas: "Graph canvas",
|
|
778
|
+
view: "Graph view",
|
|
779
|
+
controls: {
|
|
780
|
+
findMe: "Find me",
|
|
781
|
+
fitToView: "Fit to view",
|
|
782
|
+
zoomIn: "Zoom in",
|
|
783
|
+
zoomOut: "Zoom out",
|
|
784
|
+
navigation: "Graph navigation",
|
|
785
|
+
metadataSettings: "Metadata visibility",
|
|
786
|
+
tagTypeLabels: {
|
|
787
|
+
person: "People",
|
|
788
|
+
team: "Teams",
|
|
789
|
+
company: "Companies",
|
|
790
|
+
status: "Statuses",
|
|
791
|
+
alert: "Alerts",
|
|
792
|
+
balance: "Balances",
|
|
793
|
+
dot: "Tags",
|
|
794
|
+
raw: "Tags"
|
|
795
|
+
}
|
|
796
|
+
},
|
|
797
|
+
search: {
|
|
798
|
+
noResults: "No results"
|
|
799
|
+
},
|
|
800
|
+
detailPanel: {
|
|
801
|
+
details: "Details",
|
|
802
|
+
moreActions: "More actions",
|
|
803
|
+
resize: "Resize detail panel"
|
|
804
|
+
},
|
|
805
|
+
expander: {
|
|
806
|
+
collapse: "Collapse {{count}} items",
|
|
807
|
+
expand: "Expand {{count}} items",
|
|
808
|
+
expandWithParentSingular: "Expand {{parent}}, {{count}} child",
|
|
809
|
+
expandWithParentPlural: "Expand {{parent}}, {{count}} children",
|
|
810
|
+
collapseWithParent: "Collapse {{parent}}",
|
|
811
|
+
collapseDefault: "Collapse children"
|
|
812
|
+
}
|
|
813
|
+
},
|
|
776
814
|
wizard: {
|
|
777
815
|
previous: "Previous",
|
|
778
816
|
next: "Continue",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs as A, jsx as g, Fragment as tn } from "react/jsx-runtime";
|
|
2
2
|
import * as U from "react";
|
|
3
3
|
import C, { useRef as Ct, useState as ue, useCallback as Ye, useEffect as it, useLayoutEffect as mc, PureComponent as Wn, useMemo as Ps, forwardRef as Pt, useId as gc, useImperativeHandle as yc } from "react";
|
|
4
|
-
import { Q as Tn, a5 as cf, t as G, X as uf, cH as df, cI as ff, w as Ds, ad as Ne, ae as bc, cJ as Sn, cK as hf, cL as pf, cM as Na, cN as Pa, cO as Da, cP as Ma, cQ as Ia, cR as mf, cS as gf, cT as yf, cU as bf, cV as vc, cW as wc, ar as Nn, cX as Ee, cY as W, cZ as Ie, c_ as xc, c$ as vf, d0 as Sc, d1 as Ms, d2 as wf, d3 as ge, d4 as Ki, d5 as ie, d6 as kc, d7 as Gi, d8 as Is, d9 as Ls, da as Rs, db as he, dc as De, dd as Ho, de as Yi, df as xf, dg as Ce, dh as qi, di as Pe, dj as hn, dk as $s, dl as Xi, dm as ui, dn as Ji, bL as js, dp as Sf, dq as Zr, dr as Si, ds as kf, dt as Af, du as Cf, dv as Ef, dw as Of, dx as _f, dy as Ac, dz as Cc, dA as Ec, dB as Oc, dC as _c, dD as Tf, dE as ki, dF as Nf, dG as Pf, dH as Lr, dI as Wt, dJ as _t, dK as Fs, dL as Rr, dM as Tc, dN as Nc, dO as Df, dP as Mf, dQ as If, dR as Lf, bu as Rf, dS as $f, dT as Oe, dU as _e, T as jf, x as Ff, y as zf, E as Bf, dV as Vf, dW as Pc, A as Hf, dX as Wf, bt as mt, N as on, aY as Uf, W as ce, a3 as zs, dY as Kf, ck as ke, dZ as So, d_ as Qe, d$ as gt, e0 as $e, e1 as Gf, e2 as di, e3 as nt, e4 as Dc, e5 as qe, e6 as Bs, e7 as Ze, e8 as La, e9 as Yf, ea as Mc, eb as ye, ec as Ve, ed as yr, ee as Ai, ef as Ic, eg as qf, eh as pn, ei as Xf, ej as Jf, ek as Zf, Y as j, am as Lc, b1 as Qf, an as Rc, el as $r, em as jr, en as Vs, eo as eh, ep as $c, eq as jc, er as Fc, es as th, et as zc, eu as Bc, ev as Vc, ew as Hc, ex as Wc, ey as Uc, ez as nh, eA as rh, u as Un, ac as ih, bk as Zi, K as oh, v as Qr, aX as sh, aF as ah, a_ as lh, eB as ch, eC as uh, eD as dh, eE as fh, eF as hh, eG as ph, a8 as Kc, a9 as Hs, aa as Ws, eH as Ra, eI as mh, eJ as gh, eK as yh, eL as bh, eM as vh, eN as wh, eO as xh, eP as Sh, eQ as kh, eR as Ah, eS as Ch, eT as Eh, eU as Oh, eV as _h, eW as Th, eX as Nh, eY as Ph, as as Dh, eZ as Mh, e_ as Ih, e$ as Lh, f0 as Rh, f1 as $h, f2 as jh, f3 as Fh, f4 as zh, aB as $a, at as Gc, f5 as Bh, bJ as Yc, f6 as Vh, aA as Hh, f7 as Wh, f8 as Uh, f9 as Kh, fa as Gh, fb as Yh, fc as qh, fd as Xh, fe as Jh, ff as Zh } from "./useDataCollectionSource-
|
|
4
|
+
import { Q as Tn, a5 as cf, t as G, X as uf, cH as df, cI as ff, w as Ds, ad as Ne, ae as bc, cJ as Sn, cK as hf, cL as pf, cM as Na, cN as Pa, cO as Da, cP as Ma, cQ as Ia, cR as mf, cS as gf, cT as yf, cU as bf, cV as vc, cW as wc, ar as Nn, cX as Ee, cY as W, cZ as Ie, c_ as xc, c$ as vf, d0 as Sc, d1 as Ms, d2 as wf, d3 as ge, d4 as Ki, d5 as ie, d6 as kc, d7 as Gi, d8 as Is, d9 as Ls, da as Rs, db as he, dc as De, dd as Ho, de as Yi, df as xf, dg as Ce, dh as qi, di as Pe, dj as hn, dk as $s, dl as Xi, dm as ui, dn as Ji, bL as js, dp as Sf, dq as Zr, dr as Si, ds as kf, dt as Af, du as Cf, dv as Ef, dw as Of, dx as _f, dy as Ac, dz as Cc, dA as Ec, dB as Oc, dC as _c, dD as Tf, dE as ki, dF as Nf, dG as Pf, dH as Lr, dI as Wt, dJ as _t, dK as Fs, dL as Rr, dM as Tc, dN as Nc, dO as Df, dP as Mf, dQ as If, dR as Lf, bu as Rf, dS as $f, dT as Oe, dU as _e, T as jf, x as Ff, y as zf, E as Bf, dV as Vf, dW as Pc, A as Hf, dX as Wf, bt as mt, N as on, aY as Uf, W as ce, a3 as zs, dY as Kf, ck as ke, dZ as So, d_ as Qe, d$ as gt, e0 as $e, e1 as Gf, e2 as di, e3 as nt, e4 as Dc, e5 as qe, e6 as Bs, e7 as Ze, e8 as La, e9 as Yf, ea as Mc, eb as ye, ec as Ve, ed as yr, ee as Ai, ef as Ic, eg as qf, eh as pn, ei as Xf, ej as Jf, ek as Zf, Y as j, am as Lc, b1 as Qf, an as Rc, el as $r, em as jr, en as Vs, eo as eh, ep as $c, eq as jc, er as Fc, es as th, et as zc, eu as Bc, ev as Vc, ew as Hc, ex as Wc, ey as Uc, ez as nh, eA as rh, u as Un, ac as ih, bk as Zi, K as oh, v as Qr, aX as sh, aF as ah, a_ as lh, eB as ch, eC as uh, eD as dh, eE as fh, eF as hh, eG as ph, a8 as Kc, a9 as Hs, aa as Ws, eH as Ra, eI as mh, eJ as gh, eK as yh, eL as bh, eM as vh, eN as wh, eO as xh, eP as Sh, eQ as kh, eR as Ah, eS as Ch, eT as Eh, eU as Oh, eV as _h, eW as Th, eX as Nh, eY as Ph, as as Dh, eZ as Mh, e_ as Ih, e$ as Lh, f0 as Rh, f1 as $h, f2 as jh, f3 as Fh, f4 as zh, aB as $a, at as Gc, f5 as Bh, bJ as Yc, f6 as Vh, aA as Hh, f7 as Wh, f8 as Uh, f9 as Kh, fa as Gh, fb as Yh, fc as qh, fd as Xh, fe as Jh, ff as Zh } from "./useDataCollectionSource-DeiW759t.js";
|
|
5
5
|
import './index.css';const Qh = {
|
|
6
6
|
active: !0,
|
|
7
7
|
breakpoints: {},
|