@factorialco/f0-react 4.8.0 → 4.9.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/{useChatHistory-msevU72I.js → F0AiProcessingOverlay-B8K7o_Ei.js} +1386 -1292
- package/dist/ai.d.ts +37 -6
- package/dist/ai.js +24 -23
- package/dist/experimental.d.ts +7 -6
- package/dist/f0.d.ts +37 -6
- package/dist/f0.js +78 -77
- package/dist/i18n-provider-defaults.d.ts +7 -6
- package/dist/i18n-provider-defaults.js +1 -0
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/ai.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ import { HTMLAttributes } from 'react';
|
|
|
20
20
|
import { ItemProps } from './types';
|
|
21
21
|
import { JSX as JSX_2 } from 'react';
|
|
22
22
|
import { LocalAudioTrack } from 'livekit-client';
|
|
23
|
+
import { NamedExoticComponent } from 'react';
|
|
23
24
|
import { Props as Props_3 } from './types';
|
|
24
25
|
import * as React_2 from 'react';
|
|
25
26
|
import { ReactElement } from 'react';
|
|
@@ -607,6 +608,7 @@ export declare const aiTranslations: {
|
|
|
607
608
|
readonly inputPlaceholder: "Ask about time, people, or company info and a lot of other things...";
|
|
608
609
|
readonly stopAnswerGeneration: "Stop generating";
|
|
609
610
|
readonly responseStopped: "You stopped this response";
|
|
611
|
+
readonly applyingChanges: "Applying changes";
|
|
610
612
|
readonly sendMessage: "Send message";
|
|
611
613
|
readonly thoughtsGroupTitle: "Reasoning";
|
|
612
614
|
readonly resourcesGroupTitle: "Resources";
|
|
@@ -2110,6 +2112,7 @@ export declare const defaultTranslations: {
|
|
|
2110
2112
|
readonly inputPlaceholder: "Ask about time, people, or company info and a lot of other things...";
|
|
2111
2113
|
readonly stopAnswerGeneration: "Stop generating";
|
|
2112
2114
|
readonly responseStopped: "You stopped this response";
|
|
2115
|
+
readonly applyingChanges: "Applying changes";
|
|
2113
2116
|
readonly sendMessage: "Send message";
|
|
2114
2117
|
readonly thoughtsGroupTitle: "Reasoning";
|
|
2115
2118
|
readonly resourcesGroupTitle: "Resources";
|
|
@@ -3022,6 +3025,34 @@ declare interface F0AiPongProps {
|
|
|
3022
3025
|
onClose: () => void;
|
|
3023
3026
|
}
|
|
3024
3027
|
|
|
3028
|
+
/**
|
|
3029
|
+
* Wraps a panel/canvas that F0AiChat is regenerating. While `active`, the
|
|
3030
|
+
* content blurs and stops receiving pointer events, and a centered pill — the
|
|
3031
|
+
* One icon plus an "Applying changes" label — floats over it, so the user gets
|
|
3032
|
+
* clear feedback that the surface is being updated and shouldn't be edited.
|
|
3033
|
+
*
|
|
3034
|
+
* Mirrors the survey form-builder "applying changes" affordance, lifted into
|
|
3035
|
+
* the F0AiChat family so any surface paired with the chat can reuse it.
|
|
3036
|
+
*/
|
|
3037
|
+
export declare const F0AiProcessingOverlay: NamedExoticComponent<F0AiProcessingOverlayProps>;
|
|
3038
|
+
|
|
3039
|
+
export declare interface F0AiProcessingOverlayProps {
|
|
3040
|
+
/**
|
|
3041
|
+
* When `true`, the wrapped content is blurred and locked
|
|
3042
|
+
* (`pointer-events-none`) and the floating status pill is shown over it.
|
|
3043
|
+
*/
|
|
3044
|
+
active: boolean;
|
|
3045
|
+
/**
|
|
3046
|
+
* Pill label. Defaults to the translated "Applying changes"
|
|
3047
|
+
* (`ai.applyingChanges`).
|
|
3048
|
+
*/
|
|
3049
|
+
label?: string;
|
|
3050
|
+
/** Extra classes for the wrapper element. */
|
|
3051
|
+
className?: string;
|
|
3052
|
+
/** The panel/canvas content the assistant is editing. */
|
|
3053
|
+
children: ReactNode;
|
|
3054
|
+
}
|
|
3055
|
+
|
|
3025
3056
|
export declare function F0AiProposalCard(props: F0AiProposalCardProps): JSX_2.Element;
|
|
3026
3057
|
|
|
3027
3058
|
export declare namespace F0AiProposalCard {
|
|
@@ -4746,10 +4777,8 @@ declare module "@tiptap/core" {
|
|
|
4746
4777
|
|
|
4747
4778
|
declare module "@tiptap/core" {
|
|
4748
4779
|
interface Commands<ReturnType> {
|
|
4749
|
-
|
|
4750
|
-
|
|
4751
|
-
src: string;
|
|
4752
|
-
}) => ReturnType;
|
|
4780
|
+
transcript: {
|
|
4781
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
4753
4782
|
};
|
|
4754
4783
|
}
|
|
4755
4784
|
}
|
|
@@ -4757,8 +4786,10 @@ declare module "@tiptap/core" {
|
|
|
4757
4786
|
|
|
4758
4787
|
declare module "@tiptap/core" {
|
|
4759
4788
|
interface Commands<ReturnType> {
|
|
4760
|
-
|
|
4761
|
-
|
|
4789
|
+
videoEmbed: {
|
|
4790
|
+
setVideoEmbed: (options: {
|
|
4791
|
+
src: string;
|
|
4792
|
+
}) => ReturnType;
|
|
4762
4793
|
};
|
|
4763
4794
|
}
|
|
4764
4795
|
}
|
package/dist/ai.js
CHANGED
|
@@ -1,23 +1,24 @@
|
|
|
1
|
-
import { C as e, D as r, c as
|
|
1
|
+
import { C as e, D as r, c as i, F as o, a as t, 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-B-6B9ckI.js";
|
|
2
2
|
import { defaultTranslations as c } from "./i18n-provider-defaults.js";
|
|
3
|
-
import { A as
|
|
3
|
+
import { A as v, s as I, t as g, w as f, l as p, i as y, q as T, x as S, y as x, p as H, r as O, j as V, e as b, g as k, k as w, F as M, h as D, a as j, n as q, m as z, o as B, b as E, f as L, v as R, c as G, d as J, u as K } from "./F0AiProcessingOverlay-B8K7o_Ei.js";
|
|
4
4
|
export {
|
|
5
|
-
|
|
5
|
+
v as AiChatTranslationsProvider,
|
|
6
6
|
e as ChatSpinner,
|
|
7
7
|
r as DropOverlay,
|
|
8
|
-
|
|
8
|
+
i as F0ActionItem,
|
|
9
9
|
o as F0AiChat,
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
I as F0AiChatHeader,
|
|
11
|
+
g as F0AiChatHistory,
|
|
12
|
+
t as F0AiChatProvider,
|
|
13
|
+
f as F0AiChatTextArea,
|
|
14
14
|
p as F0AiInsightCard,
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
y as F0AiMask,
|
|
16
|
+
T as F0AiMessageSources,
|
|
17
17
|
S as F0AiMessagesContainer,
|
|
18
18
|
n as F0AiPong,
|
|
19
|
-
x as
|
|
20
|
-
H as
|
|
19
|
+
x as F0AiProcessingOverlay,
|
|
20
|
+
H as F0AiProposalCard,
|
|
21
|
+
O as F0AiTableCard,
|
|
21
22
|
V as F0AuraVoiceAnimation,
|
|
22
23
|
b as F0CanvasCard,
|
|
23
24
|
F as F0CanvasPanel,
|
|
@@ -28,18 +29,18 @@ export {
|
|
|
28
29
|
M as FormCardValueFormatterProvider,
|
|
29
30
|
l as I18nProvider,
|
|
30
31
|
d as PongBall,
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
D as actionItemStatuses,
|
|
33
|
+
j as aiTranslations,
|
|
34
|
+
q as contentTypes,
|
|
34
35
|
c as defaultTranslations,
|
|
35
|
-
|
|
36
|
-
|
|
36
|
+
z as markdownRenderers,
|
|
37
|
+
B as oneIconSizes,
|
|
37
38
|
u as useAiChat,
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
39
|
+
E as useAiChatTranslations,
|
|
40
|
+
L as useCanvasEntity,
|
|
41
|
+
R as useChatHistory,
|
|
42
|
+
G as useFormCardValueFormatter,
|
|
42
43
|
m as useI18n,
|
|
43
|
-
|
|
44
|
-
|
|
44
|
+
J as useSetFormCardValueFormatter,
|
|
45
|
+
K as useToolCallId
|
|
45
46
|
};
|
package/dist/experimental.d.ts
CHANGED
|
@@ -3470,6 +3470,7 @@ declare const defaultTranslations: {
|
|
|
3470
3470
|
readonly inputPlaceholder: "Ask about time, people, or company info and a lot of other things...";
|
|
3471
3471
|
readonly stopAnswerGeneration: "Stop generating";
|
|
3472
3472
|
readonly responseStopped: "You stopped this response";
|
|
3473
|
+
readonly applyingChanges: "Applying changes";
|
|
3473
3474
|
readonly sendMessage: "Send message";
|
|
3474
3475
|
readonly thoughtsGroupTitle: "Reasoning";
|
|
3475
3476
|
readonly resourcesGroupTitle: "Resources";
|
|
@@ -9974,10 +9975,8 @@ declare module "@tiptap/core" {
|
|
|
9974
9975
|
|
|
9975
9976
|
declare module "@tiptap/core" {
|
|
9976
9977
|
interface Commands<ReturnType> {
|
|
9977
|
-
|
|
9978
|
-
|
|
9979
|
-
src: string;
|
|
9980
|
-
}) => ReturnType;
|
|
9978
|
+
transcript: {
|
|
9979
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
9981
9980
|
};
|
|
9982
9981
|
}
|
|
9983
9982
|
}
|
|
@@ -9985,8 +9984,10 @@ declare module "@tiptap/core" {
|
|
|
9985
9984
|
|
|
9986
9985
|
declare module "@tiptap/core" {
|
|
9987
9986
|
interface Commands<ReturnType> {
|
|
9988
|
-
|
|
9989
|
-
|
|
9987
|
+
videoEmbed: {
|
|
9988
|
+
setVideoEmbed: (options: {
|
|
9989
|
+
src: string;
|
|
9990
|
+
}) => ReturnType;
|
|
9990
9991
|
};
|
|
9991
9992
|
}
|
|
9992
9993
|
}
|
package/dist/f0.d.ts
CHANGED
|
@@ -106,6 +106,7 @@ import { LineChartConfig as LineChartConfig_2 } from './f0';
|
|
|
106
106
|
import { LineChartPropsBase } from './utils/types';
|
|
107
107
|
import { LocalAudioTrack } from 'livekit-client';
|
|
108
108
|
import { LongTextCellValue } from './types/longText';
|
|
109
|
+
import { NamedExoticComponent } from 'react';
|
|
109
110
|
import { NumberCellValue } from './f0';
|
|
110
111
|
import { NumberCellValue as NumberCellValue_2 } from './types/number';
|
|
111
112
|
import { NumberFilterOptions } from './NumberFilter/NumberFilter';
|
|
@@ -893,6 +894,7 @@ export declare const aiTranslations: {
|
|
|
893
894
|
readonly inputPlaceholder: "Ask about time, people, or company info and a lot of other things...";
|
|
894
895
|
readonly stopAnswerGeneration: "Stop generating";
|
|
895
896
|
readonly responseStopped: "You stopped this response";
|
|
897
|
+
readonly applyingChanges: "Applying changes";
|
|
896
898
|
readonly sendMessage: "Send message";
|
|
897
899
|
readonly thoughtsGroupTitle: "Reasoning";
|
|
898
900
|
readonly resourcesGroupTitle: "Resources";
|
|
@@ -4647,6 +4649,7 @@ export declare const defaultTranslations: {
|
|
|
4647
4649
|
readonly inputPlaceholder: "Ask about time, people, or company info and a lot of other things...";
|
|
4648
4650
|
readonly stopAnswerGeneration: "Stop generating";
|
|
4649
4651
|
readonly responseStopped: "You stopped this response";
|
|
4652
|
+
readonly applyingChanges: "Applying changes";
|
|
4650
4653
|
readonly sendMessage: "Send message";
|
|
4651
4654
|
readonly thoughtsGroupTitle: "Reasoning";
|
|
4652
4655
|
readonly resourcesGroupTitle: "Resources";
|
|
@@ -6399,6 +6402,34 @@ declare interface F0AiPongProps {
|
|
|
6399
6402
|
onClose: () => void;
|
|
6400
6403
|
}
|
|
6401
6404
|
|
|
6405
|
+
/**
|
|
6406
|
+
* Wraps a panel/canvas that F0AiChat is regenerating. While `active`, the
|
|
6407
|
+
* content blurs and stops receiving pointer events, and a centered pill — the
|
|
6408
|
+
* One icon plus an "Applying changes" label — floats over it, so the user gets
|
|
6409
|
+
* clear feedback that the surface is being updated and shouldn't be edited.
|
|
6410
|
+
*
|
|
6411
|
+
* Mirrors the survey form-builder "applying changes" affordance, lifted into
|
|
6412
|
+
* the F0AiChat family so any surface paired with the chat can reuse it.
|
|
6413
|
+
*/
|
|
6414
|
+
export declare const F0AiProcessingOverlay: NamedExoticComponent<F0AiProcessingOverlayProps>;
|
|
6415
|
+
|
|
6416
|
+
export declare interface F0AiProcessingOverlayProps {
|
|
6417
|
+
/**
|
|
6418
|
+
* When `true`, the wrapped content is blurred and locked
|
|
6419
|
+
* (`pointer-events-none`) and the floating status pill is shown over it.
|
|
6420
|
+
*/
|
|
6421
|
+
active: boolean;
|
|
6422
|
+
/**
|
|
6423
|
+
* Pill label. Defaults to the translated "Applying changes"
|
|
6424
|
+
* (`ai.applyingChanges`).
|
|
6425
|
+
*/
|
|
6426
|
+
label?: string;
|
|
6427
|
+
/** Extra classes for the wrapper element. */
|
|
6428
|
+
className?: string;
|
|
6429
|
+
/** The panel/canvas content the assistant is editing. */
|
|
6430
|
+
children: ReactNode;
|
|
6431
|
+
}
|
|
6432
|
+
|
|
6402
6433
|
export declare function F0AiProposalCard(props: F0AiProposalCardProps): JSX_2.Element;
|
|
6403
6434
|
|
|
6404
6435
|
export declare namespace F0AiProposalCard {
|
|
@@ -17212,10 +17243,8 @@ declare module "@tiptap/core" {
|
|
|
17212
17243
|
|
|
17213
17244
|
declare module "@tiptap/core" {
|
|
17214
17245
|
interface Commands<ReturnType> {
|
|
17215
|
-
|
|
17216
|
-
|
|
17217
|
-
src: string;
|
|
17218
|
-
}) => ReturnType;
|
|
17246
|
+
transcript: {
|
|
17247
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
17219
17248
|
};
|
|
17220
17249
|
}
|
|
17221
17250
|
}
|
|
@@ -17223,8 +17252,10 @@ declare module "@tiptap/core" {
|
|
|
17223
17252
|
|
|
17224
17253
|
declare module "@tiptap/core" {
|
|
17225
17254
|
interface Commands<ReturnType> {
|
|
17226
|
-
|
|
17227
|
-
|
|
17255
|
+
videoEmbed: {
|
|
17256
|
+
setVideoEmbed: (options: {
|
|
17257
|
+
src: string;
|
|
17258
|
+
}) => ReturnType;
|
|
17228
17259
|
};
|
|
17229
17260
|
}
|
|
17230
17261
|
}
|
package/dist/f0.js
CHANGED
|
@@ -3,13 +3,13 @@ import { hM as Hge, C as Wge, D as $ge, aR as Uge, c as Yge, F as Xge, a as qge,
|
|
|
3
3
|
import { jsx as w, jsxs as B, Fragment as rt } from "react/jsx-runtime";
|
|
4
4
|
import * as St from "react";
|
|
5
5
|
import xt, { forwardRef as sr, useRef as re, useImperativeHandle as cH, Children as wv, createContext as Or, useContext as dr, useState as ee, useMemo as se, useEffect as fe, useCallback as ae, useLayoutEffect as hb, isValidElement as H2, Fragment as yu, memo as W2, useReducer as fH, cloneElement as dH, useId as Hc, useSyncExternalStore as Zl } from "react";
|
|
6
|
-
import {
|
|
7
|
-
import { A as pye, s as gye, t as mye, w as yye, l as bye, i as xye, q as _ye, x as wye,
|
|
6
|
+
import { z as hH, B as vH, C as pH, D as gH, E as $2, G as Sv, H as lw, I as U2, J as Y2, K as bi, L as mH, M as yH, N as bH, O as xH, P as _H, F as wH } from "./F0AiProcessingOverlay-B8K7o_Ei.js";
|
|
7
|
+
import { A as pye, s as gye, t as mye, w as yye, l as bye, i as xye, q as _ye, x as wye, y as Sye, p as Cye, r as Tye, j as Dye, e as Aye, g as Mye, k as Eye, h as Lye, a as Nye, n as Iye, m as Rye, o as kye, b as Pye, f as Oye, v as Bye, c as zye, d as Vye, u as Fye } from "./F0AiProcessingOverlay-B8K7o_Ei.js";
|
|
8
8
|
import { createPortal as Qf, unstable_batchedUpdates as Sd } from "react-dom";
|
|
9
9
|
import { C as SH, F as X2, ah as q2, ai as CH, aj as TH, ak as DH, al as ng, am as ig, G as AH, an as MH, ao as va, Y as EH, a8 as LH, ap as NH, Q as IH, aq as RH, ar as kH, c as ag, R as uw, u as cw, W as Z2, O as fw, as as j2, at as mC, au as dw, o as PH, d as K2, $ as Q2, av as OH, aw as BH, ax as zH, ay as VH, az as FH, M as GH } from "./useDataCollectionSource-Cs0H4TUr.js";
|
|
10
|
-
import { r as
|
|
10
|
+
import { r as Hye, s as Wye, H as $ye, t as Uye, z as Yye, aQ as Xye, aP as qye, aL as Zye, aB as jye, aA as Kye, aC as Qye, aD as Jye, aa as e0e, a9 as t0e, ad as r0e, U as n0e, J as i0e, af as a0e, K as o0e, v as s0e, aR as l0e, ab as u0e, ac as c0e, N as f0e, w as d0e, P as h0e, y as v0e, D as p0e, ae as g0e, T as m0e, ag as y0e, x as b0e, E as x0e, aT as _0e, m as w0e, n as S0e, aK as C0e, aG as T0e, aF as D0e, aS as A0e, a6 as M0e, aI as E0e, aJ as L0e, I as N0e, aU as I0e, aV as R0e, e as k0e, aM as P0e, aN as O0e, aO as B0e, aH as z0e, f as V0e, h as F0e, aE as G0e, aW as H0e } from "./useDataCollectionSource-Cs0H4TUr.js";
|
|
11
11
|
import { utils as Fl, write as J2 } from "./xlsx-Bedf3nwD.js";
|
|
12
|
-
import { defaultTranslations as
|
|
12
|
+
import { defaultTranslations as $0e } from "./i18n-provider-defaults.js";
|
|
13
13
|
import './f0.css';const HH = {
|
|
14
14
|
xs: 1,
|
|
15
15
|
sm: 2,
|
|
@@ -69659,21 +69659,21 @@ const Xh = /* @__PURE__ */ new Set(), Z_ = /* @__PURE__ */ new Set(), lb = () =>
|
|
|
69659
69659
|
};
|
|
69660
69660
|
export {
|
|
69661
69661
|
pye as AiChatTranslationsProvider,
|
|
69662
|
-
|
|
69662
|
+
Hye as AreaChart,
|
|
69663
69663
|
Hge as Await,
|
|
69664
|
-
|
|
69664
|
+
Wye as BarChart,
|
|
69665
69665
|
e5 as BarChartSkeleton,
|
|
69666
|
-
|
|
69667
|
-
|
|
69666
|
+
$ye as CardSelectableContainer,
|
|
69667
|
+
Uye as CategoryBarChart,
|
|
69668
69668
|
Wge as ChatSpinner,
|
|
69669
69669
|
xv as Chip,
|
|
69670
|
-
|
|
69671
|
-
|
|
69672
|
-
|
|
69670
|
+
Yye as ComboChart,
|
|
69671
|
+
Xye as DATA_COLLECTION_URL_PARAMS,
|
|
69672
|
+
qye as DATA_COLLECTION_URL_PARAM_PREFIX,
|
|
69673
69673
|
zpe as Dashboard,
|
|
69674
69674
|
s5 as DataChartEmptyStateView,
|
|
69675
69675
|
y3 as DataTestIdWrapper,
|
|
69676
|
-
|
|
69676
|
+
Zye as DndProvider,
|
|
69677
69677
|
$ge as DropOverlay,
|
|
69678
69678
|
Uge as EmojiImage,
|
|
69679
69679
|
rge as F0Accordion,
|
|
@@ -69690,13 +69690,14 @@ export {
|
|
|
69690
69690
|
_ye as F0AiMessageSources,
|
|
69691
69691
|
wye as F0AiMessagesContainer,
|
|
69692
69692
|
jge as F0AiPong,
|
|
69693
|
-
Sye as
|
|
69694
|
-
Cye as
|
|
69695
|
-
|
|
69693
|
+
Sye as F0AiProcessingOverlay,
|
|
69694
|
+
Cye as F0AiProposalCard,
|
|
69695
|
+
Tye as F0AiTableCard,
|
|
69696
|
+
jye as F0Alert,
|
|
69696
69697
|
Rge as F0AnalyticsDashboard,
|
|
69697
69698
|
Jpe as F0AudioPlayer,
|
|
69698
69699
|
ege as F0AudioPlayerCard,
|
|
69699
|
-
|
|
69700
|
+
Dye as F0AuraVoiceAnimation,
|
|
69700
69701
|
Y3 as F0Avatar,
|
|
69701
69702
|
F2 as F0AvatarAlert,
|
|
69702
69703
|
Kge as F0AvatarCompany,
|
|
@@ -69714,14 +69715,14 @@ export {
|
|
|
69714
69715
|
it as F0Button,
|
|
69715
69716
|
l3 as F0ButtonDropdown,
|
|
69716
69717
|
ame as F0ButtonToggle,
|
|
69717
|
-
|
|
69718
|
+
Aye as F0CanvasCard,
|
|
69718
69719
|
ome as F0CanvasPanel,
|
|
69719
69720
|
sme as F0Card,
|
|
69720
69721
|
lf as F0Checkbox,
|
|
69721
69722
|
ige as F0ChipList,
|
|
69722
|
-
|
|
69723
|
+
Mye as F0ClarifyingPanel,
|
|
69723
69724
|
sfe as F0DataChart,
|
|
69724
|
-
|
|
69725
|
+
Kye as F0DatePicker,
|
|
69725
69726
|
Mge as F0DemoCard,
|
|
69726
69727
|
V3 as F0Dialog,
|
|
69727
69728
|
O5 as F0DialogAlikeContext,
|
|
@@ -69729,28 +69730,28 @@ export {
|
|
|
69729
69730
|
k3 as F0DialogContext,
|
|
69730
69731
|
lme as F0DialogProvider,
|
|
69731
69732
|
lge as F0Drawer,
|
|
69732
|
-
|
|
69733
|
+
Qye as F0DurationInput,
|
|
69733
69734
|
ume as F0EventCatcherProvider,
|
|
69734
69735
|
Ege as F0FAQCard,
|
|
69735
69736
|
cme as F0FileItem,
|
|
69736
69737
|
uge as F0FilterPickerContent,
|
|
69737
|
-
|
|
69738
|
+
Jye as F0Form,
|
|
69738
69739
|
Dr as F0FormField,
|
|
69739
69740
|
bge as F0GridStack,
|
|
69740
|
-
|
|
69741
|
+
Eye as F0HILActionConfirmation,
|
|
69741
69742
|
hge as F0Heading,
|
|
69742
69743
|
tt as F0Icon,
|
|
69743
69744
|
rH as F0Link,
|
|
69744
69745
|
Lge as F0ModuleCard,
|
|
69745
|
-
|
|
69746
|
-
|
|
69746
|
+
e0e as F0NotesTextEditor,
|
|
69747
|
+
t0e as F0NotesTextEditorSkeleton,
|
|
69747
69748
|
IH as F0NumberInput,
|
|
69748
69749
|
E3 as F0OneIcon,
|
|
69749
69750
|
fme as F0OneSwitch,
|
|
69750
69751
|
Bge as F0Provider,
|
|
69751
69752
|
Ige as F0QuestionCardMultiStep,
|
|
69752
69753
|
K3 as F0RichTextDisplay,
|
|
69753
|
-
|
|
69754
|
+
r0e as F0RichTextEditor,
|
|
69754
69755
|
dme as F0SearchInput,
|
|
69755
69756
|
hme as F0Select,
|
|
69756
69757
|
pge as F0Slider,
|
|
@@ -69765,12 +69766,12 @@ export {
|
|
|
69765
69766
|
D2 as F0TagStatus,
|
|
69766
69767
|
bme as F0TagTeam,
|
|
69767
69768
|
df as F0Text,
|
|
69768
|
-
|
|
69769
|
+
n0e as F0TextAreaInput,
|
|
69769
69770
|
R3 as F0TextInput,
|
|
69770
69771
|
mge as F0TimelineRow,
|
|
69771
69772
|
fge as F0WizardForm,
|
|
69772
|
-
|
|
69773
|
-
|
|
69773
|
+
i0e as F1SearchBox,
|
|
69774
|
+
a0e as FILE_TYPES,
|
|
69774
69775
|
xme as FileItem,
|
|
69775
69776
|
wH as FormCardValueFormatterProvider,
|
|
69776
69777
|
r5 as FunnelChartSkeleton,
|
|
@@ -69778,32 +69779,32 @@ export {
|
|
|
69778
69779
|
a5 as GaugeChartSkeleton,
|
|
69779
69780
|
o5 as HeatmapChartSkeleton,
|
|
69780
69781
|
Wpe as HomeLayout,
|
|
69781
|
-
|
|
69782
|
+
o0e as Input,
|
|
69782
69783
|
Fpe as Layout,
|
|
69783
|
-
|
|
69784
|
+
s0e as LineChart,
|
|
69784
69785
|
t5 as LineChartSkeleton,
|
|
69785
|
-
|
|
69786
|
-
|
|
69787
|
-
|
|
69788
|
-
|
|
69786
|
+
l0e as MAX_URL_FILTER_VALUES,
|
|
69787
|
+
u0e as NotesTextEditor,
|
|
69788
|
+
c0e as NotesTextEditorSkeleton,
|
|
69789
|
+
f0e as NumberInput,
|
|
69789
69790
|
wme as OneCalendar,
|
|
69790
69791
|
Sme as OneCalendarInternal,
|
|
69791
69792
|
Pl as OneEllipsis,
|
|
69792
69793
|
fw as OneEmptyState,
|
|
69793
69794
|
tH as OneFilterPicker,
|
|
69794
|
-
|
|
69795
|
+
d0e as PieChart,
|
|
69795
69796
|
n5 as PieChartSkeleton,
|
|
69796
69797
|
Cme as PongBall,
|
|
69797
69798
|
FH as PrivacyModeProvider,
|
|
69798
69799
|
Jhe as ProductBlankslate,
|
|
69799
|
-
|
|
69800
|
+
h0e as ProductCard,
|
|
69800
69801
|
Cge as ProductModal,
|
|
69801
69802
|
nve as ProductWidget,
|
|
69802
|
-
|
|
69803
|
-
|
|
69803
|
+
v0e as ProgressBarChart,
|
|
69804
|
+
p0e as RadarChart,
|
|
69804
69805
|
i5 as RadarChartSkeleton,
|
|
69805
69806
|
Tme as RichTextDisplay,
|
|
69806
|
-
|
|
69807
|
+
g0e as RichTextEditor,
|
|
69807
69808
|
Gpe as StandardLayout,
|
|
69808
69809
|
mG as SurveyAllQuestionsLoadingSkeleton,
|
|
69809
69810
|
wge as SurveyAnsweringForm,
|
|
@@ -69812,32 +69813,32 @@ export {
|
|
|
69812
69813
|
Bhe as SurveySteppedLoadingSkeleton,
|
|
69813
69814
|
yge as Tag,
|
|
69814
69815
|
Dme as TagCounter,
|
|
69815
|
-
|
|
69816
|
+
m0e as Textarea,
|
|
69816
69817
|
ppe as ToastProvider,
|
|
69817
69818
|
Hpe as TwoColumnLayout,
|
|
69818
|
-
|
|
69819
|
+
y0e as UPLOAD_INPUT_ID,
|
|
69819
69820
|
j2 as UpsellRequestResponseDialog,
|
|
69820
69821
|
Tge as UpsellingAlert,
|
|
69821
69822
|
Dge as UpsellingBanner,
|
|
69822
69823
|
dw as UpsellingButton,
|
|
69823
69824
|
Age as UpsellingPopover,
|
|
69824
|
-
|
|
69825
|
+
b0e as VerticalBarChart,
|
|
69825
69826
|
Ame as WeekStartDay,
|
|
69826
|
-
|
|
69827
|
-
|
|
69827
|
+
x0e as actionBarStatuses,
|
|
69828
|
+
Lye as actionItemStatuses,
|
|
69828
69829
|
Mme as adaptDataAdapterToInfiniteScroll,
|
|
69829
|
-
|
|
69830
|
+
Nye as aiTranslations,
|
|
69830
69831
|
sge as alertVariantOptions,
|
|
69831
69832
|
Qpe as audioPlayerSizes,
|
|
69832
69833
|
Bpe as avatarVariants,
|
|
69833
|
-
|
|
69834
|
+
_0e as buildDataCollectionUrlParams,
|
|
69834
69835
|
Eme as buildTranslations,
|
|
69835
69836
|
Kpe as buttonDropdownModes,
|
|
69836
69837
|
jpe as buttonDropdownSizes,
|
|
69837
69838
|
Zpe as buttonDropdownVariants,
|
|
69838
69839
|
qpe as buttonSizes,
|
|
69839
|
-
|
|
69840
|
-
|
|
69840
|
+
w0e as buttonToggleSizes,
|
|
69841
|
+
S0e as buttonToggleVariants,
|
|
69841
69842
|
Xpe as buttonVariants,
|
|
69842
69843
|
nge as cardAlertVariants,
|
|
69843
69844
|
Lme as cardImageAspectRatios,
|
|
@@ -69846,8 +69847,8 @@ export {
|
|
|
69846
69847
|
$pe as chartColorTokens,
|
|
69847
69848
|
Rme as chipVariants,
|
|
69848
69849
|
Lhe as computeSectionEndIds,
|
|
69849
|
-
|
|
69850
|
-
|
|
69850
|
+
Iye as contentTypes,
|
|
69851
|
+
C0e as createAtlaskitDriver,
|
|
69851
69852
|
kme as createDataSourceDefinition,
|
|
69852
69853
|
cge as createF0FormDefinitionTester,
|
|
69853
69854
|
qfe as createF0FormTester,
|
|
@@ -69855,7 +69856,7 @@ export {
|
|
|
69855
69856
|
uW as createPageLayoutBlockGroup,
|
|
69856
69857
|
age as dataCollectionLocalStorageHandler,
|
|
69857
69858
|
oge as datepickerSizes,
|
|
69858
|
-
|
|
69859
|
+
$0e as defaultTranslations,
|
|
69859
69860
|
Pme as defineAvailableForm,
|
|
69860
69861
|
Yfe as describeFormSchema,
|
|
69861
69862
|
zge as dialogs,
|
|
@@ -69870,7 +69871,7 @@ export {
|
|
|
69870
69871
|
Mhe as flattenElements,
|
|
69871
69872
|
qp as formatPlaybackTime,
|
|
69872
69873
|
dge as forms,
|
|
69873
|
-
|
|
69874
|
+
T0e as generateAnchorId,
|
|
69874
69875
|
Fme as getAnimationVariants,
|
|
69875
69876
|
vC as getDataCollectionStorageKey,
|
|
69876
69877
|
Gme as getDataSourcePaginationType,
|
|
@@ -69879,7 +69880,7 @@ export {
|
|
|
69879
69880
|
Wme as getGranularityDefinition,
|
|
69880
69881
|
$me as getGranularityDefinitions,
|
|
69881
69882
|
Ume as getGranularitySimpleDefinition,
|
|
69882
|
-
|
|
69883
|
+
D0e as getSchemaDefinition,
|
|
69883
69884
|
Yme as granularityDefinitions,
|
|
69884
69885
|
Xme as hasF0Config,
|
|
69885
69886
|
x3 as inferFieldType,
|
|
@@ -69888,58 +69889,58 @@ export {
|
|
|
69888
69889
|
Zme as isPageBasedPagination,
|
|
69889
69890
|
jme as isZodType,
|
|
69890
69891
|
tge as linkVariants,
|
|
69891
|
-
|
|
69892
|
+
Rye as markdownRenderers,
|
|
69892
69893
|
Kme as mergeDataCollectionFilters,
|
|
69893
69894
|
Qme as modules,
|
|
69894
|
-
|
|
69895
|
-
|
|
69896
|
-
|
|
69895
|
+
kye as oneIconSizes,
|
|
69896
|
+
A0e as parseDataCollectionUrlParams,
|
|
69897
|
+
M0e as predefinedPresets,
|
|
69897
69898
|
Jme as rangeSeparator,
|
|
69898
69899
|
eye as readDataCollectionStorage,
|
|
69899
69900
|
YI as reconstructElements,
|
|
69900
69901
|
tye as resolveDataCollectionFilters,
|
|
69901
|
-
|
|
69902
|
-
|
|
69902
|
+
E0e as resolveItemNeighbors,
|
|
69903
|
+
L0e as resolveWindowNeighbors,
|
|
69903
69904
|
rye as secondsToFields,
|
|
69904
69905
|
nye as secondsToVisibleFields,
|
|
69905
|
-
|
|
69906
|
-
|
|
69906
|
+
N0e as selectSizes,
|
|
69907
|
+
I0e as setDataCollectionUrlParams,
|
|
69907
69908
|
vge as sliderTooltipModes,
|
|
69908
|
-
|
|
69909
|
+
R0e as syncDataCollectionUrlParams,
|
|
69909
69910
|
Upe as tagDotColors,
|
|
69910
69911
|
gge as timelineRowStatuses,
|
|
69911
69912
|
Pge as toasts,
|
|
69912
69913
|
iye as unwrapZodSchema,
|
|
69913
69914
|
aye as useAiChat,
|
|
69914
|
-
|
|
69915
|
+
Pye as useAiChatTranslations,
|
|
69915
69916
|
Ife as useAudioPlayer,
|
|
69916
|
-
|
|
69917
|
-
|
|
69917
|
+
Oye as useCanvasEntity,
|
|
69918
|
+
Bye as useChatHistory,
|
|
69918
69919
|
oye as useData,
|
|
69919
69920
|
sye as useDataSource,
|
|
69920
|
-
|
|
69921
|
-
|
|
69922
|
-
|
|
69923
|
-
|
|
69921
|
+
k0e as useDataSourceItemNavigation,
|
|
69922
|
+
P0e as useDndEvents,
|
|
69923
|
+
O0e as useDraggable,
|
|
69924
|
+
B0e as useDroppableList,
|
|
69924
69925
|
lye as useEmojiConfetti,
|
|
69925
69926
|
uye as useF0AiFormRegistry,
|
|
69926
69927
|
cye as useF0Dialog,
|
|
69927
69928
|
B5 as useF0DialogAlikeContext,
|
|
69928
69929
|
ng as useF0Form,
|
|
69929
|
-
|
|
69930
|
-
|
|
69930
|
+
z0e as useF0FormDefinition,
|
|
69931
|
+
zye as useFormCardValueFormatter,
|
|
69931
69932
|
Oge as useFormComponent,
|
|
69932
69933
|
fye as useGroups,
|
|
69933
69934
|
kge as useIsDesktop,
|
|
69934
69935
|
EG as useIsMobile,
|
|
69935
|
-
|
|
69936
|
-
|
|
69936
|
+
V0e as useItemNeighbors,
|
|
69937
|
+
F0e as usePrivacyMode,
|
|
69937
69938
|
K_ as useReducedMotion,
|
|
69938
|
-
|
|
69939
|
+
G0e as useSchemaDefinition,
|
|
69939
69940
|
dye as useSelectable,
|
|
69940
|
-
|
|
69941
|
-
|
|
69941
|
+
Vye as useSetFormCardValueFormatter,
|
|
69942
|
+
Fye as useToolCallId,
|
|
69942
69943
|
hye as useXRay,
|
|
69943
69944
|
nt as withDataTestId,
|
|
69944
|
-
|
|
69945
|
+
H0e as writeDataCollectionStorage
|
|
69945
69946
|
};
|
|
@@ -418,6 +418,7 @@ export declare const defaultTranslations: {
|
|
|
418
418
|
readonly inputPlaceholder: "Ask about time, people, or company info and a lot of other things...";
|
|
419
419
|
readonly stopAnswerGeneration: "Stop generating";
|
|
420
420
|
readonly responseStopped: "You stopped this response";
|
|
421
|
+
readonly applyingChanges: "Applying changes";
|
|
421
422
|
readonly sendMessage: "Send message";
|
|
422
423
|
readonly thoughtsGroupTitle: "Reasoning";
|
|
423
424
|
readonly resourcesGroupTitle: "Resources";
|
|
@@ -901,10 +902,8 @@ declare module "@tiptap/core" {
|
|
|
901
902
|
|
|
902
903
|
declare module "@tiptap/core" {
|
|
903
904
|
interface Commands<ReturnType> {
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
src: string;
|
|
907
|
-
}) => ReturnType;
|
|
905
|
+
transcript: {
|
|
906
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
908
907
|
};
|
|
909
908
|
}
|
|
910
909
|
}
|
|
@@ -912,8 +911,10 @@ declare module "@tiptap/core" {
|
|
|
912
911
|
|
|
913
912
|
declare module "@tiptap/core" {
|
|
914
913
|
interface Commands<ReturnType> {
|
|
915
|
-
|
|
916
|
-
|
|
914
|
+
videoEmbed: {
|
|
915
|
+
setVideoEmbed: (options: {
|
|
916
|
+
src: string;
|
|
917
|
+
}) => ReturnType;
|
|
917
918
|
};
|
|
918
919
|
}
|
|
919
920
|
}
|
|
@@ -418,6 +418,7 @@ const e = {
|
|
|
418
418
|
inputPlaceholder: "Ask about time, people, or company info and a lot of other things...",
|
|
419
419
|
stopAnswerGeneration: "Stop generating",
|
|
420
420
|
responseStopped: "You stopped this response",
|
|
421
|
+
applyingChanges: "Applying changes",
|
|
421
422
|
sendMessage: "Send message",
|
|
422
423
|
thoughtsGroupTitle: "Reasoning",
|
|
423
424
|
resourcesGroupTitle: "Resources",
|