@factorialco/f0-react 3.10.0 → 3.12.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/{F0CanvasPanel-BvLSkRnA.js → F0CanvasPanel-DWqZRYSD.js} +14737 -14661
- package/dist/ai.d.ts +6 -6
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +18 -6
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +18 -6
- package/dist/f0.js +6 -6
- package/dist/i18n-provider-defaults.d.ts +6 -6
- package/dist/{useChatHistory-BiGAedQR.js → useChatHistory-BJpDjaBs.js} +1 -1
- package/dist/{useDataCollectionSource-i7W7yrnF.js → useDataCollectionSource-DR8se7ko.js} +5751 -5722
- package/package.json +1 -1
package/dist/ai.d.ts
CHANGED
|
@@ -4739,8 +4739,10 @@ declare module "@tiptap/core" {
|
|
|
4739
4739
|
|
|
4740
4740
|
declare module "@tiptap/core" {
|
|
4741
4741
|
interface Commands<ReturnType> {
|
|
4742
|
-
|
|
4743
|
-
|
|
4742
|
+
videoEmbed: {
|
|
4743
|
+
setVideoEmbed: (options: {
|
|
4744
|
+
src: string;
|
|
4745
|
+
}) => ReturnType;
|
|
4744
4746
|
};
|
|
4745
4747
|
}
|
|
4746
4748
|
}
|
|
@@ -4748,10 +4750,8 @@ declare module "@tiptap/core" {
|
|
|
4748
4750
|
|
|
4749
4751
|
declare module "@tiptap/core" {
|
|
4750
4752
|
interface Commands<ReturnType> {
|
|
4751
|
-
|
|
4752
|
-
|
|
4753
|
-
src: string;
|
|
4754
|
-
}) => ReturnType;
|
|
4753
|
+
transcript: {
|
|
4754
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
4755
4755
|
};
|
|
4756
4756
|
}
|
|
4757
4757
|
}
|
package/dist/ai.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { C as e, D as r, c as t, F as o, a as i, f as n, g as F, d as C, e as A, I as l, P as d, b as u, u as m } from "./F0CanvasPanel-
|
|
1
|
+
import { C as e, D as r, c as t, F as o, a as i, f as n, g as F, d as C, e as A, I as l, P as d, b as u, u as m } from "./F0CanvasPanel-DWqZRYSD.js";
|
|
2
2
|
import { defaultTranslations as c } from "./i18n-provider-defaults.js";
|
|
3
|
-
import { A as P, s as v, t as f, w as g, l as p, i as T, q as y, x as S, p as x, r as H, j as V, e as b, g as k, k as w, F as M, h as O, a as D, n as j, m as q, o as z, b as B, f as E, v as L, c as R, d as G, u as J } from "./useChatHistory-
|
|
3
|
+
import { A as P, s as v, t as f, w as g, l as p, i as T, q as y, x as S, p as x, r as H, j as V, e as b, g as k, k as w, F as M, h as O, a as D, n as j, m as q, o as z, b as B, f as E, v as L, c as R, d as G, u as J } from "./useChatHistory-BJpDjaBs.js";
|
|
4
4
|
export {
|
|
5
5
|
P as AiChatTranslationsProvider,
|
|
6
6
|
e as ChatSpinner,
|
package/dist/experimental.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ import { BarChartProps } from './experimental';
|
|
|
14
14
|
import { BarSeriesCellValue } from './types/barSeries';
|
|
15
15
|
import { baseColors } from '@factorialco/f0-core';
|
|
16
16
|
import { ButtonHTMLAttributes } from 'react';
|
|
17
|
+
import { CategoryBarChartCellValue } from './types/categoryBarChart';
|
|
17
18
|
import { CategoryBarProps } from './CategoryBarChart';
|
|
18
19
|
import { ChartConfig } from './experimental';
|
|
19
20
|
import { ChartConfig as ChartConfig_2 } from './utils/types';
|
|
@@ -8474,6 +8475,14 @@ maxHeight?: number;
|
|
|
8474
8475
|
*/
|
|
8475
8476
|
export declare type TextareaProps = F0TextAreaInputProps;
|
|
8476
8477
|
|
|
8478
|
+
/** A button rendered in the footer at the bottom of the table of contents */
|
|
8479
|
+
export declare type TOCAction = {
|
|
8480
|
+
label: string;
|
|
8481
|
+
onClick: () => void;
|
|
8482
|
+
icon?: IconType;
|
|
8483
|
+
disabled?: boolean;
|
|
8484
|
+
};
|
|
8485
|
+
|
|
8477
8486
|
export declare type TOCItem<Depth extends 1 | 2 | 3 | 4 = 1> = BaseTOCItem & {
|
|
8478
8487
|
children?: NextDepth<Depth> extends never ? never : TOCItem<NextDepth<Depth>>[];
|
|
8479
8488
|
};
|
|
@@ -8554,6 +8563,8 @@ export declare interface TOCProps {
|
|
|
8554
8563
|
hideChildrenCounter?: boolean;
|
|
8555
8564
|
/** Enable vertical scrolling when content overflows (default: true) */
|
|
8556
8565
|
scrollable?: boolean;
|
|
8566
|
+
/** Action buttons pinned in a footer at the bottom of the panel */
|
|
8567
|
+
actions?: TOCAction[];
|
|
8557
8568
|
}
|
|
8558
8569
|
|
|
8559
8570
|
declare type toggleActionType = {
|
|
@@ -9023,6 +9034,7 @@ declare const valueDisplayRenderers: {
|
|
|
9023
9034
|
readonly percentage: (args: PercentageCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element | null;
|
|
9024
9035
|
readonly progressBar: (args: ProgressBarCellValue, _meta: ValueDisplayRendererContext) => JSX_2.Element | null;
|
|
9025
9036
|
readonly barSeries: (args: BarSeriesCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element;
|
|
9037
|
+
readonly categoryBarChart: (args: CategoryBarChartCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element;
|
|
9026
9038
|
readonly hourDistribution: (args: HourDistributionCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element;
|
|
9027
9039
|
readonly company: (args: CompanyCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element;
|
|
9028
9040
|
readonly team: (args: TeamCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element;
|
|
@@ -9525,8 +9537,10 @@ declare module "@tiptap/core" {
|
|
|
9525
9537
|
|
|
9526
9538
|
declare module "@tiptap/core" {
|
|
9527
9539
|
interface Commands<ReturnType> {
|
|
9528
|
-
|
|
9529
|
-
|
|
9540
|
+
videoEmbed: {
|
|
9541
|
+
setVideoEmbed: (options: {
|
|
9542
|
+
src: string;
|
|
9543
|
+
}) => ReturnType;
|
|
9530
9544
|
};
|
|
9531
9545
|
}
|
|
9532
9546
|
}
|
|
@@ -9534,10 +9548,8 @@ declare module "@tiptap/core" {
|
|
|
9534
9548
|
|
|
9535
9549
|
declare module "@tiptap/core" {
|
|
9536
9550
|
interface Commands<ReturnType> {
|
|
9537
|
-
|
|
9538
|
-
|
|
9539
|
-
src: string;
|
|
9540
|
-
}) => ReturnType;
|
|
9551
|
+
transcript: {
|
|
9552
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
9541
9553
|
};
|
|
9542
9554
|
}
|
|
9543
9555
|
}
|
package/dist/experimental.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { h as ga, B as pa, i as ba, j as xa, k as Dt, l as Be, m as Te, n as va, o as b, p as J, q as ye, u as oe, T as ya, r as wa, s as Na, R as Ca, t as Ia, v as ce, w as ka, x as Nt, y as ut, z as Ve, A as Le, E as Sa, G as Fa, H as U, J as Aa, K as La, L as xe, M as mn, N as Oa, O as Pa, Q as H, S as hn, U as z, V as ke, W as Ea, X as _a, Y as Da, Z as Ta, _ as za, $ as Oe, a0 as gn, a1 as Ra, a2 as we, a3 as Ue, a4 as Ba, e as pn, a5 as Ae, a6 as $a, a7 as bn, a8 as ie, a9 as X, aa as xn, ab as vn, ac as Ma, ad as yn, ae as pe, af as ae, ag as Wa, ah as ja, ai as Va, aj as Ua, ak as ve, al as Ye, am as Ha, an as Ga, ao as Ka, ap as qa, aq as Je, ar as wn, as as Ya, at as Ja, au as Za, av as He, aw as Xa, ax as Nn, ay as Qa, az as er, aA as tr, aB as nr, aC as ar, aD as rr, aE as ir, aF as lr, aG as ft, aH as Cn, aI as mt, aJ as In, aK as sr, aL as or, aM as cr, aN as dr, aO as ur, aP as Ze, aQ as Xe, aR as ht, aS as kn, aT as fr, aU as Ct, aV as mr, aW as hr, aX as gr, aY as Re, aZ as pr, a_ as br, a$ as $e, b0 as Tt, b1 as gt, b2 as xr, b3 as vr, a as yr, b as wr, b4 as Sn, b5 as Nr, g as Cr, F as Ir, b6 as kr, b7 as Fn, b8 as Sr, b9 as An, ba as Ln, bb as Fr, bc as Ar, bd as Lr, be as Or, bf as Pr, bg as Er, bh as _r, bi as Dr, bj as Tr, bk as On, bl as zr, bm as Rr, bn as Br, bo as $r, bp as ge, bq as It, br as kt, bs as St, bt as Pn, bu as Ft, bv as En, bw as _n, bx as Mr, by as Wr, bz as jr, bA as Vr, bB as Ur, bC as Hr, bD as Gr, bE as Kr, bF as zt, bG as qr, bH as Yr, bI as Rt, bJ as Bt, bK as $t, bL as Jr, bM as Zr, bN as Xr, bO as Qr, bP as Dn, bQ as ei, bR as ti } from "./F0CanvasPanel-
|
|
2
|
-
import { c1 as Kc, c0 as qc, cd as Yc, bZ as Jc, b_ as Zc, bS as Xc, cg as Qc, bT as ed, bU as td, ch as nd, b$ as ad, c9 as rd, ca as id, ce as ld, bV as sd, c3 as od, c2 as cd, bW as dd, bX as ud, cb as fd, ci as md, cc as hd, cf as gd, c8 as pd, c5 as bd, c7 as xd, c4 as vd, bY as yd, c6 as wd } from "./F0CanvasPanel-
|
|
1
|
+
import { h as ga, B as pa, i as ba, j as xa, k as Dt, l as Be, m as Te, n as va, o as b, p as J, q as ye, u as oe, T as ya, r as wa, s as Na, R as Ca, t as Ia, v as ce, w as ka, x as Nt, y as ut, z as Ve, A as Le, E as Sa, G as Fa, H as U, J as Aa, K as La, L as xe, M as mn, N as Oa, O as Pa, Q as H, S as hn, U as z, V as ke, W as Ea, X as _a, Y as Da, Z as Ta, _ as za, $ as Oe, a0 as gn, a1 as Ra, a2 as we, a3 as Ue, a4 as Ba, e as pn, a5 as Ae, a6 as $a, a7 as bn, a8 as ie, a9 as X, aa as xn, ab as vn, ac as Ma, ad as yn, ae as pe, af as ae, ag as Wa, ah as ja, ai as Va, aj as Ua, ak as ve, al as Ye, am as Ha, an as Ga, ao as Ka, ap as qa, aq as Je, ar as wn, as as Ya, at as Ja, au as Za, av as He, aw as Xa, ax as Nn, ay as Qa, az as er, aA as tr, aB as nr, aC as ar, aD as rr, aE as ir, aF as lr, aG as ft, aH as Cn, aI as mt, aJ as In, aK as sr, aL as or, aM as cr, aN as dr, aO as ur, aP as Ze, aQ as Xe, aR as ht, aS as kn, aT as fr, aU as Ct, aV as mr, aW as hr, aX as gr, aY as Re, aZ as pr, a_ as br, a$ as $e, b0 as Tt, b1 as gt, b2 as xr, b3 as vr, a as yr, b as wr, b4 as Sn, b5 as Nr, g as Cr, F as Ir, b6 as kr, b7 as Fn, b8 as Sr, b9 as An, ba as Ln, bb as Fr, bc as Ar, bd as Lr, be as Or, bf as Pr, bg as Er, bh as _r, bi as Dr, bj as Tr, bk as On, bl as zr, bm as Rr, bn as Br, bo as $r, bp as ge, bq as It, br as kt, bs as St, bt as Pn, bu as Ft, bv as En, bw as _n, bx as Mr, by as Wr, bz as jr, bA as Vr, bB as Ur, bC as Hr, bD as Gr, bE as Kr, bF as zt, bG as qr, bH as Yr, bI as Rt, bJ as Bt, bK as $t, bL as Jr, bM as Zr, bN as Xr, bO as Qr, bP as Dn, bQ as ei, bR as ti } from "./F0CanvasPanel-DWqZRYSD.js";
|
|
2
|
+
import { c1 as Kc, c0 as qc, cd as Yc, bZ as Jc, b_ as Zc, bS as Xc, cg as Qc, bT as ed, bU as td, ch as nd, b$ as ad, c9 as rd, ca as id, ce as ld, bV as sd, c3 as od, c2 as cd, bW as dd, bX as ud, cb as fd, ci as md, cc as hd, cf as gd, c8 as pd, c5 as bd, c7 as xd, c4 as vd, bY as yd, c6 as wd } from "./F0CanvasPanel-DWqZRYSD.js";
|
|
3
3
|
import { jsx as e, jsxs as o, Fragment as Z } from "react/jsx-runtime";
|
|
4
4
|
import ue, { forwardRef as G, useRef as j, useTransition as ni, useState as D, useLayoutEffect as Tn, useId as pt, useContext as Pe, createContext as Qe, useEffect as W, useCallback as ne, useMemo as q, Fragment as ai, isValidElement as ri, cloneElement as zn, Children as Rn } from "react";
|
|
5
|
-
import { C as ii, P as li, a as Bn, M as si, p as oi, b as ci, R as Mt, c as $n, u as di, d as ui, e as fi, f as mi, g as hi, h as Mn, S as gi, A as pi, B as bi, L as xi, i as vi, V as yi, j as wi, k as Ni, l as Ci, O as Ii } from "./useDataCollectionSource-
|
|
6
|
-
import { r as Cd, s as Id, o as kd, H as Sd, t as Fd, z as Ad, a8 as Ld, G as Od, q as Pd, aa as Ed, a9 as _d, Q as Dd, ad as Td, F as zd, Y as Rd, U as Bd, J as $d, af as Md, K as Wd, Z as jd, _ as Vd, v as Ud, ab as Hd, ac as Gd, N as Kd, $ as qd, a5 as Yd, a7 as Jd, w as Zd, y as Xd, D as Qd, W as eu, ae as tu, X as nu, T as au, ag as ru, x as iu, E as lu, m as su, n as ou, a1 as cu, a2 as du, a6 as uu, I as fu, a3 as mu, a0 as hu, a4 as gu } from "./useDataCollectionSource-
|
|
5
|
+
import { C as ii, P as li, a as Bn, M as si, p as oi, b as ci, R as Mt, c as $n, u as di, d as ui, e as fi, f as mi, g as hi, h as Mn, S as gi, A as pi, B as bi, L as xi, i as vi, V as yi, j as wi, k as Ni, l as Ci, O as Ii } from "./useDataCollectionSource-DR8se7ko.js";
|
|
6
|
+
import { r as Cd, s as Id, o as kd, H as Sd, t as Fd, z as Ad, a8 as Ld, G as Od, q as Pd, aa as Ed, a9 as _d, Q as Dd, ad as Td, F as zd, Y as Rd, U as Bd, J as $d, af as Md, K as Wd, Z as jd, _ as Vd, v as Ud, ab as Hd, ac as Gd, N as Kd, $ as qd, a5 as Yd, a7 as Jd, w as Zd, y as Xd, D as Qd, W as eu, ae as tu, X as nu, T as au, ag as ru, x as iu, E as lu, m as su, n as ou, a1 as cu, a2 as du, a6 as uu, I as fu, a3 as mu, a0 as hu, a4 as gu } from "./useDataCollectionSource-DR8se7ko.js";
|
|
7
7
|
const ki = ga("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
|
@@ -17,6 +17,7 @@ import { baseColors } from '@factorialco/f0-core';
|
|
|
17
17
|
import { BigNumberProps as BigNumberProps_2 } from './types';
|
|
18
18
|
import { BlockContentExtraProps } from './blocks/BlockContent';
|
|
19
19
|
import { BlockProps } from './blocks/Block';
|
|
20
|
+
import { CategoryBarChartCellValue } from './types/categoryBarChart';
|
|
20
21
|
import { CategoryBarProps } from './CategoryBarChart';
|
|
21
22
|
import { ChartConfig } from './f0';
|
|
22
23
|
import { ChartConfig as ChartConfig_2 } from './utils/types';
|
|
@@ -15438,6 +15439,14 @@ export declare type TimelineRowStatus = (typeof timelineRowStatuses)[number];
|
|
|
15438
15439
|
|
|
15439
15440
|
export declare const timelineRowStatuses: readonly ["completed", "in-progress", "not-started"];
|
|
15440
15441
|
|
|
15442
|
+
/** A button rendered in the footer at the bottom of the table of contents */
|
|
15443
|
+
declare type TOCAction = {
|
|
15444
|
+
label: string;
|
|
15445
|
+
onClick: () => void;
|
|
15446
|
+
icon?: IconType;
|
|
15447
|
+
disabled?: boolean;
|
|
15448
|
+
};
|
|
15449
|
+
|
|
15441
15450
|
declare type TOCItem<Depth extends 1 | 2 | 3 | 4 = 1> = BaseTOCItem & {
|
|
15442
15451
|
children?: NextDepth<Depth> extends never ? never : TOCItem<NextDepth<Depth>>[];
|
|
15443
15452
|
};
|
|
@@ -15483,6 +15492,8 @@ declare interface TOCProps {
|
|
|
15483
15492
|
hideChildrenCounter?: boolean;
|
|
15484
15493
|
/** Enable vertical scrolling when content overflows (default: true) */
|
|
15485
15494
|
scrollable?: boolean;
|
|
15495
|
+
/** Action buttons pinned in a footer at the bottom of the panel */
|
|
15496
|
+
actions?: TOCAction[];
|
|
15486
15497
|
}
|
|
15487
15498
|
|
|
15488
15499
|
declare type toggleActionType = {
|
|
@@ -16528,6 +16539,7 @@ declare const valueDisplayRenderers: {
|
|
|
16528
16539
|
readonly percentage: (args: PercentageCellValue, meta: ValueDisplayRendererContext_2) => JSX_2.Element | null;
|
|
16529
16540
|
readonly progressBar: (args: ProgressBarCellValue_2, _meta: ValueDisplayRendererContext_2) => JSX_2.Element | null;
|
|
16530
16541
|
readonly barSeries: (args: BarSeriesCellValue, meta: ValueDisplayRendererContext_2) => JSX_2.Element;
|
|
16542
|
+
readonly categoryBarChart: (args: CategoryBarChartCellValue, meta: ValueDisplayRendererContext_2) => JSX_2.Element;
|
|
16531
16543
|
readonly hourDistribution: (args: HourDistributionCellValue_2, meta: ValueDisplayRendererContext_2) => JSX_2.Element;
|
|
16532
16544
|
readonly company: (args: CompanyCellValue_2, meta: ValueDisplayRendererContext_2) => JSX_2.Element;
|
|
16533
16545
|
readonly team: (args: TeamCellValue_2, meta: ValueDisplayRendererContext_2) => JSX_2.Element;
|
|
@@ -16803,8 +16815,10 @@ declare module "@tiptap/core" {
|
|
|
16803
16815
|
|
|
16804
16816
|
declare module "@tiptap/core" {
|
|
16805
16817
|
interface Commands<ReturnType> {
|
|
16806
|
-
|
|
16807
|
-
|
|
16818
|
+
videoEmbed: {
|
|
16819
|
+
setVideoEmbed: (options: {
|
|
16820
|
+
src: string;
|
|
16821
|
+
}) => ReturnType;
|
|
16808
16822
|
};
|
|
16809
16823
|
}
|
|
16810
16824
|
}
|
|
@@ -16812,10 +16826,8 @@ declare module "@tiptap/core" {
|
|
|
16812
16826
|
|
|
16813
16827
|
declare module "@tiptap/core" {
|
|
16814
16828
|
interface Commands<ReturnType> {
|
|
16815
|
-
|
|
16816
|
-
|
|
16817
|
-
src: string;
|
|
16818
|
-
}) => ReturnType;
|
|
16829
|
+
transcript: {
|
|
16830
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
16819
16831
|
};
|
|
16820
16832
|
}
|
|
16821
16833
|
}
|
package/dist/f0.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { gR as WI, a8 as rt, bp as M_, o as J, q as Ln, gL as $I, p as ta, eZ as pG, af as Gp, U as K, u as $e, H as tt, df as au, A as Hp, j as UI, L as Ka, c$ as Qa, a9 as qt, a5 as kf, gS as gG, ae as El, gI as q0, gT as mG, gU as yG, gV as $S, ea as bG, gW as xG, gX as YI, fz as E_, gY as _G, gZ as wG, g_ as _l, g$ as Pf, h0 as ou, h1 as SG, h2 as XI, h3 as CG, h4 as TG, bJ as DG, bI as AG, v as Cs, J as Of, K as Bf, Q as ct, O as zf, fV as qI, Y as Zt, ad as Vf, _ as hs, h5 as MG, aP as ZI, bg as EG, e6 as US, cV as jI, ba as Gl, bh as LG, aD as L_, aE as N_, aF as I_, al as R_, cd as lv, h6 as k_, h7 as NG, gK as YS, fE as IG, h8 as uv, at as RG, gk as P_, h9 as kG, $ as Ff, c3 as PG, n as OG, l as BG, ha as KI, hb as zG, hc as VG, hd as QI, y as FG, he as GG, hf as HG, hg as WG, hh as XS, fx as $G, hi as UG, g1 as su, g2 as Gf, gg as YG, fT as JI, aa as bn, aq as XG, cO as Z0, cN as e2, g4 as t2, fS as qG, hj as Wp, dq as O_, gw as ZG, a3 as r2, fw as jG, bL as KG, gl as B_, dZ as QG, d_ as JG, d$ as e3, d as t3, eJ as r3, G as n2, cU as Ts, dJ as i2, dp as a2, bO as z_, dL as o2, cF as V_, fX as Ll, fY as Nl, N as Il, fZ as Rl, fW as Pa, cH as s2, as as n3, dm as cv, be as Hl, g7 as Fr, bV as i3, a2 as l2, dr as j0, e7 as Kc, bU as a3, aY as u2, aC as o3, gq as jr, hk as s3, hl as l3, hm as c2, hn as $p, ho as u3, hp as c3, du as f2, ds as d2, e4 as f3, hq as d3, aS as h2, gi as h3, gj as v3, bq as lu, bu as uu, bB as Hf, dM as p3, br as g3, b7 as m3, S as v2, bf as y3, a1 as b3, dj as qS, dI as Qc, fA as x3, fB as _3, hr as w3, aX as S3, bv as C3, cZ as p2, a6 as T3, cM as D3, gO as A3, bD as M3, hs as E3, ht as L3, I as N3, hu as I3, hv as R3, hw as k3, hx as P3, hy as O3 } from "./F0CanvasPanel-
|
|
2
|
-
import { hO as Vpe, C as Fpe, D as Gpe, aQ as Hpe, c as Wpe, F as $pe, a as Upe, hH as Ype, f as Xpe, b8 as qpe, aR as Zpe, bE as jpe, e1 as Kpe, aI as Qpe, bk as Jpe, ak as ege, e9 as tge, bS as rge, g as nge, e0 as ige, hC as age, hT as oge, cg as sge, a$ as lge, e as uge, bT as cge, av as fge, bw as dge, hJ as hge, b3 as vge, hK as pge, hM as gge, hN as mge, ch as yge, hQ as bge, c9 as xge, ca as _ge, P as wge, ce as Sge, hL as Cge, cb as Tge, hP as Dge, hU as Age, hz as Mge, hA as Ege, hB as Lge, cc as Nge, hS as Ige, hI as Rge, hF as kge, hE as Pge, cf as Oge, fQ as Bge, gx as zge, hR as Vge, aV as Fge, c8 as Gge, c5 as Hge, c7 as Wge, c4 as $ge, hG as Uge, gz as Yge, gt as Xge, g5 as qge, hX as Zge, bY as jge, c6 as Kge, hW as Qge, bl as Jge, e2 as eme, fP as tme, g6 as rme, b as nme, bo as ime, gQ as ame, aT as ome, e3 as sme, hD as lme, gv as ume, gu as cme, hV as fme } from "./F0CanvasPanel-
|
|
1
|
+
import { gR as WI, a8 as rt, bp as M_, o as J, q as Ln, gL as $I, p as ta, eZ as pG, af as Gp, U as K, u as $e, H as tt, df as au, A as Hp, j as UI, L as Ka, c$ as Qa, a9 as qt, a5 as kf, gS as gG, ae as El, gI as q0, gT as mG, gU as yG, gV as $S, ea as bG, gW as xG, gX as YI, fz as E_, gY as _G, gZ as wG, g_ as _l, g$ as Pf, h0 as ou, h1 as SG, h2 as XI, h3 as CG, h4 as TG, bJ as DG, bI as AG, v as Cs, J as Of, K as Bf, Q as ct, O as zf, fV as qI, Y as Zt, ad as Vf, _ as hs, h5 as MG, aP as ZI, bg as EG, e6 as US, cV as jI, ba as Gl, bh as LG, aD as L_, aE as N_, aF as I_, al as R_, cd as lv, h6 as k_, h7 as NG, gK as YS, fE as IG, h8 as uv, at as RG, gk as P_, h9 as kG, $ as Ff, c3 as PG, n as OG, l as BG, ha as KI, hb as zG, hc as VG, hd as QI, y as FG, he as GG, hf as HG, hg as WG, hh as XS, fx as $G, hi as UG, g1 as su, g2 as Gf, gg as YG, fT as JI, aa as bn, aq as XG, cO as Z0, cN as e2, g4 as t2, fS as qG, hj as Wp, dq as O_, gw as ZG, a3 as r2, fw as jG, bL as KG, gl as B_, dZ as QG, d_ as JG, d$ as e3, d as t3, eJ as r3, G as n2, cU as Ts, dJ as i2, dp as a2, bO as z_, dL as o2, cF as V_, fX as Ll, fY as Nl, N as Il, fZ as Rl, fW as Pa, cH as s2, as as n3, dm as cv, be as Hl, g7 as Fr, bV as i3, a2 as l2, dr as j0, e7 as Kc, bU as a3, aY as u2, aC as o3, gq as jr, hk as s3, hl as l3, hm as c2, hn as $p, ho as u3, hp as c3, du as f2, ds as d2, e4 as f3, hq as d3, aS as h2, gi as h3, gj as v3, bq as lu, bu as uu, bB as Hf, dM as p3, br as g3, b7 as m3, S as v2, bf as y3, a1 as b3, dj as qS, dI as Qc, fA as x3, fB as _3, hr as w3, aX as S3, bv as C3, cZ as p2, a6 as T3, cM as D3, gO as A3, bD as M3, hs as E3, ht as L3, I as N3, hu as I3, hv as R3, hw as k3, hx as P3, hy as O3 } from "./F0CanvasPanel-DWqZRYSD.js";
|
|
2
|
+
import { hO as Vpe, C as Fpe, D as Gpe, aQ as Hpe, c as Wpe, F as $pe, a as Upe, hH as Ype, f as Xpe, b8 as qpe, aR as Zpe, bE as jpe, e1 as Kpe, aI as Qpe, bk as Jpe, ak as ege, e9 as tge, bS as rge, g as nge, e0 as ige, hC as age, hT as oge, cg as sge, a$ as lge, e as uge, bT as cge, av as fge, bw as dge, hJ as hge, b3 as vge, hK as pge, hM as gge, hN as mge, ch as yge, hQ as bge, c9 as xge, ca as _ge, P as wge, ce as Sge, hL as Cge, cb as Tge, hP as Dge, hU as Age, hz as Mge, hA as Ege, hB as Lge, cc as Nge, hS as Ige, hI as Rge, hF as kge, hE as Pge, cf as Oge, fQ as Bge, gx as zge, hR as Vge, aV as Fge, c8 as Gge, c5 as Hge, c7 as Wge, c4 as $ge, hG as Uge, gz as Yge, gt as Xge, g5 as qge, hX as Zge, bY as jge, c6 as Kge, hW as Qge, bl as Jge, e2 as eme, fP as tme, g6 as rme, b as nme, bo as ime, gQ as ame, aT as ome, e3 as sme, hD as lme, gv as ume, gu as cme, hV as fme } from "./F0CanvasPanel-DWqZRYSD.js";
|
|
3
3
|
import { jsx as S, jsxs as B, Fragment as nt } from "react/jsx-runtime";
|
|
4
4
|
import * as St from "react";
|
|
5
5
|
import xt, { forwardRef as hr, useRef as fe, useImperativeHandle as B3, Children as fv, createContext as Or, useContext as fr, useState as oe, useMemo as le, useEffect as pe, useCallback as ie, useLayoutEffect as K0, isValidElement as g2, Fragment as Up, memo as m2, useReducer as z3, cloneElement as V3, useId as Rc, useSyncExternalStore as ZS } from "react";
|
|
6
|
-
import { T as y2, y as F3, z as G3, B as H3, C as W3, D as b2, E as dv, G as F_, H as x2, I as _2, J as pi, K as $3, L as U3, M as Y3, N as X3, O as q3, F as Z3 } from "./useChatHistory-
|
|
7
|
-
import { A as hme, s as vme, t as pme, w as gme, l as mme, i as yme, q as bme, x as xme, p as _me, r as wme, j as Sme, e as Cme, P as Tme, g as Dme, k as Ame, h as Mme, a as Eme, n as Lme, m as Nme, o as Ime, b as Rme, f as kme, v as Pme, c as Ome, d as Bme, u as zme } from "./useChatHistory-
|
|
6
|
+
import { T as y2, y as F3, z as G3, B as H3, C as W3, D as b2, E as dv, G as F_, H as x2, I as _2, J as pi, K as $3, L as U3, M as Y3, N as X3, O as q3, F as Z3 } from "./useChatHistory-BJpDjaBs.js";
|
|
7
|
+
import { A as hme, s as vme, t as pme, w as gme, l as mme, i as yme, q as bme, x as xme, p as _me, r as wme, j as Sme, e as Cme, P as Tme, g as Dme, k as Ame, h as Mme, a as Eme, n as Lme, m as Nme, o as Ime, b as Rme, f as kme, v as Pme, c as Ome, d as Bme, u as zme } from "./useChatHistory-BJpDjaBs.js";
|
|
8
8
|
import { createPortal as G_, unstable_batchedUpdates as vd } from "react-dom";
|
|
9
|
-
import { C as j3, F as K3, ah as w2, ai as Q3, aj as J3, ak as eH, al as H_, am as W_, G as tH, an as rH, Y as nH, a8 as iH, ao as aH, Q as oH, ap as sH, aq as lH, c as Yp, ar as Wf, R as $_, u as U_, W as S2, O as Y_, as as C2, at as jS, au as X_, o as uH, d as T2, $ as D2, av as cH, aw as fH, ax as dH, ay as hH, az as vH, M as pH } from "./useDataCollectionSource-
|
|
10
|
-
import { r as Fme, s as Gme, H as Hme, t as Wme, z as $me, aQ as Ume, aP as Yme, aL as Xme, aB as qme, aA as Zme, aC as jme, aD as Kme, aa as Qme, a9 as Jme, ad as eye, U as tye, J as rye, af as nye, K as iye, v as aye, aR as oye, ab as sye, ac as lye, N as uye, w as cye, P as fye, y as dye, D as hye, ae as vye, T as pye, ag as gye, x as mye, E as yye, aT as bye, m as xye, n as _ye, aK as wye, aG as Sye, aF as Cye, aS as Tye, a6 as Dye, aI as Aye, aJ as Mye, I as Eye, aU as Lye, aV as Nye, e as Iye, aM as Rye, aN as kye, aO as Pye, aH as Oye, f as Bye, h as zye, aE as Vye, aW as Fye } from "./useDataCollectionSource-
|
|
9
|
+
import { C as j3, F as K3, ah as w2, ai as Q3, aj as J3, ak as eH, al as H_, am as W_, G as tH, an as rH, Y as nH, a8 as iH, ao as aH, Q as oH, ap as sH, aq as lH, c as Yp, ar as Wf, R as $_, u as U_, W as S2, O as Y_, as as C2, at as jS, au as X_, o as uH, d as T2, $ as D2, av as cH, aw as fH, ax as dH, ay as hH, az as vH, M as pH } from "./useDataCollectionSource-DR8se7ko.js";
|
|
10
|
+
import { r as Fme, s as Gme, H as Hme, t as Wme, z as $me, aQ as Ume, aP as Yme, aL as Xme, aB as qme, aA as Zme, aC as jme, aD as Kme, aa as Qme, a9 as Jme, ad as eye, U as tye, J as rye, af as nye, K as iye, v as aye, aR as oye, ab as sye, ac as lye, N as uye, w as cye, P as fye, y as dye, D as hye, ae as vye, T as pye, ag as gye, x as mye, E as yye, aT as bye, m as xye, n as _ye, aK as wye, aG as Sye, aF as Cye, aS as Tye, a6 as Dye, aI as Aye, aJ as Mye, I as Eye, aU as Lye, aV as Nye, e as Iye, aM as Rye, aN as kye, aO as Pye, aH as Oye, f as Bye, h as zye, aE as Vye, aW as Fye } from "./useDataCollectionSource-DR8se7ko.js";
|
|
11
11
|
import { utils as kl, write as A2 } from "./xlsx-Bedf3nwD.js";
|
|
12
12
|
import { defaultTranslations as Hye } from "./i18n-provider-defaults.js";
|
|
13
13
|
import './f0.css';const gH = {
|
|
@@ -894,8 +894,10 @@ declare module "@tiptap/core" {
|
|
|
894
894
|
|
|
895
895
|
declare module "@tiptap/core" {
|
|
896
896
|
interface Commands<ReturnType> {
|
|
897
|
-
|
|
898
|
-
|
|
897
|
+
videoEmbed: {
|
|
898
|
+
setVideoEmbed: (options: {
|
|
899
|
+
src: string;
|
|
900
|
+
}) => ReturnType;
|
|
899
901
|
};
|
|
900
902
|
}
|
|
901
903
|
}
|
|
@@ -903,10 +905,8 @@ declare module "@tiptap/core" {
|
|
|
903
905
|
|
|
904
906
|
declare module "@tiptap/core" {
|
|
905
907
|
interface Commands<ReturnType> {
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
src: string;
|
|
909
|
-
}) => ReturnType;
|
|
908
|
+
transcript: {
|
|
909
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
910
910
|
};
|
|
911
911
|
}
|
|
912
912
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsxs as c, jsx as r, Fragment as xe } from "react/jsx-runtime";
|
|
2
2
|
import { useInsertionEffect as tn, forwardRef as p, createElement as $e, useRef as I, useMemo as ee, useEffect as X, useLayoutEffect as Ct, useState as P, useCallback as q, createContext as Ye, useContext as Pe, useId as vt } from "react";
|
|
3
|
-
import { cj as rn, ck as nn, cl as on, cm as sn, cn as wt, co as an, cp as cn, cq as ln, cr as dn, cs as fn, ct as xt, cu as un, cv as hn, cw as gn, cx as pn, cy as mn, cz as Cn, cA as vn, cB as We, cC as wn, cD as xn, cE as kn, cF as bn, cG as Ln, Z as kt, cH as yn, cI as Mn, cJ as En, cK as Rn, cL as Fn, cM as bt, cN as Nn, cO as Sn, a6 as m1, cP as Vn, aJ as Tn, cQ as Hn, cR as An, cS as Bn, ag as $n, cT as In, bO as Pn, aa as C1, ad as jn, cU as Dn, ba as v1, a1 as Lt, S as Ke, cV as yt, b9 as Zn, cW as _n, cX as On, b2 as Un, bN as zn, $ as Le, au as Gn, be as Mt, cY as Wn, bL as qn, cZ as Re, bH as Xn, c_ as Yn, c$ as Et, b1 as Rt, d0 as Kn, d1 as Qn, d2 as Jn, d3 as eo, d4 as to, d5 as Ft, bz as ro, bA as no, d6 as oo, d7 as so, d8 as io, d9 as ao, da as co, db as lo, dc as fo, dd as uo, de as ho, df as go, dg as po, dh as mo, di as Co, dj as vo, bM as wo, ab as xo, bv as ko, dk as bo, dl as Lo, dm as yo, dn as Mo, dp as Eo, dq as Ro, dr as Fo, ap as No, ds as Nt, M as So, a0 as Vo, dt as St, du as Vt, dv as To, bd as Ho, bc as Ao, dw as Bo, dx as $o, dy as Tt, dz as Io, b0 as Po, ay as jo, dA as Do, as as Zo, b7 as _o, dB as Ht, b6 as Oo, dC as Uo, bi as w1, dD as zo, dE as Go, dF as x1, bJ as Wo, bI as qo, bK as At, dG as Xo, G as Yo, E as Ko, dH as Qo, dI as Jo, dJ as es, dK as ts, dL as rs, dM as Bt, dN as ns, ac as os, dO as ss, L as fe, q as Fe, o as k, ae as ce, dP as is, bp as as, bC as cs, y as $t, dQ as ls, a5 as Qe, b$ as ds, Q as pe, at as fs, H as le, a8 as It, a9 as us, af as Pt, bq as jt, dR as hs, a$ as Dt, v as me, dS as gs, dT as ps, U as ue, u as Y, dU as ms, cg as Zt, a2 as Cs, dV as vs, aP as ye, A as Ne, p as oe, aD as k1, dW as ws, aE as b1, aF as L1, b as Me, dX as xs, dY as ks, bD as bs, V as Ls, dZ as ys, d_ as Ms, d$ as Es, e0 as $1, a3 as Rs, ak as _t, aS as Ot, e1 as Fs, b_ as Ns, e2 as Ss, e3 as Vs, aX as Ut, e4 as Ts, bU as Hs, e5 as As, aU as Ie, bg as zt, e6 as Gt, bh as Wt, c as u1, e7 as qt, e8 as Bs, bk as $s, e9 as Is, b8 as y1, bw as Ps, ea as js, eb as Ds, ec as Zs, ed as _s, ee as Os, z as Us, ef as Xt, eg as Yt, eh as zs, aj as I1, ei as Gs, ai as Ws, ej as qs, ek as Xs } from "./F0CanvasPanel-
|
|
3
|
+
import { cj as rn, ck as nn, cl as on, cm as sn, cn as wt, co as an, cp as cn, cq as ln, cr as dn, cs as fn, ct as xt, cu as un, cv as hn, cw as gn, cx as pn, cy as mn, cz as Cn, cA as vn, cB as We, cC as wn, cD as xn, cE as kn, cF as bn, cG as Ln, Z as kt, cH as yn, cI as Mn, cJ as En, cK as Rn, cL as Fn, cM as bt, cN as Nn, cO as Sn, a6 as m1, cP as Vn, aJ as Tn, cQ as Hn, cR as An, cS as Bn, ag as $n, cT as In, bO as Pn, aa as C1, ad as jn, cU as Dn, ba as v1, a1 as Lt, S as Ke, cV as yt, b9 as Zn, cW as _n, cX as On, b2 as Un, bN as zn, $ as Le, au as Gn, be as Mt, cY as Wn, bL as qn, cZ as Re, bH as Xn, c_ as Yn, c$ as Et, b1 as Rt, d0 as Kn, d1 as Qn, d2 as Jn, d3 as eo, d4 as to, d5 as Ft, bz as ro, bA as no, d6 as oo, d7 as so, d8 as io, d9 as ao, da as co, db as lo, dc as fo, dd as uo, de as ho, df as go, dg as po, dh as mo, di as Co, dj as vo, bM as wo, ab as xo, bv as ko, dk as bo, dl as Lo, dm as yo, dn as Mo, dp as Eo, dq as Ro, dr as Fo, ap as No, ds as Nt, M as So, a0 as Vo, dt as St, du as Vt, dv as To, bd as Ho, bc as Ao, dw as Bo, dx as $o, dy as Tt, dz as Io, b0 as Po, ay as jo, dA as Do, as as Zo, b7 as _o, dB as Ht, b6 as Oo, dC as Uo, bi as w1, dD as zo, dE as Go, dF as x1, bJ as Wo, bI as qo, bK as At, dG as Xo, G as Yo, E as Ko, dH as Qo, dI as Jo, dJ as es, dK as ts, dL as rs, dM as Bt, dN as ns, ac as os, dO as ss, L as fe, q as Fe, o as k, ae as ce, dP as is, bp as as, bC as cs, y as $t, dQ as ls, a5 as Qe, b$ as ds, Q as pe, at as fs, H as le, a8 as It, a9 as us, af as Pt, bq as jt, dR as hs, a$ as Dt, v as me, dS as gs, dT as ps, U as ue, u as Y, dU as ms, cg as Zt, a2 as Cs, dV as vs, aP as ye, A as Ne, p as oe, aD as k1, dW as ws, aE as b1, aF as L1, b as Me, dX as xs, dY as ks, bD as bs, V as Ls, dZ as ys, d_ as Ms, d$ as Es, e0 as $1, a3 as Rs, ak as _t, aS as Ot, e1 as Fs, b_ as Ns, e2 as Ss, e3 as Vs, aX as Ut, e4 as Ts, bU as Hs, e5 as As, aU as Ie, bg as zt, e6 as Gt, bh as Wt, c as u1, e7 as qt, e8 as Bs, bk as $s, e9 as Is, b8 as y1, bw as Ps, ea as js, eb as Ds, ec as Zs, ed as _s, ee as Os, z as Us, ef as Xt, eg as Yt, eh as zs, aj as I1, ei as Gs, ai as Ws, ej as qs, ek as Xs } from "./F0CanvasPanel-DWqZRYSD.js";
|
|
4
4
|
import { createPortal as Kt } from "react-dom";
|
|
5
5
|
import { defaultTranslations as Ys } from "./i18n-provider-defaults.js";
|
|
6
6
|
import { useTrackVolume as Ks } from "@livekit/components-react";
|