@factorialco/f0-react 1.455.0 → 1.456.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/{F0AiChat-T4phx1M_.js → F0AiChat-CzH0StYB.js} +42534 -42222
- package/dist/ai.d.ts +107 -9
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +325 -5
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +107 -9
- package/dist/f0.js +6 -6
- package/dist/i18n-provider-defaults.d.ts +18 -5
- package/dist/i18n-provider-defaults.js +13 -0
- package/dist/{index-DAbukEpK.js → index-BuZO2NzI.js} +1 -1
- package/dist/{types-BKqlP3gz.js → types-C_L1hIWU.js} +1 -1
- package/package.json +1 -1
package/dist/f0.d.ts
CHANGED
|
@@ -524,6 +524,11 @@ export declare type AiChatProviderProps = {
|
|
|
524
524
|
* URL builders (navigation links) for each entity type.
|
|
525
525
|
*/
|
|
526
526
|
entityRefs?: EntityRefs;
|
|
527
|
+
/**
|
|
528
|
+
* Canvas action callbacks grouped by entity type.
|
|
529
|
+
* Provides save/create functions for persisting canvas entities externally.
|
|
530
|
+
*/
|
|
531
|
+
canvasActions?: CanvasActions;
|
|
527
532
|
/**
|
|
528
533
|
* Available tool hints that the user can activate to provide intent context
|
|
529
534
|
* to the AI. Renders a selector button next to the send button.
|
|
@@ -611,8 +616,14 @@ declare type AiChatProviderReturnValue = {
|
|
|
611
616
|
* Append messages to the current conversation.
|
|
612
617
|
* Useful for injecting pre-built assistant responses (e.g. dashboards)
|
|
613
618
|
* from outside the chat. IDs are generated internally.
|
|
619
|
+
*
|
|
620
|
+
* @param options.persist - Whether to persist messages to the backend thread.
|
|
621
|
+
* Defaults to `true`. Pass `false` for client-only display messages that
|
|
622
|
+
* should not create or modify a backend thread (e.g. seed messages).
|
|
614
623
|
*/
|
|
615
|
-
appendMessages: (messages: AppendMessage[]
|
|
624
|
+
appendMessages: (messages: AppendMessage[], options?: {
|
|
625
|
+
persist?: boolean;
|
|
626
|
+
}) => void;
|
|
616
627
|
/* Excluded from this release type: setAppendMessagesFunction */
|
|
617
628
|
/**
|
|
618
629
|
* Atomically clear the conversation and inject new messages.
|
|
@@ -678,7 +689,14 @@ declare type AiChatProviderReturnValue = {
|
|
|
678
689
|
*/
|
|
679
690
|
fileDragOver: boolean;
|
|
680
691
|
/* Excluded from this release type: setFileDragOver */
|
|
681
|
-
|
|
692
|
+
/**
|
|
693
|
+
* Pre-loaded context shown as an empty state in the chat.
|
|
694
|
+
* Prepended to the first user message as `<pending-context>`.
|
|
695
|
+
*/
|
|
696
|
+
pendingContext: PendingContext | null;
|
|
697
|
+
/** Set pending context (pass null to clear) */
|
|
698
|
+
setPendingContext: React.Dispatch<React.SetStateAction<PendingContext | null>>;
|
|
699
|
+
} & Pick<AiChatState, "greeting" | "agent" | "disclaimer" | "resizable" | "entityRefs" | "canvasActions" | "toolHints" | "credits" | "creditWarning" | "fileAttachments"> & {
|
|
682
700
|
/** The current canvas content, or null when canvas is closed */
|
|
683
701
|
canvasContent: CanvasContent | null;
|
|
684
702
|
/** Open the canvas panel with the given content */
|
|
@@ -708,6 +726,7 @@ declare interface AiChatState {
|
|
|
708
726
|
footer?: React.ReactNode;
|
|
709
727
|
VoiceMode?: React.ComponentType;
|
|
710
728
|
entityRefs?: EntityRefs;
|
|
729
|
+
canvasActions?: CanvasActions;
|
|
711
730
|
toolHints?: AiChatToolHint[];
|
|
712
731
|
credits?: AiChatCredits;
|
|
713
732
|
creditWarning?: AiChatCreditWarning;
|
|
@@ -870,6 +889,19 @@ export declare const aiTranslations: {
|
|
|
870
889
|
readonly formCard: {
|
|
871
890
|
readonly moreFields: "Open to see all fields";
|
|
872
891
|
};
|
|
892
|
+
readonly dashboard: {
|
|
893
|
+
readonly save: "Save";
|
|
894
|
+
readonly saveToAnalytics: "Save the dashboard in Analytics";
|
|
895
|
+
readonly saveAs: "Save as";
|
|
896
|
+
readonly saveDialog: {
|
|
897
|
+
readonly title: "Save dashboard";
|
|
898
|
+
readonly titleLabel: "Title";
|
|
899
|
+
readonly descriptionLabel: "Description";
|
|
900
|
+
readonly descriptionPlaceholder: "Add a description (optional)";
|
|
901
|
+
readonly save: "Save";
|
|
902
|
+
readonly cancel: "Cancel";
|
|
903
|
+
};
|
|
904
|
+
};
|
|
873
905
|
readonly dataDownload: {
|
|
874
906
|
readonly title: "Download";
|
|
875
907
|
readonly download: "Download {{format}}";
|
|
@@ -996,13 +1028,26 @@ export declare type AppendMessage = {
|
|
|
996
1028
|
role: "user" | "assistant";
|
|
997
1029
|
content: string;
|
|
998
1030
|
toolCalls?: AppendToolCall[];
|
|
1031
|
+
} | {
|
|
1032
|
+
/** Tool result message — pairs with a toolCall from a previous assistant message */
|
|
1033
|
+
role: "tool";
|
|
1034
|
+
content: string;
|
|
1035
|
+
/**
|
|
1036
|
+
* ID of the paired tool call. Must equal the corresponding assistant
|
|
1037
|
+
* message's `toolCalls[i].id` — supply `AppendToolCall.id` on that call
|
|
1038
|
+
* and pass the same value here so the messages are correctly paired.
|
|
1039
|
+
*/
|
|
1040
|
+
toolCallId: string;
|
|
999
1041
|
};
|
|
1000
1042
|
|
|
1001
1043
|
/**
|
|
1002
1044
|
* A tool call to inject via appendMessages.
|
|
1003
|
-
* IDs are generated internally
|
|
1045
|
+
* IDs are generated internally unless `id` is provided.
|
|
1046
|
+
* When pairing with a tool-result message, provide the same `id`
|
|
1047
|
+
* in both the tool call and the tool-result's `toolCallId`.
|
|
1004
1048
|
*/
|
|
1005
1049
|
export declare type AppendToolCall = {
|
|
1050
|
+
id?: string;
|
|
1006
1051
|
function: {
|
|
1007
1052
|
name: string;
|
|
1008
1053
|
arguments: string;
|
|
@@ -1733,6 +1778,15 @@ declare type CandidateProfile = {
|
|
|
1733
1778
|
source?: string;
|
|
1734
1779
|
};
|
|
1735
1780
|
|
|
1781
|
+
/**
|
|
1782
|
+
* Canvas-level action callbacks grouped by entity type.
|
|
1783
|
+
* Each entity defines its own actions type; this aggregates them.
|
|
1784
|
+
* Passed by the host app to F0AiChatProvider via `canvasActions`.
|
|
1785
|
+
*/
|
|
1786
|
+
export declare type CanvasActions = {
|
|
1787
|
+
dashboard?: DashboardCanvasActions;
|
|
1788
|
+
};
|
|
1789
|
+
|
|
1736
1790
|
/**
|
|
1737
1791
|
* Discriminated union for canvas panel content.
|
|
1738
1792
|
* Add new entity types to this union as they are implemented.
|
|
@@ -2869,6 +2923,16 @@ declare interface CustomFieldRenderPropsBase {
|
|
|
2869
2923
|
|
|
2870
2924
|
export declare const Dashboard: WithDataTestIdReturnType_3<ComponentType<DashboardProps_2> & PageLayoutGroupComponent_2>;
|
|
2871
2925
|
|
|
2926
|
+
/**
|
|
2927
|
+
* Callbacks for persisting dashboards externally (beyond chat history).
|
|
2928
|
+
*/
|
|
2929
|
+
declare type DashboardCanvasActions = {
|
|
2930
|
+
/** Update an existing saved dashboard */
|
|
2931
|
+
save: (id: string, category: string, config: ChatDashboardConfig) => Promise<void>;
|
|
2932
|
+
/** Create a new saved dashboard. Returns the new dashboard ID if available. */
|
|
2933
|
+
create: (title: string, description: string, config: ChatDashboardConfig, category?: string) => Promise<string | void>;
|
|
2934
|
+
};
|
|
2935
|
+
|
|
2872
2936
|
/**
|
|
2873
2937
|
* Dashboard canvas content — renders an analytics dashboard.
|
|
2874
2938
|
*/
|
|
@@ -2879,6 +2943,14 @@ export declare type DashboardCanvasContent = CanvasContentBase & {
|
|
|
2879
2943
|
baseUrl: string;
|
|
2880
2944
|
headers: Record<string, string>;
|
|
2881
2945
|
};
|
|
2946
|
+
/** Present when the dashboard is a pre-saved dashboard */
|
|
2947
|
+
savedDashboardId?: string;
|
|
2948
|
+
/** Category of the saved dashboard */
|
|
2949
|
+
savedDashboardCategory?: string;
|
|
2950
|
+
/** Description of the saved dashboard */
|
|
2951
|
+
savedDashboardDescription?: string;
|
|
2952
|
+
/** True when the agent has iterated on a saved dashboard but the user hasn't saved yet */
|
|
2953
|
+
savedDashboardUnsaved?: boolean;
|
|
2882
2954
|
};
|
|
2883
2955
|
|
|
2884
2956
|
/**
|
|
@@ -3989,6 +4061,19 @@ export declare const defaultTranslations: {
|
|
|
3989
4061
|
readonly formCard: {
|
|
3990
4062
|
readonly moreFields: "Open to see all fields";
|
|
3991
4063
|
};
|
|
4064
|
+
readonly dashboard: {
|
|
4065
|
+
readonly save: "Save";
|
|
4066
|
+
readonly saveToAnalytics: "Save the dashboard in Analytics";
|
|
4067
|
+
readonly saveAs: "Save as";
|
|
4068
|
+
readonly saveDialog: {
|
|
4069
|
+
readonly title: "Save dashboard";
|
|
4070
|
+
readonly titleLabel: "Title";
|
|
4071
|
+
readonly descriptionLabel: "Description";
|
|
4072
|
+
readonly descriptionPlaceholder: "Add a description (optional)";
|
|
4073
|
+
readonly save: "Save";
|
|
4074
|
+
readonly cancel: "Cancel";
|
|
4075
|
+
};
|
|
4076
|
+
};
|
|
3992
4077
|
readonly dataDownload: {
|
|
3993
4078
|
readonly title: "Download";
|
|
3994
4079
|
readonly download: "Download {{format}}";
|
|
@@ -4800,7 +4885,7 @@ export declare const F0AiChat: () => JSX_2.Element | null;
|
|
|
4800
4885
|
/**
|
|
4801
4886
|
* @experimental This is an experimental component use it at your own risk
|
|
4802
4887
|
*/
|
|
4803
|
-
export declare const F0AiChatProvider: ({ enabled, greeting, initialMessage, welcomeScreenSuggestions, disclaimer, resizable, defaultVisualizationMode, lockVisualizationMode, historyEnabled, footer, VoiceMode, entityRefs, toolHints, credits, creditWarning, fileAttachments, onThumbsUp, onThumbsDown, children, agent, tracking, ...copilotKitProps }: AiChatProviderProps) => JSX_2.Element;
|
|
4888
|
+
export declare const F0AiChatProvider: ({ enabled, greeting, initialMessage, welcomeScreenSuggestions, disclaimer, resizable, defaultVisualizationMode, lockVisualizationMode, historyEnabled, footer, VoiceMode, entityRefs, canvasActions, toolHints, credits, creditWarning, fileAttachments, onThumbsUp, onThumbsDown, children, agent, tracking, ...copilotKitProps }: AiChatProviderProps) => JSX_2.Element;
|
|
4804
4889
|
|
|
4805
4890
|
export declare const F0AiChatTextArea: ({ submitLabel, inProgress, onSend, onStop, creditWarning, }: ChatTextareaProps) => JSX_2.Element;
|
|
4806
4891
|
|
|
@@ -10292,6 +10377,19 @@ declare type PathsToStringProps<T> = T extends string ? [] : {
|
|
|
10292
10377
|
[K in Extract<keyof T, string>]: [K, ...PathsToStringProps<T[K]>];
|
|
10293
10378
|
}[Extract<keyof T, string>];
|
|
10294
10379
|
|
|
10380
|
+
/**
|
|
10381
|
+
* Pre-loaded context shown as an empty state in the chat.
|
|
10382
|
+
* The `context` string is prepended to the user's first message
|
|
10383
|
+
* as `<pending-context>...</pending-context>` so the agent receives it.
|
|
10384
|
+
* The conversation is not created until the user actually sends a message.
|
|
10385
|
+
*/
|
|
10386
|
+
declare type PendingContext = {
|
|
10387
|
+
/** Human-readable label shown in the empty state (e.g. "Expenses dashboard") */
|
|
10388
|
+
label: string;
|
|
10389
|
+
/** Full context string prepended invisibly to the first user message */
|
|
10390
|
+
context: string;
|
|
10391
|
+
};
|
|
10392
|
+
|
|
10295
10393
|
/**
|
|
10296
10394
|
* Creates a union of `[sectionId, data]` pairs for each key in T.
|
|
10297
10395
|
* Used to build a callback where TypeScript narrows `data` based on `sectionId`.
|
|
@@ -12998,6 +13096,11 @@ declare module "gridstack" {
|
|
|
12998
13096
|
}
|
|
12999
13097
|
|
|
13000
13098
|
|
|
13099
|
+
declare namespace Calendar {
|
|
13100
|
+
var displayName: string;
|
|
13101
|
+
}
|
|
13102
|
+
|
|
13103
|
+
|
|
13001
13104
|
declare module "@tiptap/core" {
|
|
13002
13105
|
interface Commands<ReturnType> {
|
|
13003
13106
|
aiBlock: {
|
|
@@ -13045,8 +13148,3 @@ declare module "@tiptap/core" {
|
|
|
13045
13148
|
};
|
|
13046
13149
|
}
|
|
13047
13150
|
}
|
|
13048
|
-
|
|
13049
|
-
|
|
13050
|
-
declare namespace Calendar {
|
|
13051
|
-
var displayName: string;
|
|
13052
|
-
}
|
package/dist/f0.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { fy as Or, a6 as se, bU as kn, O as P, P as ht, fz as Mr, W as yt, dG as zo, aS as Yi, fA as Io, a7 as zr, a8 as de, u as oe, ar as he, fp as jt, U as Bo, ac as Po, M as Ir, fB as dn, aO as Oe, aL as hi, fC as Ho, fD as Wo, fE as qo, fF as Ji, a0 as Go, fG as $o, fH as Br, fI as jo, bd as fi, be as gi, a5 as Tn, bf as mi, aX as Pr, cR as un, fJ as Hr, fK as Uo, eg as Vo, fL as Zi, ef as Qo, fM as Ko, fN as Ut, fO as Fn, fP as Xo, fQ as Wr, fR as An, fS as Yo, fT as Jo, R as We, b0 as Zo, d4 as si, d3 as qr, fU as ea, fV as pi, cn as ta, fW as na, fX as Gr, fY as Ln, fZ as ia, f_ as ra, aI as vi, Q as Ce, aJ as sa, aK as hn, ce as oa, f$ as aa, aR as On, g0 as $r, g1 as la, g2 as ca, g3 as da, g4 as ua, cB as ha, m as fa, dq as ga, aq as jr, f4 as ft, g5 as Ur, f2 as Vr, g6 as fn, g7 as Qr, ch as Kr, g8 as Xr, as as bi, at as yi, g9 as xi, aw as wi, aB as De, ga as Ci, aD as xt, gb as Ft, gc as At, av as Lt, gd as Ot, ge as ma, gf as Jt, gg as Yr, gh as gn, bM as Bt, gi as _e, cs as pa, gj as Jr, gk as va, gl as mn, cr as ba, cq as ya, gm as xa, gn as wa, bO as Mn, aE as zn, go as Zr, bJ as Si, bP as Ei, bc as Ca, gp as Ae, gq as Sa, gr as Ea, gs as es, gt as In, gu as Na, gv as _a, cj as ts, gw as Da, gx as Ra, gy as ka, gz as Ta, bp as ns, bv as Fa, fs as Aa, ft as La, fv as Oa, gA as is, bW as Ma, b_ as za, gB as er, c5 as Ia, gC as rs, gD as Ba, gE as Pa } from "./F0AiChat-
|
|
2
|
-
import { hj as Rf, gJ as kf, co as Tf, l as Ff, hx as Af, bo as Lf, k as Of, F as Mf, a as zf, C as If, ha as Bf, b as Pf, gW as Hf, bN as Wf, c7 as qf, _ as Gf, c8 as $f, gG as jf, bh as Uf, Y as Vf, X as Qf, Z as Kf, b3 as Xf, gQ as Yf, gU as Jf, gH as Zf, gV as eg, gX as tg, gZ as ng, hC as ig, bx as rg, n as sg, hu as og, b5 as ag, $ as lg, he as cg, bB as dg, hf as ug, hh as hg, hi as fg, d1 as gg, c$ as mg, d as pg, gK as vg, hk as bg, gL as yg, gM as xg, gN as wg, cN as Cg, cO as Sg, gF as Eg, gO as Ng, hB as _g, gP as Dg, bu as Rg, d0 as kg, hg as Tg, cP as Fg, cm as Ag, hD as Lg, gR as Og, gS as Mg, gT as zg, gI as Ig, cQ as Bg, hw as Pg, hp as Hg, hc as Wg, h2 as qg, h1 as Gg, h8 as $g, h0 as jg, h9 as Ug, hs as Vg, g as Qg, ho as Kg, bs as Xg, cM as Yg, cJ as Jg, cL as Zg, h7 as em, cI as tm, h3 as nm, hn as im, hm as rm, h4 as sm, cw as om, cK as am, g_ as lm, g$ as cm, h5 as dm, c as um, hl as hm, hq as fm, h as gm, hy as mm, hz as pm, hA as vm, bq as bm, hb as ym, gY as xm, hd as wm, e as Cm, hv as Sm, hr as Em, j as Nm, i as _m, bV as Dm, T as Rm, h6 as km, ht as Tm, f as Fm, hE as Am } from "./F0AiChat-
|
|
1
|
+
import { fy as Or, a6 as se, bU as kn, O as P, P as ht, fz as Mr, W as yt, dG as zo, aS as Yi, fA as Io, a7 as zr, a8 as de, u as oe, ar as he, fp as jt, U as Bo, ac as Po, M as Ir, fB as dn, aO as Oe, aL as hi, fC as Ho, fD as Wo, fE as qo, fF as Ji, a0 as Go, fG as $o, fH as Br, fI as jo, bd as fi, be as gi, a5 as Tn, bf as mi, aX as Pr, cR as un, fJ as Hr, fK as Uo, eg as Vo, fL as Zi, ef as Qo, fM as Ko, fN as Ut, fO as Fn, fP as Xo, fQ as Wr, fR as An, fS as Yo, fT as Jo, R as We, b0 as Zo, d4 as si, d3 as qr, fU as ea, fV as pi, cn as ta, fW as na, fX as Gr, fY as Ln, fZ as ia, f_ as ra, aI as vi, Q as Ce, aJ as sa, aK as hn, ce as oa, f$ as aa, aR as On, g0 as $r, g1 as la, g2 as ca, g3 as da, g4 as ua, cB as ha, m as fa, dq as ga, aq as jr, f4 as ft, g5 as Ur, f2 as Vr, g6 as fn, g7 as Qr, ch as Kr, g8 as Xr, as as bi, at as yi, g9 as xi, aw as wi, aB as De, ga as Ci, aD as xt, gb as Ft, gc as At, av as Lt, gd as Ot, ge as ma, gf as Jt, gg as Yr, gh as gn, bM as Bt, gi as _e, cs as pa, gj as Jr, gk as va, gl as mn, cr as ba, cq as ya, gm as xa, gn as wa, bO as Mn, aE as zn, go as Zr, bJ as Si, bP as Ei, bc as Ca, gp as Ae, gq as Sa, gr as Ea, gs as es, gt as In, gu as Na, gv as _a, cj as ts, gw as Da, gx as Ra, gy as ka, gz as Ta, bp as ns, bv as Fa, fs as Aa, ft as La, fv as Oa, gA as is, bW as Ma, b_ as za, gB as er, c5 as Ia, gC as rs, gD as Ba, gE as Pa } from "./F0AiChat-CzH0StYB.js";
|
|
2
|
+
import { hj as Rf, gJ as kf, co as Tf, l as Ff, hx as Af, bo as Lf, k as Of, F as Mf, a as zf, C as If, ha as Bf, b as Pf, gW as Hf, bN as Wf, c7 as qf, _ as Gf, c8 as $f, gG as jf, bh as Uf, Y as Vf, X as Qf, Z as Kf, b3 as Xf, gQ as Yf, gU as Jf, gH as Zf, gV as eg, gX as tg, gZ as ng, hC as ig, bx as rg, n as sg, hu as og, b5 as ag, $ as lg, he as cg, bB as dg, hf as ug, hh as hg, hi as fg, d1 as gg, c$ as mg, d as pg, gK as vg, hk as bg, gL as yg, gM as xg, gN as wg, cN as Cg, cO as Sg, gF as Eg, gO as Ng, hB as _g, gP as Dg, bu as Rg, d0 as kg, hg as Tg, cP as Fg, cm as Ag, hD as Lg, gR as Og, gS as Mg, gT as zg, gI as Ig, cQ as Bg, hw as Pg, hp as Hg, hc as Wg, h2 as qg, h1 as Gg, h8 as $g, h0 as jg, h9 as Ug, hs as Vg, g as Qg, ho as Kg, bs as Xg, cM as Yg, cJ as Jg, cL as Zg, h7 as em, cI as tm, h3 as nm, hn as im, hm as rm, h4 as sm, cw as om, cK as am, g_ as lm, g$ as cm, h5 as dm, c as um, hl as hm, hq as fm, h as gm, hy as mm, hz as pm, hA as vm, bq as bm, hb as ym, gY as xm, hd as wm, e as Cm, hv as Sm, hr as Em, j as Nm, i as _m, bV as Dm, T as Rm, h6 as km, ht as Tm, f as Fm, hE as Am } from "./F0AiChat-CzH0StYB.js";
|
|
3
3
|
import { jsx as l, jsxs as C, Fragment as we } from "react/jsx-runtime";
|
|
4
4
|
import ae, { forwardRef as qe, useRef as W, useImperativeHandle as Ha, Children as pn, createContext as Qe, useContext as Re, useState as j, useMemo as B, useEffect as V, useCallback as I, useLayoutEffect as oi, createElement as Zt, isValidElement as ss, Fragment as Wa, memo as os, useReducer as qa, cloneElement as Ga, useId as as } from "react";
|
|
5
|
-
import { g as $a, h as ja } from "./types-
|
|
6
|
-
import { A as Om, e as Mm, F as zm, c as Im, d as Bm, b as Pm, a as Hm, f as Wm, o as qm, u as Gm } from "./types-
|
|
5
|
+
import { g as $a, h as ja } from "./types-C_L1hIWU.js";
|
|
6
|
+
import { A as Om, e as Mm, F as zm, c as Im, d as Bm, b as Pm, a as Hm, f as Wm, o as qm, u as Gm } from "./types-C_L1hIWU.js";
|
|
7
7
|
import { createPortal as ls, unstable_batchedUpdates as en } from "react-dom";
|
|
8
|
-
import { C as Ua, M as Ni, D as Va, z as Qa, u as cs, j as Ka } from "./index-
|
|
9
|
-
import { l as jm, m as Um, n as Vm, s as Qm, F as Km, o as Xm, w as Ym, x as Jm, N as Zm, y as ep, p as tp, P as np, r as ip, R as rp, q as sp, _ as op, v as ap, t as lp } from "./index-
|
|
8
|
+
import { C as Ua, M as Ni, D as Va, z as Qa, u as cs, j as Ka } from "./index-BuZO2NzI.js";
|
|
9
|
+
import { l as jm, m as Um, n as Vm, s as Qm, F as Km, o as Xm, w as Ym, x as Jm, N as Zm, y as ep, p as tp, P as np, r as ip, R as rp, q as sp, _ as op, v as ap, t as lp } from "./index-BuZO2NzI.js";
|
|
10
10
|
import { defaultTranslations as dp } from "./i18n-provider-defaults.js";
|
|
11
11
|
import './f0.css';const Xa = {
|
|
12
12
|
xs: 1,
|
|
@@ -430,6 +430,19 @@ export declare const defaultTranslations: {
|
|
|
430
430
|
readonly formCard: {
|
|
431
431
|
readonly moreFields: "Open to see all fields";
|
|
432
432
|
};
|
|
433
|
+
readonly dashboard: {
|
|
434
|
+
readonly save: "Save";
|
|
435
|
+
readonly saveToAnalytics: "Save the dashboard in Analytics";
|
|
436
|
+
readonly saveAs: "Save as";
|
|
437
|
+
readonly saveDialog: {
|
|
438
|
+
readonly title: "Save dashboard";
|
|
439
|
+
readonly titleLabel: "Title";
|
|
440
|
+
readonly descriptionLabel: "Description";
|
|
441
|
+
readonly descriptionPlaceholder: "Add a description (optional)";
|
|
442
|
+
readonly save: "Save";
|
|
443
|
+
readonly cancel: "Cancel";
|
|
444
|
+
};
|
|
445
|
+
};
|
|
433
446
|
readonly dataDownload: {
|
|
434
447
|
readonly title: "Download";
|
|
435
448
|
readonly download: "Download {{format}}";
|
|
@@ -777,6 +790,11 @@ declare module "gridstack" {
|
|
|
777
790
|
}
|
|
778
791
|
|
|
779
792
|
|
|
793
|
+
declare namespace Calendar {
|
|
794
|
+
var displayName: string;
|
|
795
|
+
}
|
|
796
|
+
|
|
797
|
+
|
|
780
798
|
declare module "@tiptap/core" {
|
|
781
799
|
interface Commands<ReturnType> {
|
|
782
800
|
aiBlock: {
|
|
@@ -824,8 +842,3 @@ declare module "@tiptap/core" {
|
|
|
824
842
|
};
|
|
825
843
|
}
|
|
826
844
|
}
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
declare namespace Calendar {
|
|
830
|
-
var displayName: string;
|
|
831
|
-
}
|
|
@@ -430,6 +430,19 @@ const e = {
|
|
|
430
430
|
formCard: {
|
|
431
431
|
moreFields: "Open to see all fields"
|
|
432
432
|
},
|
|
433
|
+
dashboard: {
|
|
434
|
+
save: "Save",
|
|
435
|
+
saveToAnalytics: "Save the dashboard in Analytics",
|
|
436
|
+
saveAs: "Save as",
|
|
437
|
+
saveDialog: {
|
|
438
|
+
title: "Save dashboard",
|
|
439
|
+
titleLabel: "Title",
|
|
440
|
+
descriptionLabel: "Description",
|
|
441
|
+
descriptionPlaceholder: "Add a description (optional)",
|
|
442
|
+
save: "Save",
|
|
443
|
+
cancel: "Cancel"
|
|
444
|
+
}
|
|
445
|
+
},
|
|
433
446
|
dataDownload: {
|
|
434
447
|
title: "Download",
|
|
435
448
|
download: "Download {{format}}",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs as x, jsx as m, Fragment as Bt } from "react/jsx-runtime";
|
|
2
2
|
import * as K from "react";
|
|
3
3
|
import C, { useRef as ot, useState as ae, useCallback as Ye, useEffect as Ze, useLayoutEffect as Ac, PureComponent as Kn, useMemo as $s, forwardRef as Pt, useId as Cc, useImperativeHandle as Ec, memo as Sf, Fragment as Ra } from "react";
|
|
4
|
-
import { M as Pn, aG as kf, O as z, ax as Af, d3 as Cf, d4 as Ef, P as js, a6 as Re, aO as Gi, d5 as An, d6 as Of, d7 as _f, d8 as Nf, d9 as $a, da as ja, db as Fa, dc as za, dd as Ba, de as Oc, df as ui, dg as Tf, dh as Pf, di as Df, aW as Dn, dj as _e, dk as U, dl as Me, dm as _c, dn as Mf, dp as Nc, dq as Fs, dr as Lf, ds as ye, dt as Yi, du as oe, dv as Tc, dw as qi, dx as zs, dy as Bs, dz as Vs, dA as pe, dB as Pe, dC as Go, dD as Xi, dE as If, dF as Oe, dG as Ji, dH as Te, dI as pn, dJ as Hs, dK as Zi, dL as di, dM as Qi, c9 as Ws, dN as Rf, dO as Qr, dP as ki, dQ as $f, dR as jf, dS as Ff, dT as zf, dU as Bf, dV as Vf, dW as Pc, dX as Dc, dY as Mc, dZ as Lc, d_ as Ic, d$ as Hf, e0 as Ai, e1 as Wf, e2 as Uf, e3 as $r, e4 as Kt, a3 as Ot, e5 as Us, e6 as jr, e7 as Rc, a4 as $c, e8 as Kf, e9 as Gf, a1 as Yf, ea as qf, bV as Xf, a2 as Jf, eb as fe, ec as we, aj as Zf, ak as Qf, al as eh, ao as th, ed as jc, ee as nh, ef as Fc, bU as Dt, ar as _t, bp as rh, Q, aE as Ks, eg as ih, cI as Ce, eh as et, ei as gt, ej as $e, ek as oh, el as fi, em as rt, en as zc, eo as qe, ep as Gs, eq as Qe, er as Va, es as sh, et as Bc, eu as be, ev as Ve, ew as vr, ex as Ci, ey as Vc, ez as ah, eA as mn, eB as lh, eC as ch, eD as uh, a8 as j, aS as Hc, bu as dh, a7 as Wc, eE as Fr, eF as zr, eG as Ys, eH as fh, eI as Uc, eJ as Kc, eK as Gc, eL as hh, eM as Yc, eN as qc, eO as Xc, eP as Jc, eQ as Zc, eR as Qc, eS as ph, eT as mh, u as gn, aN as gh, bM as eo, U as eu, W as tn, bo as yh, b7 as bh, br as vh, eU as wh, eV as xh, eW as Sh, eX as kh, eY as Ah, eZ as Ch, aJ as tu, aK as qs, aL as to, e_ as Ha, e$ as Eh, f0 as Oh, f1 as _h, f2 as Nh, f3 as Th, f4 as Ph, f5 as Dh, f6 as Mh, f7 as Lh, f8 as Ih, f9 as Rh, fa as $h, fb as jh, fc as Fh, fd as zh, fe as Bh, ff as Vh, X as Hh, aC as Wh, aQ as Uh, bB as Kh, bv as Wa, Y as Gh, aI as Yh, bN as nu, aH as Ua, b$ as qh, cA as ru, fg as Xh, fh as Jh, fi as Zh, fj as Qh, fk as ep, fl as tp, fm as np, b3 as Yo, aX as iu, fn as rp, c7 as ou, fo as ip, b2 as op, fp as sp, fq as ap, fr as lp, fs as cp, ft as up, fu as dp, fv as fp, fw as hp, fx as pp, c6 as Ka } from "./F0AiChat-
|
|
4
|
+
import { M as Pn, aG as kf, O as z, ax as Af, d3 as Cf, d4 as Ef, P as js, a6 as Re, aO as Gi, d5 as An, d6 as Of, d7 as _f, d8 as Nf, d9 as $a, da as ja, db as Fa, dc as za, dd as Ba, de as Oc, df as ui, dg as Tf, dh as Pf, di as Df, aW as Dn, dj as _e, dk as U, dl as Me, dm as _c, dn as Mf, dp as Nc, dq as Fs, dr as Lf, ds as ye, dt as Yi, du as oe, dv as Tc, dw as qi, dx as zs, dy as Bs, dz as Vs, dA as pe, dB as Pe, dC as Go, dD as Xi, dE as If, dF as Oe, dG as Ji, dH as Te, dI as pn, dJ as Hs, dK as Zi, dL as di, dM as Qi, c9 as Ws, dN as Rf, dO as Qr, dP as ki, dQ as $f, dR as jf, dS as Ff, dT as zf, dU as Bf, dV as Vf, dW as Pc, dX as Dc, dY as Mc, dZ as Lc, d_ as Ic, d$ as Hf, e0 as Ai, e1 as Wf, e2 as Uf, e3 as $r, e4 as Kt, a3 as Ot, e5 as Us, e6 as jr, e7 as Rc, a4 as $c, e8 as Kf, e9 as Gf, a1 as Yf, ea as qf, bV as Xf, a2 as Jf, eb as fe, ec as we, aj as Zf, ak as Qf, al as eh, ao as th, ed as jc, ee as nh, ef as Fc, bU as Dt, ar as _t, bp as rh, Q, aE as Ks, eg as ih, cI as Ce, eh as et, ei as gt, ej as $e, ek as oh, el as fi, em as rt, en as zc, eo as qe, ep as Gs, eq as Qe, er as Va, es as sh, et as Bc, eu as be, ev as Ve, ew as vr, ex as Ci, ey as Vc, ez as ah, eA as mn, eB as lh, eC as ch, eD as uh, a8 as j, aS as Hc, bu as dh, a7 as Wc, eE as Fr, eF as zr, eG as Ys, eH as fh, eI as Uc, eJ as Kc, eK as Gc, eL as hh, eM as Yc, eN as qc, eO as Xc, eP as Jc, eQ as Zc, eR as Qc, eS as ph, eT as mh, u as gn, aN as gh, bM as eo, U as eu, W as tn, bo as yh, b7 as bh, br as vh, eU as wh, eV as xh, eW as Sh, eX as kh, eY as Ah, eZ as Ch, aJ as tu, aK as qs, aL as to, e_ as Ha, e$ as Eh, f0 as Oh, f1 as _h, f2 as Nh, f3 as Th, f4 as Ph, f5 as Dh, f6 as Mh, f7 as Lh, f8 as Ih, f9 as Rh, fa as $h, fb as jh, fc as Fh, fd as zh, fe as Bh, ff as Vh, X as Hh, aC as Wh, aQ as Uh, bB as Kh, bv as Wa, Y as Gh, aI as Yh, bN as nu, aH as Ua, b$ as qh, cA as ru, fg as Xh, fh as Jh, fi as Zh, fj as Qh, fk as ep, fl as tp, fm as np, b3 as Yo, aX as iu, fn as rp, c7 as ou, fo as ip, b2 as op, fp as sp, fq as ap, fr as lp, fs as cp, ft as up, fu as dp, fv as fp, fw as hp, fx as pp, c6 as Ka } from "./F0AiChat-CzH0StYB.js";
|
|
5
5
|
import './index.css';const mp = {
|
|
6
6
|
active: !0,
|
|
7
7
|
breakpoints: {},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defaultTranslations as rt } from "./i18n-provider-defaults.js";
|
|
2
2
|
import { jsx as h, jsxs as M, Fragment as Ge } from "react/jsx-runtime";
|
|
3
3
|
import { useInsertionEffect as nt, forwardRef as me, createContext as ot, useContext as it, useRef as D, useEffect as ue, useState as de, useCallback as at, useMemo as st, useId as ct, createElement as lt } from "react";
|
|
4
|
-
import { r as ut, o as dt, p as ft, q as ht, s as ke, t as mt, v as pt, w as vt, x as gt, y as wt, z as We, A as bt, V as yt, B as Tt, D as xt, E as At, S as Et, H as Rt, G as fe, J as Ct, K as St, L as Lt, M as It, N as Ft, O as X, P as ie, Q as we, R as _t, u as Nt, T as ze, U as Pt, W as he, X as Ut, Y as Mt, Z as Bt, _ as Ot, $ as Vt, a0 as Dt, a1 as Gt, a2 as kt, a3 as Wt, a4 as zt, a5 as Xt, a6 as Yt, a7 as $t, a8 as oe } from "./F0AiChat-
|
|
4
|
+
import { r as ut, o as dt, p as ft, q as ht, s as ke, t as mt, v as pt, w as vt, x as gt, y as wt, z as We, A as bt, V as yt, B as Tt, D as xt, E as At, S as Et, H as Rt, G as fe, J as Ct, K as St, L as Lt, M as It, N as Ft, O as X, P as ie, Q as we, R as _t, u as Nt, T as ze, U as Pt, W as he, X as Ut, Y as Mt, Z as Bt, _ as Ot, $ as Vt, a0 as Dt, a1 as Gt, a2 as kt, a3 as Wt, a4 as zt, a5 as Xt, a6 as Yt, a7 as $t, a8 as oe } from "./F0AiChat-CzH0StYB.js";
|
|
5
5
|
import { useTrackVolume as qt } from "@livekit/components-react";
|
|
6
6
|
function Ht(t, e, r) {
|
|
7
7
|
nt(() => t.on(e, r), [t, e, r]);
|