@factorialco/f0-react 1.463.0 → 1.463.2
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-CpZHHGPt.js → F0AiChat-CHqbjcwZ.js} +3 -2
- package/dist/ai.d.ts +15 -15
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +15 -15
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +15 -15
- package/dist/f0.js +6 -6
- package/dist/i18n-provider-defaults.d.ts +14 -14
- package/dist/{index-BWx7rlJn.js → index-5lbMW8t2.js} +1 -1
- package/dist/{types-CCNMPEHA.js → types-DD3xEcvU.js} +1 -1
- package/package.json +1 -1
|
@@ -194957,11 +194957,11 @@ function dKe({
|
|
|
194957
194957
|
), o = Pe(
|
|
194958
194958
|
(s) => {
|
|
194959
194959
|
if (!s) {
|
|
194960
|
-
t.onChange(null)
|
|
194960
|
+
t.onChange(null);
|
|
194961
194961
|
return;
|
|
194962
194962
|
}
|
|
194963
194963
|
const l = Ayr(s);
|
|
194964
|
-
t.onChange(l)
|
|
194964
|
+
t.onChange(l);
|
|
194965
194965
|
},
|
|
194966
194966
|
[t]
|
|
194967
194967
|
);
|
|
@@ -194973,6 +194973,7 @@ function dKe({
|
|
|
194973
194973
|
disabled: e.disabled,
|
|
194974
194974
|
value: a,
|
|
194975
194975
|
onChange: o,
|
|
194976
|
+
onBlur: t.onBlur,
|
|
194976
194977
|
size: d8,
|
|
194977
194978
|
hideLabel: !0,
|
|
194978
194979
|
error: n,
|
package/dist/ai.d.ts
CHANGED
|
@@ -2645,7 +2645,7 @@ declare const internalAvatarTypes: readonly ["base", "rounded"];
|
|
|
2645
2645
|
* Profile data for a job posting entity (ATS opening), resolved asynchronously
|
|
2646
2646
|
* and displayed in the entity reference hover card.
|
|
2647
2647
|
*/
|
|
2648
|
-
declare type JobPostingProfile = {
|
|
2648
|
+
export declare type JobPostingProfile = {
|
|
2649
2649
|
id: string | number;
|
|
2650
2650
|
title: string;
|
|
2651
2651
|
status?: string;
|
|
@@ -3262,9 +3262,9 @@ declare module "gridstack" {
|
|
|
3262
3262
|
|
|
3263
3263
|
declare module "@tiptap/core" {
|
|
3264
3264
|
interface Commands<ReturnType> {
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
|
|
3265
|
+
aiBlock: {
|
|
3266
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
3267
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
3268
3268
|
};
|
|
3269
3269
|
}
|
|
3270
3270
|
}
|
|
@@ -3272,8 +3272,9 @@ declare module "@tiptap/core" {
|
|
|
3272
3272
|
|
|
3273
3273
|
declare module "@tiptap/core" {
|
|
3274
3274
|
interface Commands<ReturnType> {
|
|
3275
|
-
|
|
3276
|
-
|
|
3275
|
+
enhanceHighlight: {
|
|
3276
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
3277
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
3277
3278
|
};
|
|
3278
3279
|
}
|
|
3279
3280
|
}
|
|
@@ -3281,9 +3282,8 @@ declare module "@tiptap/core" {
|
|
|
3281
3282
|
|
|
3282
3283
|
declare module "@tiptap/core" {
|
|
3283
3284
|
interface Commands<ReturnType> {
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
3285
|
+
moodTracker: {
|
|
3286
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
3287
3287
|
};
|
|
3288
3288
|
}
|
|
3289
3289
|
}
|
|
@@ -3291,8 +3291,10 @@ declare module "@tiptap/core" {
|
|
|
3291
3291
|
|
|
3292
3292
|
declare module "@tiptap/core" {
|
|
3293
3293
|
interface Commands<ReturnType> {
|
|
3294
|
-
|
|
3295
|
-
|
|
3294
|
+
videoEmbed: {
|
|
3295
|
+
setVideoEmbed: (options: {
|
|
3296
|
+
src: string;
|
|
3297
|
+
}) => ReturnType;
|
|
3296
3298
|
};
|
|
3297
3299
|
}
|
|
3298
3300
|
}
|
|
@@ -3300,10 +3302,8 @@ declare module "@tiptap/core" {
|
|
|
3300
3302
|
|
|
3301
3303
|
declare module "@tiptap/core" {
|
|
3302
3304
|
interface Commands<ReturnType> {
|
|
3303
|
-
|
|
3304
|
-
|
|
3305
|
-
src: string;
|
|
3306
|
-
}) => ReturnType;
|
|
3305
|
+
transcript: {
|
|
3306
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
3307
3307
|
};
|
|
3308
3308
|
}
|
|
3309
3309
|
}
|
package/dist/ai.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { l as t, k as e, F as r, a as o, C as i, b as n, m as F, n as u, d as A, I as c, g as C, c as m, h, e as l, u as d, j as I, i as f, f as T } from "./F0AiChat-
|
|
1
|
+
import { l as t, k as e, F as r, a as o, C as i, b as n, m as F, n as u, d as A, I as c, g as C, c as m, h, e as l, u as d, j as I, i as f, f as T } from "./F0AiChat-CHqbjcwZ.js";
|
|
2
2
|
import { defaultTranslations as S } from "./i18n-provider-defaults.js";
|
|
3
|
-
import { A as v, e as x, F as P, c as V, d as k, b as O, a as b, f as y, o as M, u as j } from "./types-
|
|
3
|
+
import { A as v, e as x, F as P, c as V, d as k, b as O, a as b, f as y, o as M, u as j } from "./types-DD3xEcvU.js";
|
|
4
4
|
export {
|
|
5
5
|
v as AiChatTranslationsProvider,
|
|
6
6
|
t as ChatSpinner,
|
package/dist/experimental.d.ts
CHANGED
|
@@ -4946,7 +4946,7 @@ declare const inputFieldStatus: readonly ["default", "warning", "info", "error"]
|
|
|
4946
4946
|
|
|
4947
4947
|
declare type InputFieldStatusType = (typeof inputFieldStatus)[number];
|
|
4948
4948
|
|
|
4949
|
-
declare type InputInternalProps<T extends string> = Pick<ComponentProps<typeof Input_2>, "ref"> & Pick<InputFieldProps<T>, "autoFocus" | "required" | "disabled" | "size" | "onChange" | "value" | "placeholder" | "clearable" | "maxLength" | "label" | "labelIcon" | "icon" | "hideLabel" | "name" | "error" | "status" | "hint" | "autocomplete" | "buttonToggle" | "hideMaxLength" | "loading" | "transparent"> & {
|
|
4949
|
+
declare type InputInternalProps<T extends string> = Pick<ComponentProps<typeof Input_2>, "ref"> & Pick<InputFieldProps<T>, "autoFocus" | "required" | "disabled" | "size" | "onChange" | "value" | "placeholder" | "clearable" | "maxLength" | "label" | "labelIcon" | "icon" | "hideLabel" | "name" | "error" | "status" | "hint" | "autocomplete" | "buttonToggle" | "hideMaxLength" | "loading" | "transparent" | "onBlur"> & {
|
|
4950
4950
|
type?: Exclude<HTMLInputTypeAttribute, "number">;
|
|
4951
4951
|
onPressEnter?: () => void;
|
|
4952
4952
|
};
|
|
@@ -8033,9 +8033,9 @@ declare module "gridstack" {
|
|
|
8033
8033
|
|
|
8034
8034
|
declare module "@tiptap/core" {
|
|
8035
8035
|
interface Commands<ReturnType> {
|
|
8036
|
-
|
|
8037
|
-
|
|
8038
|
-
|
|
8036
|
+
aiBlock: {
|
|
8037
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
8038
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
8039
8039
|
};
|
|
8040
8040
|
}
|
|
8041
8041
|
}
|
|
@@ -8043,8 +8043,9 @@ declare module "@tiptap/core" {
|
|
|
8043
8043
|
|
|
8044
8044
|
declare module "@tiptap/core" {
|
|
8045
8045
|
interface Commands<ReturnType> {
|
|
8046
|
-
|
|
8047
|
-
|
|
8046
|
+
enhanceHighlight: {
|
|
8047
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
8048
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
8048
8049
|
};
|
|
8049
8050
|
}
|
|
8050
8051
|
}
|
|
@@ -8052,9 +8053,8 @@ declare module "@tiptap/core" {
|
|
|
8052
8053
|
|
|
8053
8054
|
declare module "@tiptap/core" {
|
|
8054
8055
|
interface Commands<ReturnType> {
|
|
8055
|
-
|
|
8056
|
-
|
|
8057
|
-
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
8056
|
+
moodTracker: {
|
|
8057
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
8058
8058
|
};
|
|
8059
8059
|
}
|
|
8060
8060
|
}
|
|
@@ -8062,8 +8062,10 @@ declare module "@tiptap/core" {
|
|
|
8062
8062
|
|
|
8063
8063
|
declare module "@tiptap/core" {
|
|
8064
8064
|
interface Commands<ReturnType> {
|
|
8065
|
-
|
|
8066
|
-
|
|
8065
|
+
videoEmbed: {
|
|
8066
|
+
setVideoEmbed: (options: {
|
|
8067
|
+
src: string;
|
|
8068
|
+
}) => ReturnType;
|
|
8067
8069
|
};
|
|
8068
8070
|
}
|
|
8069
8071
|
}
|
|
@@ -8071,10 +8073,8 @@ declare module "@tiptap/core" {
|
|
|
8071
8073
|
|
|
8072
8074
|
declare module "@tiptap/core" {
|
|
8073
8075
|
interface Commands<ReturnType> {
|
|
8074
|
-
|
|
8075
|
-
|
|
8076
|
-
src: string;
|
|
8077
|
-
}) => ReturnType;
|
|
8076
|
+
transcript: {
|
|
8077
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
8078
8078
|
};
|
|
8079
8079
|
}
|
|
8080
8080
|
}
|
package/dist/experimental.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { a9 as oa, aa as ca, ab as da, ac as ua, ad as Ft, ae as Te, af as fa, ag as ht, ah as rt, ai as Be, O as b, W as Z, P as be, u as se, aj as ma, ak as ha, al as pa, am as ba, an as ga, a5 as oe, ao as xa, U as Ee, ap as va, aq as wa, ar as $, as as ya, at as Na, M as _e, au as ln, av as Ca, aw as ka, Q as B, ax as sn, a8 as E, ay as ge, az as Sa, aA as Ia, aB as Fa, aC as Aa, aD as La, aE as Ce, aF as on, aG as Ea, aH as xe, aI as $e, aJ as _a, aK as pt, n as cn, aL as Ne, aM as Oa, aN as dn, a6 as ne, aO as H, R as un, aP as fn, aQ as Ta, aR as mn, aS as me, a7 as ee, aT as Da, aU as za, aV as Pa, aW as Ra, X as pe, aX as Ge, aY as Ba, aZ as $a, a_ as Wa, a$ as Ma, b0 as He, b1 as hn, b2 as ja, b3 as Va, b4 as Ga, b5 as We, b6 as Ha, b7 as Ua, b8 as Ka, b9 as qa, ba as Ya, bb as Za, bc as Xa, bd as Ja, be as Qa, bf as er, bg as lt, bh as it, bi as pn, bj as tr, bk as nr, bl as bn, bm as ar, bn as rr, T as Ue, bo as bt, bp as gn, bq as lr, br as xn, bs as ir, bt as sr, bu as or, bv as Le, bw as cr, bx as De, by as At, bz as st, bA as dr, bB as ur, a as fr, c as mr, bC as hr, bD as vn, bE as pr, bF as br, F as gr, bG as wn, _ as xr, bH as yn, bI as vr, bJ as Lt, bK as wr, bL as yr, bM as Nr, bN as Cr, bO as Nn, bP as kr, bQ as Sr, bR as Ir, bS as Fr, bT as Ar, Y as Cn, bU as ue, bV as kn, bW as gt, bX as xt, bY as vt, bZ as Sn, b_ as wt, b$ as In, $ as Fn, c0 as Lr, c1 as Er, c2 as _r, c3 as Or, c4 as Tr, c5 as Dr, c6 as zr, c7 as Pr, c8 as Rr, c9 as Br, ca as $r, cb as Et, cc as _t, cd as Ot, ce as Wr, cf as Mr, cg as jr, ch as Vr, ci as An, cj as Gr, ck as Hr, cl as Ur } from "./F0AiChat-
|
|
2
|
-
import { cF as Ac, cE as Lc, co as Ec, cR as _c, cy as Oc, cz as Tc, cn as Dc, cB as zc, cp as Pc, d1 as Rc, c$ as Bc, cq as $c, cC as Wc, cD as Mc, cA as jc, cr as Vc, cN as Gc, cO as Hc, cS as Uc, cZ as Kc, c_ as qc, d0 as Yc, cx as Zc, cs as Xc, cH as Jc, cG as Qc, ct as ed, cu as td, cv as nd, cP as ad, d2 as rd, cm as ld, cQ as id, cU as sd, cV as od, cM as cd, cJ as dd, cL as ud, cI as fd, cw as md, cK as hd, cW as pd, cX as bd, cT as gd, cY as xd } from "./F0AiChat-
|
|
1
|
+
import { a9 as oa, aa as ca, ab as da, ac as ua, ad as Ft, ae as Te, af as fa, ag as ht, ah as rt, ai as Be, O as b, W as Z, P as be, u as se, aj as ma, ak as ha, al as pa, am as ba, an as ga, a5 as oe, ao as xa, U as Ee, ap as va, aq as wa, ar as $, as as ya, at as Na, M as _e, au as ln, av as Ca, aw as ka, Q as B, ax as sn, a8 as E, ay as ge, az as Sa, aA as Ia, aB as Fa, aC as Aa, aD as La, aE as Ce, aF as on, aG as Ea, aH as xe, aI as $e, aJ as _a, aK as pt, n as cn, aL as Ne, aM as Oa, aN as dn, a6 as ne, aO as H, R as un, aP as fn, aQ as Ta, aR as mn, aS as me, a7 as ee, aT as Da, aU as za, aV as Pa, aW as Ra, X as pe, aX as Ge, aY as Ba, aZ as $a, a_ as Wa, a$ as Ma, b0 as He, b1 as hn, b2 as ja, b3 as Va, b4 as Ga, b5 as We, b6 as Ha, b7 as Ua, b8 as Ka, b9 as qa, ba as Ya, bb as Za, bc as Xa, bd as Ja, be as Qa, bf as er, bg as lt, bh as it, bi as pn, bj as tr, bk as nr, bl as bn, bm as ar, bn as rr, T as Ue, bo as bt, bp as gn, bq as lr, br as xn, bs as ir, bt as sr, bu as or, bv as Le, bw as cr, bx as De, by as At, bz as st, bA as dr, bB as ur, a as fr, c as mr, bC as hr, bD as vn, bE as pr, bF as br, F as gr, bG as wn, _ as xr, bH as yn, bI as vr, bJ as Lt, bK as wr, bL as yr, bM as Nr, bN as Cr, bO as Nn, bP as kr, bQ as Sr, bR as Ir, bS as Fr, bT as Ar, Y as Cn, bU as ue, bV as kn, bW as gt, bX as xt, bY as vt, bZ as Sn, b_ as wt, b$ as In, $ as Fn, c0 as Lr, c1 as Er, c2 as _r, c3 as Or, c4 as Tr, c5 as Dr, c6 as zr, c7 as Pr, c8 as Rr, c9 as Br, ca as $r, cb as Et, cc as _t, cd as Ot, ce as Wr, cf as Mr, cg as jr, ch as Vr, ci as An, cj as Gr, ck as Hr, cl as Ur } from "./F0AiChat-CHqbjcwZ.js";
|
|
2
|
+
import { cF as Ac, cE as Lc, co as Ec, cR as _c, cy as Oc, cz as Tc, cn as Dc, cB as zc, cp as Pc, d1 as Rc, c$ as Bc, cq as $c, cC as Wc, cD as Mc, cA as jc, cr as Vc, cN as Gc, cO as Hc, cS as Uc, cZ as Kc, c_ as qc, d0 as Yc, cx as Zc, cs as Xc, cH as Jc, cG as Qc, ct as ed, cu as td, cv as nd, cP as ad, d2 as rd, cm as ld, cQ as id, cU as sd, cV as od, cM as cd, cJ as dd, cL as ud, cI as fd, cw as md, cK as hd, cW as pd, cX as bd, cT as gd, cY as xd } from "./F0AiChat-CHqbjcwZ.js";
|
|
3
3
|
import { jsx as e, jsxs as o, Fragment as U } from "react/jsx-runtime";
|
|
4
4
|
import re, { forwardRef as j, useRef as V, useTransition as Kr, useState as _, useLayoutEffect as Ln, useContext as Ke, createContext as yt, useCallback as Q, useMemo as K, useEffect as W, useId as qr, Fragment as Yr, isValidElement as Zr, cloneElement as En, Children as _n } from "react";
|
|
5
|
-
import { C as Xr, P as Jr, g as On, c as Qr, F as ot, f as el, a as tl, A as nl, B as al, L as rl, b as ll, V as il, d as sl, e as Tt, h as ol, i as cl } from "./index-
|
|
6
|
-
import { l as wd, m as yd, j as Nd, n as Cd, s as kd, D as Sd, k as Id, o as Fd, w as Ad, x as Ld, N as Ed, y as _d, p as Od, r as Td, R as Dd, u as zd, q as Pd, _ as Rd, v as Bd, t as $d } from "./index-
|
|
5
|
+
import { C as Xr, P as Jr, g as On, c as Qr, F as ot, f as el, a as tl, A as nl, B as al, L as rl, b as ll, V as il, d as sl, e as Tt, h as ol, i as cl } from "./index-5lbMW8t2.js";
|
|
6
|
+
import { l as wd, m as yd, j as Nd, n as Cd, s as kd, D as Sd, k as Id, o as Fd, w as Ad, x as Ld, N as Ed, y as _d, p as Od, r as Td, R as Dd, u as zd, q as Pd, _ as Rd, v as Bd, t as $d } from "./index-5lbMW8t2.js";
|
|
7
7
|
const dl = oa("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
|
@@ -9686,7 +9686,7 @@ declare type ItemDefinition = {
|
|
|
9686
9686
|
* Profile data for a job posting entity (ATS opening), resolved asynchronously
|
|
9687
9687
|
* and displayed in the entity reference hover card.
|
|
9688
9688
|
*/
|
|
9689
|
-
declare type JobPostingProfile = {
|
|
9689
|
+
export declare type JobPostingProfile = {
|
|
9690
9690
|
id: string | number;
|
|
9691
9691
|
title: string;
|
|
9692
9692
|
status?: string;
|
|
@@ -13547,9 +13547,9 @@ declare module "gridstack" {
|
|
|
13547
13547
|
|
|
13548
13548
|
declare module "@tiptap/core" {
|
|
13549
13549
|
interface Commands<ReturnType> {
|
|
13550
|
-
|
|
13551
|
-
|
|
13552
|
-
|
|
13550
|
+
aiBlock: {
|
|
13551
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
13552
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
13553
13553
|
};
|
|
13554
13554
|
}
|
|
13555
13555
|
}
|
|
@@ -13557,8 +13557,9 @@ declare module "@tiptap/core" {
|
|
|
13557
13557
|
|
|
13558
13558
|
declare module "@tiptap/core" {
|
|
13559
13559
|
interface Commands<ReturnType> {
|
|
13560
|
-
|
|
13561
|
-
|
|
13560
|
+
enhanceHighlight: {
|
|
13561
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
13562
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
13562
13563
|
};
|
|
13563
13564
|
}
|
|
13564
13565
|
}
|
|
@@ -13566,9 +13567,8 @@ declare module "@tiptap/core" {
|
|
|
13566
13567
|
|
|
13567
13568
|
declare module "@tiptap/core" {
|
|
13568
13569
|
interface Commands<ReturnType> {
|
|
13569
|
-
|
|
13570
|
-
|
|
13571
|
-
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
13570
|
+
moodTracker: {
|
|
13571
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
13572
13572
|
};
|
|
13573
13573
|
}
|
|
13574
13574
|
}
|
|
@@ -13576,8 +13576,10 @@ declare module "@tiptap/core" {
|
|
|
13576
13576
|
|
|
13577
13577
|
declare module "@tiptap/core" {
|
|
13578
13578
|
interface Commands<ReturnType> {
|
|
13579
|
-
|
|
13580
|
-
|
|
13579
|
+
videoEmbed: {
|
|
13580
|
+
setVideoEmbed: (options: {
|
|
13581
|
+
src: string;
|
|
13582
|
+
}) => ReturnType;
|
|
13581
13583
|
};
|
|
13582
13584
|
}
|
|
13583
13585
|
}
|
|
@@ -13585,10 +13587,8 @@ declare module "@tiptap/core" {
|
|
|
13585
13587
|
|
|
13586
13588
|
declare module "@tiptap/core" {
|
|
13587
13589
|
interface Commands<ReturnType> {
|
|
13588
|
-
|
|
13589
|
-
|
|
13590
|
-
src: string;
|
|
13591
|
-
}) => ReturnType;
|
|
13590
|
+
transcript: {
|
|
13591
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
13592
13592
|
};
|
|
13593
13593
|
}
|
|
13594
13594
|
}
|
package/dist/f0.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { fy as Or, a6 as se, bU as Tn, 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 Ut, U as Bo, ac as Po, M as Ir, fB as un, 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 mi, a5 as Fn, bf as gi, aX as Pr, cR as hn, fJ as Hr, fK as Uo, eg as Vo, fL as Zi, ef as Qo, fM as Ko, fN as wt, fO as Vt, fP as Xo, fQ as Wr, fR as Yo, fS as Jo, fT as An, fU as Zo, fV as ea, R as We, b0 as ta, d4 as si, d3 as qr, fW as na, fX as pi, cn as ia, fY as ra, fZ as Gr, f_ as Ln, f$ as sa, g0 as oa, aI as vi, Q as Ce, aJ as aa, aK as fn, ce as la, g1 as ca, aR as On, g2 as $r, g3 as da, g4 as ua, g5 as ha, g6 as fa, cB as ma, m as ga, dq as pa, aq as jr, f4 as ft, g7 as Ur, f2 as Vr, g8 as mn, g9 as Qr, ch as Kr, ga as Xr, as as bi, at as yi, gb as xi, aw as wi, aB as De, gc as Ci, aD as xt, gd as At, ge as Lt, av as Ot, gf as Mt, gg as va, gh as Zt, gi as Yr, gj as gn, bM as Pt, gk as _e, cs as ba, gl as Jr, gm as ya, gn as pn, cr as xa, cq as wa, go as Ca, gp as Sa, bO as Mn, aE as zn, gq as Zr, bJ as Si, bP as Ei, bc as Ea, gr as Ae, gs as Na, gt as _a, gu as es, gv as In, gw as Da, gx as Ra, cj as ts, gy as ka, gz as Ta, gA as Fa, gB as Aa, bp as ns, bv as La, fs as Oa, ft as Ma, fv as za, gC as is, bW as Ia, b_ as Ba, gD as er, c5 as Pa, gE as rs, gF as Ha, gG as Wa } from "./F0AiChat-
|
|
2
|
-
import { hk as Lf, gL as Of, co as Mf, l as zf, hy as If, bo as Bf, k as Pf, F as Hf, a as Wf, C as qf, hb as Gf, b as $f, gY as jf, bN as Uf, c7 as Vf, _ as Qf, c8 as Kf, gI as Xf, bh as Yf, Y as Jf, X as Zf, Z as em, b3 as tm, gS as nm, gW as im, gJ as rm, gX as sm, gZ as om, g$ as am, hD as lm, bx as cm, n as dm, hv as um, b5 as hm, $ as fm, hf as mm, bB as gm, hg as pm, hi as vm, hj as bm, d1 as ym, c$ as xm, d as wm, gM as Cm, hl as Sm, gN as Em, gO as Nm, gP as _m, cN as Dm, cO as Rm, gH as km, gQ as Tm, hC as Fm, gR as Am, bu as Lm, d0 as Om, hh as Mm, cP as zm, cm as Im, hE as Bm, gT as Pm, gU as Hm, gV as Wm, gK as qm, cQ as Gm, hx as $m, hq as jm, hd as Um, h4 as Vm, h3 as Qm, h2 as Km, ha as Xm, ht as Ym, g as Jm, hp as Zm, bs as eg, cM as tg, cJ as ng, cL as ig, h9 as rg, cI as sg, h5 as og, ho as ag, hn as lg, h6 as cg, cw as dg, cK as ug, h0 as hg, h1 as fg, h7 as mg, c as gg, hm as pg, hr as vg, h as bg, hz as yg, hA as xg, hB as wg, bq as Cg, hc as Sg, g_ as Eg, he as Ng, e as _g, hw as Dg, hs as Rg, j as kg, i as Tg, bV as Fg, T as Ag, h8 as Lg, hu as Og, f as Mg, hF as zg } from "./F0AiChat-
|
|
1
|
+
import { fy as Or, a6 as se, bU as Tn, 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 Ut, U as Bo, ac as Po, M as Ir, fB as un, 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 mi, a5 as Fn, bf as gi, aX as Pr, cR as hn, fJ as Hr, fK as Uo, eg as Vo, fL as Zi, ef as Qo, fM as Ko, fN as wt, fO as Vt, fP as Xo, fQ as Wr, fR as Yo, fS as Jo, fT as An, fU as Zo, fV as ea, R as We, b0 as ta, d4 as si, d3 as qr, fW as na, fX as pi, cn as ia, fY as ra, fZ as Gr, f_ as Ln, f$ as sa, g0 as oa, aI as vi, Q as Ce, aJ as aa, aK as fn, ce as la, g1 as ca, aR as On, g2 as $r, g3 as da, g4 as ua, g5 as ha, g6 as fa, cB as ma, m as ga, dq as pa, aq as jr, f4 as ft, g7 as Ur, f2 as Vr, g8 as mn, g9 as Qr, ch as Kr, ga as Xr, as as bi, at as yi, gb as xi, aw as wi, aB as De, gc as Ci, aD as xt, gd as At, ge as Lt, av as Ot, gf as Mt, gg as va, gh as Zt, gi as Yr, gj as gn, bM as Pt, gk as _e, cs as ba, gl as Jr, gm as ya, gn as pn, cr as xa, cq as wa, go as Ca, gp as Sa, bO as Mn, aE as zn, gq as Zr, bJ as Si, bP as Ei, bc as Ea, gr as Ae, gs as Na, gt as _a, gu as es, gv as In, gw as Da, gx as Ra, cj as ts, gy as ka, gz as Ta, gA as Fa, gB as Aa, bp as ns, bv as La, fs as Oa, ft as Ma, fv as za, gC as is, bW as Ia, b_ as Ba, gD as er, c5 as Pa, gE as rs, gF as Ha, gG as Wa } from "./F0AiChat-CHqbjcwZ.js";
|
|
2
|
+
import { hk as Lf, gL as Of, co as Mf, l as zf, hy as If, bo as Bf, k as Pf, F as Hf, a as Wf, C as qf, hb as Gf, b as $f, gY as jf, bN as Uf, c7 as Vf, _ as Qf, c8 as Kf, gI as Xf, bh as Yf, Y as Jf, X as Zf, Z as em, b3 as tm, gS as nm, gW as im, gJ as rm, gX as sm, gZ as om, g$ as am, hD as lm, bx as cm, n as dm, hv as um, b5 as hm, $ as fm, hf as mm, bB as gm, hg as pm, hi as vm, hj as bm, d1 as ym, c$ as xm, d as wm, gM as Cm, hl as Sm, gN as Em, gO as Nm, gP as _m, cN as Dm, cO as Rm, gH as km, gQ as Tm, hC as Fm, gR as Am, bu as Lm, d0 as Om, hh as Mm, cP as zm, cm as Im, hE as Bm, gT as Pm, gU as Hm, gV as Wm, gK as qm, cQ as Gm, hx as $m, hq as jm, hd as Um, h4 as Vm, h3 as Qm, h2 as Km, ha as Xm, ht as Ym, g as Jm, hp as Zm, bs as eg, cM as tg, cJ as ng, cL as ig, h9 as rg, cI as sg, h5 as og, ho as ag, hn as lg, h6 as cg, cw as dg, cK as ug, h0 as hg, h1 as fg, h7 as mg, c as gg, hm as pg, hr as vg, h as bg, hz as yg, hA as xg, hB as wg, bq as Cg, hc as Sg, g_ as Eg, he as Ng, e as _g, hw as Dg, hs as Rg, j as kg, i as Tg, bV as Fg, T as Ag, h8 as Lg, hu as Og, f as Mg, hF as zg } from "./F0AiChat-CHqbjcwZ.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 qa, Children as vn, createContext as Qe, useContext as Re, useState as j, useMemo as B, useEffect as V, useCallback as I, useLayoutEffect as oi, createElement as en, isValidElement as ss, Fragment as Ga, memo as os, useReducer as $a, cloneElement as ja, useId as as } from "react";
|
|
5
|
-
import { g as Ua, h as Va } from "./types-
|
|
6
|
-
import { A as Bg, e as Pg, F as Hg, c as Wg, d as qg, b as Gg, a as $g, f as jg, o as Ug, u as Vg } from "./types-
|
|
5
|
+
import { g as Ua, h as Va } from "./types-DD3xEcvU.js";
|
|
6
|
+
import { A as Bg, e as Pg, F as Hg, c as Wg, d as qg, b as Gg, a as $g, f as jg, o as Ug, u as Vg } from "./types-DD3xEcvU.js";
|
|
7
7
|
import { createPortal as ls, unstable_batchedUpdates as tn } from "react-dom";
|
|
8
|
-
import { C as Qa, M as Ni, D as Ka, z as Xa, u as cs, j as Ya } from "./index-
|
|
9
|
-
import { l as Kg, m as Xg, n as Yg, s as Jg, F as Zg, o as ep, w as tp, x as np, N as ip, y as rp, p as sp, P as op, r as ap, R as lp, q as cp, _ as dp, v as up, t as hp } from "./index-
|
|
8
|
+
import { C as Qa, M as Ni, D as Ka, z as Xa, u as cs, j as Ya } from "./index-5lbMW8t2.js";
|
|
9
|
+
import { l as Kg, m as Xg, n as Yg, s as Jg, F as Zg, o as ep, w as tp, x as np, N as ip, y as rp, p as sp, P as op, r as ap, R as lp, q as cp, _ as dp, v as up, t as hp } from "./index-5lbMW8t2.js";
|
|
10
10
|
import { defaultTranslations as mp } from "./i18n-provider-defaults.js";
|
|
11
11
|
import './f0.css';const Ja = {
|
|
12
12
|
xs: 1,
|
|
@@ -807,9 +807,9 @@ declare module "gridstack" {
|
|
|
807
807
|
|
|
808
808
|
declare module "@tiptap/core" {
|
|
809
809
|
interface Commands<ReturnType> {
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
810
|
+
aiBlock: {
|
|
811
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
812
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
813
813
|
};
|
|
814
814
|
}
|
|
815
815
|
}
|
|
@@ -817,8 +817,9 @@ declare module "@tiptap/core" {
|
|
|
817
817
|
|
|
818
818
|
declare module "@tiptap/core" {
|
|
819
819
|
interface Commands<ReturnType> {
|
|
820
|
-
|
|
821
|
-
|
|
820
|
+
enhanceHighlight: {
|
|
821
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
822
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
822
823
|
};
|
|
823
824
|
}
|
|
824
825
|
}
|
|
@@ -826,9 +827,8 @@ declare module "@tiptap/core" {
|
|
|
826
827
|
|
|
827
828
|
declare module "@tiptap/core" {
|
|
828
829
|
interface Commands<ReturnType> {
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
830
|
+
moodTracker: {
|
|
831
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
832
832
|
};
|
|
833
833
|
}
|
|
834
834
|
}
|
|
@@ -836,8 +836,10 @@ declare module "@tiptap/core" {
|
|
|
836
836
|
|
|
837
837
|
declare module "@tiptap/core" {
|
|
838
838
|
interface Commands<ReturnType> {
|
|
839
|
-
|
|
840
|
-
|
|
839
|
+
videoEmbed: {
|
|
840
|
+
setVideoEmbed: (options: {
|
|
841
|
+
src: string;
|
|
842
|
+
}) => ReturnType;
|
|
841
843
|
};
|
|
842
844
|
}
|
|
843
845
|
}
|
|
@@ -845,10 +847,8 @@ declare module "@tiptap/core" {
|
|
|
845
847
|
|
|
846
848
|
declare module "@tiptap/core" {
|
|
847
849
|
interface Commands<ReturnType> {
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
src: string;
|
|
851
|
-
}) => ReturnType;
|
|
850
|
+
transcript: {
|
|
851
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
852
852
|
};
|
|
853
853
|
}
|
|
854
854
|
}
|
|
@@ -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-CHqbjcwZ.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-CHqbjcwZ.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]);
|