@factorialco/f0-react 1.367.0 → 1.369.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/{DataCollectionStorageProvider-DI_3mHa6.js → DataCollectionStorageProvider-BB6YgyVT.js} +4933 -5076
- package/dist/{F0AiChat-hgYSsd3K.js → F0AiChat-Dv8ilDMD.js} +18151 -17936
- package/dist/{F0HILActionConfirmation-jfsj-ueP.js → F0HILActionConfirmation-C2YWjDqH.js} +47 -44
- package/dist/ai.d.ts +54 -17
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +38 -9
- package/dist/experimental.js +4783 -4755
- package/dist/f0.d.ts +61 -18
- package/dist/f0.js +52 -52
- package/dist/i18n-provider-defaults.d.ts +11 -8
- package/dist/i18n-provider-defaults.js +3 -0
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/f0.d.ts
CHANGED
|
@@ -288,6 +288,21 @@ export declare type AiChatProviderProps = {
|
|
|
288
288
|
* When enabled, the chat can be resized between 300px and 50% of the screen width
|
|
289
289
|
*/
|
|
290
290
|
resizable?: boolean;
|
|
291
|
+
/**
|
|
292
|
+
* The default visualization mode for the chat
|
|
293
|
+
* When set to "fullscreen", the chat starts in fullscreen mode and auto-opens
|
|
294
|
+
* @default "sidepanel"
|
|
295
|
+
*/
|
|
296
|
+
defaultVisualizationMode?: VisualizationMode;
|
|
297
|
+
/**
|
|
298
|
+
* When true, prevents switching between visualization modes (hides the expand/collapse button)
|
|
299
|
+
* @default false
|
|
300
|
+
*/
|
|
301
|
+
lockVisualizationMode?: boolean;
|
|
302
|
+
/**
|
|
303
|
+
* Optional footer content rendered below the textarea
|
|
304
|
+
*/
|
|
305
|
+
footer?: React.ReactNode;
|
|
291
306
|
onThumbsUp?: (message: AIMessage, { threadId, feedback }: {
|
|
292
307
|
threadId: string;
|
|
293
308
|
feedback: string;
|
|
@@ -311,14 +326,6 @@ declare type AiChatProviderReturnValue = {
|
|
|
311
326
|
tmp_setAgent: (agent?: string) => void;
|
|
312
327
|
placeholders: string[];
|
|
313
328
|
setPlaceholders: React.Dispatch<React.SetStateAction<string[]>>;
|
|
314
|
-
/**
|
|
315
|
-
* Set the amount of minutes after which the chat will be cleared automatically
|
|
316
|
-
* Set `null` to disable auto-clearing
|
|
317
|
-
*
|
|
318
|
-
* @default 15
|
|
319
|
-
*/
|
|
320
|
-
setAutoClearMinutes: React.Dispatch<React.SetStateAction<number | null>>;
|
|
321
|
-
autoClearMinutes: number | null;
|
|
322
329
|
/**
|
|
323
330
|
* The initial message to display in the chat
|
|
324
331
|
*/
|
|
@@ -354,6 +361,22 @@ declare type AiChatProviderReturnValue = {
|
|
|
354
361
|
* Reset the chat width to the default value (360px)
|
|
355
362
|
*/
|
|
356
363
|
resetChatWidth: () => void;
|
|
364
|
+
/**
|
|
365
|
+
* The current visualization mode of the chat
|
|
366
|
+
*/
|
|
367
|
+
visualizationMode: VisualizationMode;
|
|
368
|
+
/**
|
|
369
|
+
* Set the visualization mode
|
|
370
|
+
*/
|
|
371
|
+
setVisualizationMode: React.Dispatch<React.SetStateAction<VisualizationMode>>;
|
|
372
|
+
/**
|
|
373
|
+
* When true, prevents switching between visualization modes
|
|
374
|
+
*/
|
|
375
|
+
lockVisualizationMode: boolean;
|
|
376
|
+
/**
|
|
377
|
+
* Optional footer content rendered below the textarea
|
|
378
|
+
*/
|
|
379
|
+
footer?: React.ReactNode;
|
|
357
380
|
} & Pick<AiChatState, "greeting" | "agent" | "disclaimer" | "resizable">;
|
|
358
381
|
|
|
359
382
|
/**
|
|
@@ -367,6 +390,9 @@ declare interface AiChatState {
|
|
|
367
390
|
welcomeScreenSuggestions?: WelcomeScreenSuggestion[];
|
|
368
391
|
disclaimer?: AiChatDisclaimer;
|
|
369
392
|
resizable?: boolean;
|
|
393
|
+
defaultVisualizationMode?: VisualizationMode;
|
|
394
|
+
lockVisualizationMode?: boolean;
|
|
395
|
+
footer?: React.ReactNode;
|
|
370
396
|
placeholders?: string[];
|
|
371
397
|
setPlaceholders?: React.Dispatch<React.SetStateAction<string[]>>;
|
|
372
398
|
onThumbsUp?: (message: AIMessage, { threadId, feedback }: {
|
|
@@ -407,6 +433,7 @@ export declare const aiTranslations: {
|
|
|
407
433
|
defaultInitialMessage: string;
|
|
408
434
|
inputPlaceholder: string;
|
|
409
435
|
stopAnswerGeneration: string;
|
|
436
|
+
responseStopped: string;
|
|
410
437
|
sendMessage: string;
|
|
411
438
|
thoughtsGroupTitle: string;
|
|
412
439
|
resourcesGroupTitle: string;
|
|
@@ -425,6 +452,8 @@ export declare const aiTranslations: {
|
|
|
425
452
|
placeholder: string;
|
|
426
453
|
};
|
|
427
454
|
};
|
|
455
|
+
expandChat: string;
|
|
456
|
+
collapseChat: string;
|
|
428
457
|
ask: string;
|
|
429
458
|
};
|
|
430
459
|
};
|
|
@@ -2346,6 +2375,7 @@ export declare const defaultTranslations: {
|
|
|
2346
2375
|
readonly defaultInitialMessage: "How can I help you today?";
|
|
2347
2376
|
readonly inputPlaceholder: "Ask about time, people, or company info and a lot of other things...";
|
|
2348
2377
|
readonly stopAnswerGeneration: "Stop generating";
|
|
2378
|
+
readonly responseStopped: "You stopped this response";
|
|
2349
2379
|
readonly sendMessage: "Send message";
|
|
2350
2380
|
readonly thoughtsGroupTitle: "Reflection";
|
|
2351
2381
|
readonly resourcesGroupTitle: "Resources";
|
|
@@ -2364,6 +2394,8 @@ export declare const defaultTranslations: {
|
|
|
2364
2394
|
readonly placeholder: "Share what didn’t work";
|
|
2365
2395
|
};
|
|
2366
2396
|
};
|
|
2397
|
+
readonly expandChat: "Expand chat";
|
|
2398
|
+
readonly collapseChat: "Collapse chat";
|
|
2367
2399
|
readonly ask: "Ask One";
|
|
2368
2400
|
readonly growth: {
|
|
2369
2401
|
readonly demoCard: {
|
|
@@ -2721,7 +2753,7 @@ export declare const F0AiChat: () => JSX_2.Element | null;
|
|
|
2721
2753
|
/**
|
|
2722
2754
|
* @experimental This is an experimental component use it at your own risk
|
|
2723
2755
|
*/
|
|
2724
|
-
export declare const F0AiChatProvider: ({ enabled, greeting, initialMessage, welcomeScreenSuggestions, disclaimer, resizable, onThumbsUp, onThumbsDown, children, agent, ...copilotKitProps }: AiChatProviderProps) => JSX_2.Element;
|
|
2756
|
+
export declare const F0AiChatProvider: ({ enabled, greeting, initialMessage, welcomeScreenSuggestions, disclaimer, resizable, defaultVisualizationMode, lockVisualizationMode, footer, onThumbsUp, onThumbsDown, children, agent, ...copilotKitProps }: AiChatProviderProps) => JSX_2.Element;
|
|
2725
2757
|
|
|
2726
2758
|
export declare const F0AiChatTextArea: ({ submitLabel, inProgress, onSend, onStop, placeholders, defaultPlaceholder, autoFocus, }: F0AiChatTextAreaProps) => JSX_2.Element;
|
|
2727
2759
|
|
|
@@ -4393,7 +4425,7 @@ export declare type F0SelectItemObject<T, R = unknown> = {
|
|
|
4393
4425
|
label: string;
|
|
4394
4426
|
description?: string;
|
|
4395
4427
|
avatar?: AvatarVariant;
|
|
4396
|
-
tag?:
|
|
4428
|
+
tag?: F0SelectTagProp;
|
|
4397
4429
|
icon?: IconType;
|
|
4398
4430
|
item?: R;
|
|
4399
4431
|
disabled?: boolean;
|
|
@@ -4459,6 +4491,12 @@ export declare type F0SelectProps<T extends string, R = unknown> = F0SelectBaseP
|
|
|
4459
4491
|
options: F0SelectItemProps<T, unknown>[];
|
|
4460
4492
|
}) & Pick<InputFieldProps<T>, "required" | "loading" | "hideLabel" | "labelIcon" | "size" | "label" | "icon" | "placeholder" | "disabled" | "name" | "error" | "status" | "hint">;
|
|
4461
4493
|
|
|
4494
|
+
export declare type F0SelectTagProp = string | {
|
|
4495
|
+
type: "dot";
|
|
4496
|
+
text: string;
|
|
4497
|
+
color: NewColor;
|
|
4498
|
+
};
|
|
4499
|
+
|
|
4462
4500
|
/**
|
|
4463
4501
|
* Source object for message sources
|
|
4464
4502
|
*/
|
|
@@ -7629,6 +7667,11 @@ declare type VisualizacionTypeDefinition<Props, Settings = Record<string, never>
|
|
|
7629
7667
|
};
|
|
7630
7668
|
};
|
|
7631
7669
|
|
|
7670
|
+
/**
|
|
7671
|
+
* Visualization mode for the AI chat
|
|
7672
|
+
*/
|
|
7673
|
+
export declare type VisualizationMode = "sidepanel" | "fullscreen";
|
|
7674
|
+
|
|
7632
7675
|
declare type VisualizationSettings = {
|
|
7633
7676
|
[K in keyof typeof collectionVisualizations]: ExtractVisualizationSettings<(typeof collectionVisualizations)[K]>;
|
|
7634
7677
|
};
|
|
@@ -7734,9 +7777,9 @@ declare namespace Calendar {
|
|
|
7734
7777
|
|
|
7735
7778
|
declare module "@tiptap/core" {
|
|
7736
7779
|
interface Commands<ReturnType> {
|
|
7737
|
-
|
|
7738
|
-
|
|
7739
|
-
|
|
7780
|
+
aiBlock: {
|
|
7781
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
7782
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
7740
7783
|
};
|
|
7741
7784
|
}
|
|
7742
7785
|
}
|
|
@@ -7744,8 +7787,9 @@ declare module "@tiptap/core" {
|
|
|
7744
7787
|
|
|
7745
7788
|
declare module "@tiptap/core" {
|
|
7746
7789
|
interface Commands<ReturnType> {
|
|
7747
|
-
|
|
7748
|
-
|
|
7790
|
+
enhanceHighlight: {
|
|
7791
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
7792
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
7749
7793
|
};
|
|
7750
7794
|
}
|
|
7751
7795
|
}
|
|
@@ -7753,9 +7797,8 @@ declare module "@tiptap/core" {
|
|
|
7753
7797
|
|
|
7754
7798
|
declare module "@tiptap/core" {
|
|
7755
7799
|
interface Commands<ReturnType> {
|
|
7756
|
-
|
|
7757
|
-
|
|
7758
|
-
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
7800
|
+
moodTracker: {
|
|
7801
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
7759
7802
|
};
|
|
7760
7803
|
}
|
|
7761
7804
|
}
|
package/dist/f0.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { a6 as X, a7 as vt, aa as Ji, ab as Mr, ac as Ir, ad as Za, ae as Ua, af as Qi, ag as qe, u as Zn, ah as zr, ai as qa, aj as Ya, ak as Ka, al as Xa, am as Me, an as Ie, ao as Ja, ap as Qa, aq as es, ar as eo, as as kn, at as ts, au as ns, av as rs, aw as is, ax as ss, ay as as, az as to, aA as no, aB as ro, aC as io, aD as so, a8 as Be, aE as ai, aF as ao, aG as oo, aH as os, aI as lo, aJ as Nt, aK as co, aL as uo, aM as ho, aN as fo, aO as mo, aP as po, aQ as go, aR as vo, aS as yo, aT as bo, aU as xo, aV as ls, aW as wo, aX as _o, aY as Co, aZ as Eo, a_ as ko, a$ as cs, b0 as So, b1 as Do, b2 as Ro, b3 as No, b4 as To, b5 as Oo, I as Ao, b6 as Mo, b7 as Io, b8 as zo, b9 as Lo } from "./F0AiChat-
|
|
2
|
-
import { A as Fm,
|
|
1
|
+
import { a6 as X, a7 as vt, aa as Ji, ab as Mr, ac as Ir, ad as Za, ae as Ua, af as Qi, ag as qe, u as Zn, ah as zr, ai as qa, aj as Ya, ak as Ka, al as Xa, am as Me, an as Ie, ao as Ja, ap as Qa, aq as es, ar as eo, as as kn, at as ts, au as ns, av as rs, aw as is, ax as ss, ay as as, az as to, aA as no, aB as ro, aC as io, aD as so, a8 as Be, aE as ai, aF as ao, aG as oo, aH as os, aI as lo, aJ as Nt, aK as co, aL as uo, aM as ho, aN as fo, aO as mo, aP as po, aQ as go, aR as vo, aS as yo, aT as bo, aU as xo, aV as ls, aW as wo, aX as _o, aY as Co, aZ as Eo, a_ as ko, a$ as cs, b0 as So, b1 as Do, b2 as Ro, b3 as No, b4 as To, b5 as Oo, I as Ao, b6 as Mo, b7 as Io, b8 as zo, b9 as Lo } from "./F0AiChat-Dv8ilDMD.js";
|
|
2
|
+
import { A as Fm, bp as Hm, B as jm, C as $m, E as Wm, bE as Gm, h as Vm, F as Zm, a as Um, x as qm, i as Ym, b as Km, ba as Xm, bb as Jm, bc as Qm, bd as ep, bf as tp, bg as np, bh as rp, bi as ip, bj as sp, bk as ap, bl as op, bA as lp, s as cp, t as dp, v as up, bo as hp, w as fp, c as mp, bq as pp, n as gp, o as vp, p as yp, H as bp, k as xp, L as wp, O as _p, bn as Cp, q as Ep, P as kp, S as Sp, T as Dp, l as Rp, m as Np, U as Tp, bB as Op, bv as Ap, r as Mp, j as Ip, by as zp, bu as Lp, bF as Pp, bt as Bp, bs as Fp, be as Hp, d as jp, br as $p, bw as Wp, e as Gp, bG as Vp, bm as Zp, bx as Up, g as qp, f as Yp, bD as Kp, bz as Xp, bC as Jp } from "./F0AiChat-Dv8ilDMD.js";
|
|
3
3
|
import { jsx as f, jsxs as M, Fragment as cn } from "react/jsx-runtime";
|
|
4
4
|
import V, { forwardRef as Ee, useRef as F, useImperativeHandle as Po, Children as Sn, createContext as Xe, useContext as Fe, useState as Z, useMemo as B, useEffect as j, useCallback as J, useLayoutEffect as yr, createElement as oi, isValidElement as ds, Fragment as Bo, memo as Fo, useReducer as Ho, cloneElement as jo, PureComponent as $o } from "react";
|
|
5
5
|
import { createPortal as us, unstable_batchedUpdates as bn } from "react-dom";
|
|
6
|
-
import { L as hs, C as Wo, i as fs, D as Go, S as li, a as Vo, f as or, b as Vt, c as Zo, A as Uo, d as xn, e as ms, E as qo, g as Cn, h as Yo, j as Ko, k as Xo, l as St, m as ps, u as Jo, G as Qo, n as el, o as ci, p as tl, q as gs, r as nl, B as vs, X as ys, Y as br, s as rl, t as bs, v as il, w as sl, x as al, y as ol, z as ll, F as cl, H as dl, I as ul, J as di, K as hl, M as Ut, N as lr, O as fl, P as ml, Q as pl, R as gl, T as vl, U as yl, V as bl, W as xl, Z as wl, _ as _l, $ as Cl, a0 as ui, a1 as El, a2 as kl, a3 as xs, a4 as Sl, a5 as Dl, a6 as Rl, a7 as Lr, a8 as hi, a9 as Nl, aa as Tl, ab as Ol, ac as Al, ad as Ml, ae as Il, af as zl, ag as Ll, ah as Pl, ai as ws, aj as Bl, ak as Fl, al as _s, am as fi, an as Cs, ao as Hl, ap as jl, aq as $l, ar as Wl } from "./DataCollectionStorageProvider-
|
|
7
|
-
import {
|
|
8
|
-
import { A as _g, F as Cg, c as Eg, b as kg, a as Sg, o as Dg, u as Rg } from "./F0HILActionConfirmation-
|
|
6
|
+
import { L as hs, C as Wo, i as fs, D as Go, S as li, a as Vo, f as or, b as Vt, c as Zo, A as Uo, d as xn, e as ms, E as qo, g as Cn, h as Yo, j as Ko, k as Xo, l as St, m as ps, u as Jo, G as Qo, n as el, o as ci, p as tl, q as gs, r as nl, B as vs, X as ys, Y as br, s as rl, t as bs, v as il, w as sl, x as al, y as ol, z as ll, F as cl, H as dl, I as ul, J as di, K as hl, M as Ut, N as lr, O as fl, P as ml, Q as pl, R as gl, T as vl, U as yl, V as bl, W as xl, Z as wl, _ as _l, $ as Cl, a0 as ui, a1 as El, a2 as kl, a3 as xs, a4 as Sl, a5 as Dl, a6 as Rl, a7 as Lr, a8 as hi, a9 as Nl, aa as Tl, ab as Ol, ac as Al, ad as Ml, ae as Il, af as zl, ag as Ll, ah as Pl, ai as ws, aj as Bl, ak as Fl, al as _s, am as fi, an as Cs, ao as Hl, ap as jl, aq as $l, ar as Wl } from "./DataCollectionStorageProvider-BB6YgyVT.js";
|
|
7
|
+
import { aI as eg, as as tg, at as ng, aw as rg, aA as ig, aB as sg, aD as ag, aE as og, aF as lg, aG as cg, az as dg, aC as ug, au as hg, av as fg, aH as mg, ax as pg, ay as gg, aJ as vg, aK as yg, aL as bg, aM as xg } from "./DataCollectionStorageProvider-BB6YgyVT.js";
|
|
8
|
+
import { A as _g, F as Cg, c as Eg, b as kg, a as Sg, o as Dg, u as Rg } from "./F0HILActionConfirmation-C2YWjDqH.js";
|
|
9
9
|
import { defaultTranslations as Tg } from "./i18n-provider-defaults.js";
|
|
10
10
|
import './f0.css';const Gl = {
|
|
11
11
|
xs: 1,
|
|
@@ -14315,7 +14315,7 @@ export {
|
|
|
14315
14315
|
$m as ChatSpinner,
|
|
14316
14316
|
hm as ComboChart,
|
|
14317
14317
|
em as Dashboard,
|
|
14318
|
-
|
|
14318
|
+
eg as DndProvider,
|
|
14319
14319
|
Wm as Em,
|
|
14320
14320
|
Gm as EmojiImage,
|
|
14321
14321
|
Vm as F0ActionItem,
|
|
@@ -14329,11 +14329,11 @@ export {
|
|
|
14329
14329
|
Xm as F0Avatar,
|
|
14330
14330
|
kl as F0AvatarAlert,
|
|
14331
14331
|
Jm as F0AvatarCompany,
|
|
14332
|
-
|
|
14332
|
+
tg as F0AvatarDate,
|
|
14333
14333
|
Qm as F0AvatarEmoji,
|
|
14334
14334
|
ep as F0AvatarFile,
|
|
14335
14335
|
ro as F0AvatarIcon,
|
|
14336
|
-
|
|
14336
|
+
ng as F0AvatarList,
|
|
14337
14337
|
ls as F0AvatarModule,
|
|
14338
14338
|
tp as F0AvatarPerson,
|
|
14339
14339
|
np as F0AvatarTeam,
|
|
@@ -14342,7 +14342,7 @@ export {
|
|
|
14342
14342
|
Be as F0Button,
|
|
14343
14343
|
rp as F0ButtonDropdown,
|
|
14344
14344
|
ip as F0ButtonToggle,
|
|
14345
|
-
|
|
14345
|
+
rg as F0Card,
|
|
14346
14346
|
oo as F0Checkbox,
|
|
14347
14347
|
Cm as F0ChipList,
|
|
14348
14348
|
xs as F0DatePicker,
|
|
@@ -14363,33 +14363,33 @@ export {
|
|
|
14363
14363
|
zm as F0Provider,
|
|
14364
14364
|
Nt as F0Select,
|
|
14365
14365
|
Am as F0TableOfContentPopover,
|
|
14366
|
-
|
|
14366
|
+
ig as F0TagAlert,
|
|
14367
14367
|
El as F0TagBalance,
|
|
14368
|
-
|
|
14369
|
-
|
|
14368
|
+
sg as F0TagCompany,
|
|
14369
|
+
hp as F0TagDot,
|
|
14370
14370
|
ag as F0TagList,
|
|
14371
14371
|
og as F0TagPerson,
|
|
14372
14372
|
wo as F0TagRaw,
|
|
14373
14373
|
Fl as F0TagStatus,
|
|
14374
14374
|
lg as F0TagTeam,
|
|
14375
14375
|
Os as F0Text,
|
|
14376
|
-
|
|
14377
|
-
|
|
14378
|
-
|
|
14379
|
-
|
|
14380
|
-
|
|
14381
|
-
|
|
14376
|
+
fp as F0Thinking,
|
|
14377
|
+
mp as FullscreenChatContext,
|
|
14378
|
+
pp as GROUP_ID_SYMBOL,
|
|
14379
|
+
gp as H1,
|
|
14380
|
+
vp as H2,
|
|
14381
|
+
yp as H3,
|
|
14382
14382
|
im as HomeLayout,
|
|
14383
|
-
|
|
14384
|
-
|
|
14383
|
+
bp as Hr,
|
|
14384
|
+
xp as Image,
|
|
14385
14385
|
tm as Layout,
|
|
14386
|
-
|
|
14386
|
+
wp as Li,
|
|
14387
14387
|
lm as LineChart,
|
|
14388
|
-
|
|
14389
|
-
|
|
14390
|
-
|
|
14388
|
+
_p as Ol,
|
|
14389
|
+
Cp as OneFilterPicker,
|
|
14390
|
+
Ep as P,
|
|
14391
14391
|
cm as PieChart,
|
|
14392
|
-
|
|
14392
|
+
kp as Pre,
|
|
14393
14393
|
jl as PrivacyModeProvider,
|
|
14394
14394
|
Fa as ProductBlankslate,
|
|
14395
14395
|
cg as ProductCard,
|
|
@@ -14397,14 +14397,14 @@ export {
|
|
|
14397
14397
|
Wf as ProductWidget,
|
|
14398
14398
|
um as ProgressBarChart,
|
|
14399
14399
|
nm as StandardLayout,
|
|
14400
|
-
|
|
14401
|
-
|
|
14400
|
+
Sp as Strong,
|
|
14401
|
+
Dp as Table,
|
|
14402
14402
|
dg as Tag,
|
|
14403
14403
|
ug as TagCounter,
|
|
14404
|
-
|
|
14405
|
-
|
|
14404
|
+
Rp as Td,
|
|
14405
|
+
Np as Th,
|
|
14406
14406
|
rm as TwoColumnLayout,
|
|
14407
|
-
|
|
14407
|
+
Tp as Ul,
|
|
14408
14408
|
_s as UpsellRequestResponseDialog,
|
|
14409
14409
|
Gf as UpsellingBanner,
|
|
14410
14410
|
Cs as UpsellingButton,
|
|
@@ -14413,7 +14413,7 @@ export {
|
|
|
14413
14413
|
kg as actionItemStatuses,
|
|
14414
14414
|
Sg as aiTranslations,
|
|
14415
14415
|
Qf as avatarVariants,
|
|
14416
|
-
|
|
14416
|
+
Op as buildTranslations,
|
|
14417
14417
|
ym as buttonDropdownSizes,
|
|
14418
14418
|
vm as buttonDropdownVariants,
|
|
14419
14419
|
gm as buttonSizes,
|
|
@@ -14423,52 +14423,52 @@ export {
|
|
|
14423
14423
|
hg as cardImageFits,
|
|
14424
14424
|
fg as cardImageSizes,
|
|
14425
14425
|
mg as createAtlaskitDriver,
|
|
14426
|
-
|
|
14426
|
+
Ap as createDataSourceDefinition,
|
|
14427
14427
|
lc as createPageLayoutBlock,
|
|
14428
14428
|
cc as createPageLayoutBlockGroup,
|
|
14429
14429
|
Lm as dataCollectionLocalStorageHandler,
|
|
14430
14430
|
Em as datepickerSizes,
|
|
14431
14431
|
Tg as defaultTranslations,
|
|
14432
|
-
|
|
14432
|
+
Mp as downloadTableAsExcel,
|
|
14433
14433
|
rr as evaluateRenderIf,
|
|
14434
14434
|
Me as experimental,
|
|
14435
14435
|
Sm as f0FormField,
|
|
14436
|
-
|
|
14436
|
+
Ip as f0MarkdownRenderers,
|
|
14437
14437
|
sn as generateAnchorId,
|
|
14438
|
-
|
|
14439
|
-
|
|
14440
|
-
|
|
14438
|
+
zp as getAnimationVariants,
|
|
14439
|
+
Lp as getDataSourcePaginationType,
|
|
14440
|
+
Pp as getEmojiLabel,
|
|
14441
14441
|
Jr as getF0Config,
|
|
14442
14442
|
Rm as getSchemaDefinition,
|
|
14443
14443
|
Dm as hasF0Config,
|
|
14444
14444
|
gh as inferFieldType,
|
|
14445
|
-
|
|
14446
|
-
|
|
14445
|
+
Bp as isInfiniteScrollPagination,
|
|
14446
|
+
Fp as isPageBasedPagination,
|
|
14447
14447
|
ie as isZodType,
|
|
14448
14448
|
wm as linkVariants,
|
|
14449
|
-
|
|
14449
|
+
Hp as modules,
|
|
14450
14450
|
Dg as oneIconSizes,
|
|
14451
14451
|
pg as predefinedPresets,
|
|
14452
14452
|
gg as selectSizes,
|
|
14453
14453
|
_m as tagDotColors,
|
|
14454
14454
|
$e as unwrapZodSchema,
|
|
14455
|
-
|
|
14455
|
+
jp as useAiChat,
|
|
14456
14456
|
Rg as useAiChatTranslations,
|
|
14457
|
-
|
|
14458
|
-
|
|
14459
|
-
|
|
14457
|
+
$p as useData,
|
|
14458
|
+
Wp as useDataSource,
|
|
14459
|
+
Gp as useDefaultCopilotActions,
|
|
14460
14460
|
vg as useDndEvents,
|
|
14461
14461
|
yg as useDraggable,
|
|
14462
14462
|
bg as useDroppableList,
|
|
14463
|
-
|
|
14464
|
-
|
|
14463
|
+
Vp as useEmojiConfetti,
|
|
14464
|
+
Zp as useF0Dialog,
|
|
14465
14465
|
Nm as useF0Form,
|
|
14466
|
-
|
|
14467
|
-
|
|
14468
|
-
|
|
14466
|
+
Up as useGroups,
|
|
14467
|
+
qp as useMessageSourcesAction,
|
|
14468
|
+
Yp as useOrchestratorThinkingAction,
|
|
14469
14469
|
xg as usePrivacyMode,
|
|
14470
|
-
|
|
14470
|
+
Kp as useReducedMotion,
|
|
14471
14471
|
Df as useSchemaDefinition,
|
|
14472
|
-
|
|
14473
|
-
|
|
14472
|
+
Xp as useSelectable,
|
|
14473
|
+
Jp as useXRay
|
|
14474
14474
|
};
|
|
@@ -354,6 +354,7 @@ export declare const defaultTranslations: {
|
|
|
354
354
|
readonly defaultInitialMessage: "How can I help you today?";
|
|
355
355
|
readonly inputPlaceholder: "Ask about time, people, or company info and a lot of other things...";
|
|
356
356
|
readonly stopAnswerGeneration: "Stop generating";
|
|
357
|
+
readonly responseStopped: "You stopped this response";
|
|
357
358
|
readonly sendMessage: "Send message";
|
|
358
359
|
readonly thoughtsGroupTitle: "Reflection";
|
|
359
360
|
readonly resourcesGroupTitle: "Resources";
|
|
@@ -372,6 +373,8 @@ export declare const defaultTranslations: {
|
|
|
372
373
|
readonly placeholder: "Share what didn’t work";
|
|
373
374
|
};
|
|
374
375
|
};
|
|
376
|
+
readonly expandChat: "Expand chat";
|
|
377
|
+
readonly collapseChat: "Collapse chat";
|
|
375
378
|
readonly ask: "Ask One";
|
|
376
379
|
readonly growth: {
|
|
377
380
|
readonly demoCard: {
|
|
@@ -610,9 +613,9 @@ declare namespace Calendar {
|
|
|
610
613
|
|
|
611
614
|
declare module "@tiptap/core" {
|
|
612
615
|
interface Commands<ReturnType> {
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
+
aiBlock: {
|
|
617
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
618
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
616
619
|
};
|
|
617
620
|
}
|
|
618
621
|
}
|
|
@@ -620,8 +623,9 @@ declare module "@tiptap/core" {
|
|
|
620
623
|
|
|
621
624
|
declare module "@tiptap/core" {
|
|
622
625
|
interface Commands<ReturnType> {
|
|
623
|
-
|
|
624
|
-
|
|
626
|
+
enhanceHighlight: {
|
|
627
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
628
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
625
629
|
};
|
|
626
630
|
}
|
|
627
631
|
}
|
|
@@ -629,9 +633,8 @@ declare module "@tiptap/core" {
|
|
|
629
633
|
|
|
630
634
|
declare module "@tiptap/core" {
|
|
631
635
|
interface Commands<ReturnType> {
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
636
|
+
moodTracker: {
|
|
637
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
635
638
|
};
|
|
636
639
|
}
|
|
637
640
|
}
|
|
@@ -354,6 +354,7 @@ const e = {
|
|
|
354
354
|
defaultInitialMessage: "How can I help you today?",
|
|
355
355
|
inputPlaceholder: "Ask about time, people, or company info and a lot of other things...",
|
|
356
356
|
stopAnswerGeneration: "Stop generating",
|
|
357
|
+
responseStopped: "You stopped this response",
|
|
357
358
|
sendMessage: "Send message",
|
|
358
359
|
thoughtsGroupTitle: "Reflection",
|
|
359
360
|
resourcesGroupTitle: "Resources",
|
|
@@ -372,6 +373,8 @@ const e = {
|
|
|
372
373
|
placeholder: "Share what didn’t work"
|
|
373
374
|
}
|
|
374
375
|
},
|
|
376
|
+
expandChat: "Expand chat",
|
|
377
|
+
collapseChat: "Collapse chat",
|
|
375
378
|
ask: "Ask One",
|
|
376
379
|
growth: {
|
|
377
380
|
demoCard: {
|