@factorialco/f0-react 1.462.0 → 1.463.1
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-Dq3R0-zu.js → F0AiChat-CpZHHGPt.js} +37328 -37130
- package/dist/ai.d.ts +16 -16
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +15 -15
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +200 -16
- package/dist/f0.js +6 -6
- package/dist/i18n-provider-defaults.d.ts +15 -15
- package/dist/{index-CduW57iw.js → index-BWx7rlJn.js} +1 -1
- package/dist/{types-Dbr9QIRq.js → types-CCNMPEHA.js} +1 -1
- package/package.json +1 -1
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;
|
|
@@ -3260,8 +3260,13 @@ declare module "gridstack" {
|
|
|
3260
3260
|
}
|
|
3261
3261
|
|
|
3262
3262
|
|
|
3263
|
-
declare
|
|
3264
|
-
|
|
3263
|
+
declare module "@tiptap/core" {
|
|
3264
|
+
interface Commands<ReturnType> {
|
|
3265
|
+
enhanceHighlight: {
|
|
3266
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
3267
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
3268
|
+
};
|
|
3269
|
+
}
|
|
3265
3270
|
}
|
|
3266
3271
|
|
|
3267
3272
|
|
|
@@ -3277,9 +3282,8 @@ declare module "@tiptap/core" {
|
|
|
3277
3282
|
|
|
3278
3283
|
declare module "@tiptap/core" {
|
|
3279
3284
|
interface Commands<ReturnType> {
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
3285
|
+
moodTracker: {
|
|
3286
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
3283
3287
|
};
|
|
3284
3288
|
}
|
|
3285
3289
|
}
|
|
@@ -3287,8 +3291,10 @@ declare module "@tiptap/core" {
|
|
|
3287
3291
|
|
|
3288
3292
|
declare module "@tiptap/core" {
|
|
3289
3293
|
interface Commands<ReturnType> {
|
|
3290
|
-
|
|
3291
|
-
|
|
3294
|
+
videoEmbed: {
|
|
3295
|
+
setVideoEmbed: (options: {
|
|
3296
|
+
src: string;
|
|
3297
|
+
}) => ReturnType;
|
|
3292
3298
|
};
|
|
3293
3299
|
}
|
|
3294
3300
|
}
|
|
@@ -3303,12 +3309,6 @@ declare module "@tiptap/core" {
|
|
|
3303
3309
|
}
|
|
3304
3310
|
|
|
3305
3311
|
|
|
3306
|
-
declare
|
|
3307
|
-
|
|
3308
|
-
videoEmbed: {
|
|
3309
|
-
setVideoEmbed: (options: {
|
|
3310
|
-
src: string;
|
|
3311
|
-
}) => ReturnType;
|
|
3312
|
-
};
|
|
3313
|
-
}
|
|
3312
|
+
declare namespace Calendar {
|
|
3313
|
+
var displayName: string;
|
|
3314
3314
|
}
|
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-CpZHHGPt.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-CCNMPEHA.js";
|
|
4
4
|
export {
|
|
5
5
|
v as AiChatTranslationsProvider,
|
|
6
6
|
t as ChatSpinner,
|
package/dist/experimental.d.ts
CHANGED
|
@@ -8031,8 +8031,13 @@ declare module "gridstack" {
|
|
|
8031
8031
|
}
|
|
8032
8032
|
|
|
8033
8033
|
|
|
8034
|
-
declare
|
|
8035
|
-
|
|
8034
|
+
declare module "@tiptap/core" {
|
|
8035
|
+
interface Commands<ReturnType> {
|
|
8036
|
+
enhanceHighlight: {
|
|
8037
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
8038
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
8039
|
+
};
|
|
8040
|
+
}
|
|
8036
8041
|
}
|
|
8037
8042
|
|
|
8038
8043
|
|
|
@@ -8048,9 +8053,8 @@ declare module "@tiptap/core" {
|
|
|
8048
8053
|
|
|
8049
8054
|
declare module "@tiptap/core" {
|
|
8050
8055
|
interface Commands<ReturnType> {
|
|
8051
|
-
|
|
8052
|
-
|
|
8053
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
8056
|
+
moodTracker: {
|
|
8057
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
8054
8058
|
};
|
|
8055
8059
|
}
|
|
8056
8060
|
}
|
|
@@ -8058,8 +8062,10 @@ declare module "@tiptap/core" {
|
|
|
8058
8062
|
|
|
8059
8063
|
declare module "@tiptap/core" {
|
|
8060
8064
|
interface Commands<ReturnType> {
|
|
8061
|
-
|
|
8062
|
-
|
|
8065
|
+
videoEmbed: {
|
|
8066
|
+
setVideoEmbed: (options: {
|
|
8067
|
+
src: string;
|
|
8068
|
+
}) => ReturnType;
|
|
8063
8069
|
};
|
|
8064
8070
|
}
|
|
8065
8071
|
}
|
|
@@ -8074,12 +8080,6 @@ declare module "@tiptap/core" {
|
|
|
8074
8080
|
}
|
|
8075
8081
|
|
|
8076
8082
|
|
|
8077
|
-
declare
|
|
8078
|
-
|
|
8079
|
-
videoEmbed: {
|
|
8080
|
-
setVideoEmbed: (options: {
|
|
8081
|
-
src: string;
|
|
8082
|
-
}) => ReturnType;
|
|
8083
|
-
};
|
|
8084
|
-
}
|
|
8083
|
+
declare namespace Calendar {
|
|
8084
|
+
var displayName: string;
|
|
8085
8085
|
}
|
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-CpZHHGPt.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-CpZHHGPt.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-BWx7rlJn.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-BWx7rlJn.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
|
@@ -7035,6 +7035,190 @@ export declare function f0FormField<T extends ZodTypeAny, TConfig = undefined>(s
|
|
|
7035
7035
|
*/
|
|
7036
7036
|
export declare function f0FormField<T extends ZodTypeAny, V extends string | number = string | number, R extends Record<string, unknown> = Record<string, unknown>>(schema: T, config: F0FieldConfig<V, R>): T & F0ZodType<T>;
|
|
7037
7037
|
|
|
7038
|
+
/**
|
|
7039
|
+
* Shortcut helpers for common field types.
|
|
7040
|
+
* These merge with the `f0FormField` function via TypeScript declaration merging,
|
|
7041
|
+
* eliminating the need to manually create Zod schemas for the most common cases.
|
|
7042
|
+
*
|
|
7043
|
+
* @example
|
|
7044
|
+
* // Instead of:
|
|
7045
|
+
* name: f0FormField(z.string(), { label: "Name" })
|
|
7046
|
+
* // Write:
|
|
7047
|
+
* name: f0FormField.text({ label: "Name" })
|
|
7048
|
+
*
|
|
7049
|
+
* // Optional fields:
|
|
7050
|
+
* nickname: f0FormField.text({ label: "Nickname", optional: true })
|
|
7051
|
+
*/
|
|
7052
|
+
export declare namespace f0FormField {
|
|
7053
|
+
/* Excluded from this release type: TextConfig */
|
|
7054
|
+
export function text(config: TextConfig & {
|
|
7055
|
+
optional: true;
|
|
7056
|
+
}): z.ZodOptional<z.ZodString> & F0ZodType<z.ZodOptional<z.ZodString>>;
|
|
7057
|
+
export function text(config: TextConfig & {
|
|
7058
|
+
optional?: false | undefined;
|
|
7059
|
+
}): z.ZodString & F0ZodType<z.ZodString>;
|
|
7060
|
+
/* Excluded from this release type: EmailConfig */
|
|
7061
|
+
export function email(config: EmailConfig & {
|
|
7062
|
+
optional: true;
|
|
7063
|
+
}): z.ZodOptional<z.ZodString> & F0ZodType<z.ZodOptional<z.ZodString>>;
|
|
7064
|
+
export function email(config: EmailConfig & {
|
|
7065
|
+
optional?: false | undefined;
|
|
7066
|
+
}): z.ZodString & F0ZodType<z.ZodString>;
|
|
7067
|
+
/* Excluded from this release type: TextareaConfig */
|
|
7068
|
+
export function textarea(config: TextareaConfig & {
|
|
7069
|
+
optional: true;
|
|
7070
|
+
}): z.ZodOptional<z.ZodString> & F0ZodType<z.ZodOptional<z.ZodString>>;
|
|
7071
|
+
export function textarea(config: TextareaConfig & {
|
|
7072
|
+
optional?: false | undefined;
|
|
7073
|
+
}): z.ZodString & F0ZodType<z.ZodString>;
|
|
7074
|
+
/* Excluded from this release type: NumberConfig */
|
|
7075
|
+
export function number(config: NumberConfig & {
|
|
7076
|
+
optional: true;
|
|
7077
|
+
}): z.ZodOptional<z.ZodNumber> & F0ZodType<z.ZodOptional<z.ZodNumber>>;
|
|
7078
|
+
export function number(config: NumberConfig & {
|
|
7079
|
+
optional?: false | undefined;
|
|
7080
|
+
}): z.ZodNumber & F0ZodType<z.ZodNumber>;
|
|
7081
|
+
/* Excluded from this release type: SwitchConfig */
|
|
7082
|
+
export function boolean(config: SwitchConfig & {
|
|
7083
|
+
optional: true;
|
|
7084
|
+
}): z.ZodBoolean & F0ZodType<z.ZodBoolean>;
|
|
7085
|
+
export function boolean(config: SwitchConfig & {
|
|
7086
|
+
optional?: false | undefined;
|
|
7087
|
+
}): z.ZodLiteral<true> & F0ZodType<z.ZodLiteral<true>>;
|
|
7088
|
+
/* Excluded from this release type: CheckboxConfig */
|
|
7089
|
+
export function checkbox(config: CheckboxConfig & {
|
|
7090
|
+
optional: true;
|
|
7091
|
+
}): z.ZodBoolean & F0ZodType<z.ZodBoolean>;
|
|
7092
|
+
export function checkbox(config: CheckboxConfig & {
|
|
7093
|
+
optional?: false | undefined;
|
|
7094
|
+
}): z.ZodLiteral<true> & F0ZodType<z.ZodLiteral<true>>;
|
|
7095
|
+
/* Excluded from this release type: DateConfig */
|
|
7096
|
+
export function date(config: DateConfig & {
|
|
7097
|
+
optional: true;
|
|
7098
|
+
}): z.ZodOptional<z.ZodDate> & F0ZodType<z.ZodOptional<z.ZodDate>>;
|
|
7099
|
+
export function date(config: DateConfig & {
|
|
7100
|
+
optional?: false | undefined;
|
|
7101
|
+
}): z.ZodDate & F0ZodType<z.ZodDate>;
|
|
7102
|
+
/* Excluded from this release type: UrlConfig */
|
|
7103
|
+
export function url(config: UrlConfig & {
|
|
7104
|
+
optional: true;
|
|
7105
|
+
}): z.ZodOptional<z.ZodString> & F0ZodType<z.ZodOptional<z.ZodString>>;
|
|
7106
|
+
export function url(config: UrlConfig & {
|
|
7107
|
+
optional?: false | undefined;
|
|
7108
|
+
}): z.ZodString & F0ZodType<z.ZodString>;
|
|
7109
|
+
/* Excluded from this release type: MoneyConfig */
|
|
7110
|
+
export function money(config: MoneyConfig & {
|
|
7111
|
+
optional: true;
|
|
7112
|
+
}): z.ZodOptional<z.ZodNumber> & F0ZodType<z.ZodOptional<z.ZodNumber>>;
|
|
7113
|
+
export function money(config: MoneyConfig & {
|
|
7114
|
+
optional?: false | undefined;
|
|
7115
|
+
}): z.ZodNumber & F0ZodType<z.ZodNumber>;
|
|
7116
|
+
/* Excluded from this release type: PercentageConfig */
|
|
7117
|
+
export function percentage(config: PercentageConfig & {
|
|
7118
|
+
optional: true;
|
|
7119
|
+
}): z.ZodOptional<z.ZodNumber> & F0ZodType<z.ZodOptional<z.ZodNumber>>;
|
|
7120
|
+
export function percentage(config: PercentageConfig & {
|
|
7121
|
+
optional?: false | undefined;
|
|
7122
|
+
}): z.ZodNumber & F0ZodType<z.ZodNumber>;
|
|
7123
|
+
/* Excluded from this release type: CardSelectConfig */
|
|
7124
|
+
export function cardSelect<const V extends string>(config: CardSelectConfig<V> & {
|
|
7125
|
+
optional: true;
|
|
7126
|
+
}): z.ZodOptional<z.ZodEnum<[V, ...V[]]>> & F0ZodType<z.ZodOptional<z.ZodEnum<[V, ...V[]]>>>;
|
|
7127
|
+
export function cardSelect<const V extends string>(config: CardSelectConfig<V> & {
|
|
7128
|
+
optional?: false | undefined;
|
|
7129
|
+
}): z.ZodEnum<[V, ...V[]]> & F0ZodType<z.ZodEnum<[V, ...V[]]>>;
|
|
7130
|
+
/* Excluded from this release type: FileConfig */
|
|
7131
|
+
export function file(config: FileConfig & {
|
|
7132
|
+
optional: true;
|
|
7133
|
+
}): z.ZodOptional<z.ZodString> & F0ZodType<z.ZodOptional<z.ZodString>>;
|
|
7134
|
+
export function file(config: FileConfig & {
|
|
7135
|
+
optional?: false | undefined;
|
|
7136
|
+
}): z.ZodString & F0ZodType<z.ZodString>;
|
|
7137
|
+
/* Excluded from this release type: MultiFileConfig */
|
|
7138
|
+
export function multiFile(config: MultiFileConfig & {
|
|
7139
|
+
optional: true;
|
|
7140
|
+
}): z.ZodOptional<z.ZodArray<z.ZodString>> & F0ZodType<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
7141
|
+
export function multiFile(config: MultiFileConfig & {
|
|
7142
|
+
optional?: false | undefined;
|
|
7143
|
+
}): z.ZodArray<z.ZodString> & F0ZodType<z.ZodArray<z.ZodString>>;
|
|
7144
|
+
/* Excluded from this release type: TimeConfig */
|
|
7145
|
+
export function time(config: TimeConfig & {
|
|
7146
|
+
optional: true;
|
|
7147
|
+
}): z.ZodOptional<z.ZodDate> & F0ZodType<z.ZodOptional<z.ZodDate>>;
|
|
7148
|
+
export function time(config: TimeConfig & {
|
|
7149
|
+
optional?: false | undefined;
|
|
7150
|
+
}): z.ZodDate & F0ZodType<z.ZodDate>;
|
|
7151
|
+
/* Excluded from this release type: DateTimeConfig */
|
|
7152
|
+
export function datetime(config: DateTimeConfig & {
|
|
7153
|
+
optional: true;
|
|
7154
|
+
}): z.ZodOptional<z.ZodDate> & F0ZodType<z.ZodOptional<z.ZodDate>>;
|
|
7155
|
+
export function datetime(config: DateTimeConfig & {
|
|
7156
|
+
optional?: false | undefined;
|
|
7157
|
+
}): z.ZodDate & F0ZodType<z.ZodDate>;
|
|
7158
|
+
/* Excluded from this release type: DurationConfig */
|
|
7159
|
+
export function duration(config: DurationConfig & {
|
|
7160
|
+
optional: true;
|
|
7161
|
+
}): z.ZodOptional<z.ZodNumber> & F0ZodType<z.ZodOptional<z.ZodNumber>>;
|
|
7162
|
+
export function duration(config: DurationConfig & {
|
|
7163
|
+
optional?: false | undefined;
|
|
7164
|
+
}): z.ZodNumber & F0ZodType<z.ZodNumber>;
|
|
7165
|
+
/* Excluded from this release type: DateRangeObjectSchema */
|
|
7166
|
+
/* Excluded from this release type: DateRangeConfig */
|
|
7167
|
+
export function dateRange(config: DateRangeConfig & {
|
|
7168
|
+
optional: true;
|
|
7169
|
+
}): z.ZodOptional<DateRangeObjectSchema> & F0ZodType<z.ZodOptional<DateRangeObjectSchema>>;
|
|
7170
|
+
export function dateRange(config: DateRangeConfig & {
|
|
7171
|
+
optional?: false | undefined;
|
|
7172
|
+
}): DateRangeObjectSchema & F0ZodType<DateRangeObjectSchema>;
|
|
7173
|
+
/* Excluded from this release type: RichTextObjectSchema */
|
|
7174
|
+
/* Excluded from this release type: RichTextConfig */
|
|
7175
|
+
export function richText(config: RichTextConfig & {
|
|
7176
|
+
optional: true;
|
|
7177
|
+
}): z.ZodOptional<RichTextObjectSchema> & F0ZodType<z.ZodOptional<RichTextObjectSchema>>;
|
|
7178
|
+
export function richText(config: RichTextConfig & {
|
|
7179
|
+
optional?: false | undefined;
|
|
7180
|
+
}): RichTextObjectSchema & F0ZodType<RichTextObjectSchema>;
|
|
7181
|
+
/* Excluded from this release type: SelectConfig */
|
|
7182
|
+
export function select<const V extends string, R extends Record<string, unknown> = Record<string, unknown>>(config: SelectConfig<R> & {
|
|
7183
|
+
options: Array<{
|
|
7184
|
+
value: V;
|
|
7185
|
+
} & Record<string, unknown>>;
|
|
7186
|
+
optional: true;
|
|
7187
|
+
}): z.ZodOptional<z.ZodEnum<[V, ...V[]]>> & F0ZodType<z.ZodOptional<z.ZodEnum<[V, ...V[]]>>>;
|
|
7188
|
+
export function select<const V extends string, R extends Record<string, unknown> = Record<string, unknown>>(config: SelectConfig<R> & {
|
|
7189
|
+
options: Array<{
|
|
7190
|
+
value: V;
|
|
7191
|
+
} & Record<string, unknown>>;
|
|
7192
|
+
optional?: false | undefined;
|
|
7193
|
+
}): z.ZodEnum<[V, ...V[]]> & F0ZodType<z.ZodEnum<[V, ...V[]]>>;
|
|
7194
|
+
export function select<R extends Record<string, unknown> = Record<string, unknown>>(config: SelectConfig<R> & {
|
|
7195
|
+
optional: true;
|
|
7196
|
+
}): z.ZodOptional<z.ZodString> & F0ZodType<z.ZodOptional<z.ZodString>>;
|
|
7197
|
+
export function select<R extends Record<string, unknown> = Record<string, unknown>>(config: SelectConfig<R> & {
|
|
7198
|
+
optional?: false | undefined;
|
|
7199
|
+
}): z.ZodString & F0ZodType<z.ZodString>;
|
|
7200
|
+
/* Excluded from this release type: MultiSelectConfig */
|
|
7201
|
+
export function multiSelect<const V extends string>(config: Omit<MultiSelectConfig<string>, "options"> & {
|
|
7202
|
+
options: Array<{
|
|
7203
|
+
value: V;
|
|
7204
|
+
} & Record<string, unknown>>;
|
|
7205
|
+
optional: true;
|
|
7206
|
+
}): z.ZodOptional<z.ZodArray<z.ZodEnum<[V, ...V[]]>>> & F0ZodType<z.ZodOptional<z.ZodArray<z.ZodEnum<[V, ...V[]]>>>>;
|
|
7207
|
+
export function multiSelect<const V extends string>(config: Omit<MultiSelectConfig<string>, "options"> & {
|
|
7208
|
+
options: Array<{
|
|
7209
|
+
value: V;
|
|
7210
|
+
} & Record<string, unknown>>;
|
|
7211
|
+
optional?: false | undefined;
|
|
7212
|
+
}): z.ZodArray<z.ZodEnum<[V, ...V[]]>> & F0ZodType<z.ZodArray<z.ZodEnum<[V, ...V[]]>>>;
|
|
7213
|
+
export function multiSelect<V extends string | number = string, R extends Record<string, unknown> = Record<string, unknown>>(config: MultiSelectConfig<V, R> & {
|
|
7214
|
+
optional: true;
|
|
7215
|
+
}): z.ZodOptional<z.ZodArray<z.ZodString>> & F0ZodType<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
7216
|
+
export function multiSelect<V extends string | number = string, R extends Record<string, unknown> = Record<string, unknown>>(config: MultiSelectConfig<V, R> & {
|
|
7217
|
+
optional?: false | undefined;
|
|
7218
|
+
}): z.ZodArray<z.ZodString> & F0ZodType<z.ZodArray<z.ZodString>>;
|
|
7219
|
+
{};
|
|
7220
|
+
}
|
|
7221
|
+
|
|
7038
7222
|
declare interface F0FormFieldCommonProps {
|
|
7039
7223
|
/** Field definition (type, label, placeholder, etc.) */
|
|
7040
7224
|
/** Current field value */
|
|
@@ -9502,7 +9686,7 @@ declare type ItemDefinition = {
|
|
|
9502
9686
|
* Profile data for a job posting entity (ATS opening), resolved asynchronously
|
|
9503
9687
|
* and displayed in the entity reference hover card.
|
|
9504
9688
|
*/
|
|
9505
|
-
declare type JobPostingProfile = {
|
|
9689
|
+
export declare type JobPostingProfile = {
|
|
9506
9690
|
id: string | number;
|
|
9507
9691
|
title: string;
|
|
9508
9692
|
status?: string;
|
|
@@ -13361,8 +13545,13 @@ declare module "gridstack" {
|
|
|
13361
13545
|
}
|
|
13362
13546
|
|
|
13363
13547
|
|
|
13364
|
-
declare
|
|
13365
|
-
|
|
13548
|
+
declare module "@tiptap/core" {
|
|
13549
|
+
interface Commands<ReturnType> {
|
|
13550
|
+
enhanceHighlight: {
|
|
13551
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
13552
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
13553
|
+
};
|
|
13554
|
+
}
|
|
13366
13555
|
}
|
|
13367
13556
|
|
|
13368
13557
|
|
|
@@ -13378,9 +13567,8 @@ declare module "@tiptap/core" {
|
|
|
13378
13567
|
|
|
13379
13568
|
declare module "@tiptap/core" {
|
|
13380
13569
|
interface Commands<ReturnType> {
|
|
13381
|
-
|
|
13382
|
-
|
|
13383
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
13570
|
+
moodTracker: {
|
|
13571
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
13384
13572
|
};
|
|
13385
13573
|
}
|
|
13386
13574
|
}
|
|
@@ -13388,8 +13576,10 @@ declare module "@tiptap/core" {
|
|
|
13388
13576
|
|
|
13389
13577
|
declare module "@tiptap/core" {
|
|
13390
13578
|
interface Commands<ReturnType> {
|
|
13391
|
-
|
|
13392
|
-
|
|
13579
|
+
videoEmbed: {
|
|
13580
|
+
setVideoEmbed: (options: {
|
|
13581
|
+
src: string;
|
|
13582
|
+
}) => ReturnType;
|
|
13393
13583
|
};
|
|
13394
13584
|
}
|
|
13395
13585
|
}
|
|
@@ -13404,12 +13594,6 @@ declare module "@tiptap/core" {
|
|
|
13404
13594
|
}
|
|
13405
13595
|
|
|
13406
13596
|
|
|
13407
|
-
declare
|
|
13408
|
-
|
|
13409
|
-
videoEmbed: {
|
|
13410
|
-
setVideoEmbed: (options: {
|
|
13411
|
-
src: string;
|
|
13412
|
-
}) => ReturnType;
|
|
13413
|
-
};
|
|
13414
|
-
}
|
|
13597
|
+
declare namespace Calendar {
|
|
13598
|
+
var displayName: string;
|
|
13415
13599
|
}
|
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-CpZHHGPt.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-CpZHHGPt.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-CCNMPEHA.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-CCNMPEHA.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-BWx7rlJn.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-BWx7rlJn.js";
|
|
10
10
|
import { defaultTranslations as mp } from "./i18n-provider-defaults.js";
|
|
11
11
|
import './f0.css';const Ja = {
|
|
12
12
|
xs: 1,
|
|
@@ -805,8 +805,13 @@ declare module "gridstack" {
|
|
|
805
805
|
}
|
|
806
806
|
|
|
807
807
|
|
|
808
|
-
declare
|
|
809
|
-
|
|
808
|
+
declare module "@tiptap/core" {
|
|
809
|
+
interface Commands<ReturnType> {
|
|
810
|
+
enhanceHighlight: {
|
|
811
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
812
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
813
|
+
};
|
|
814
|
+
}
|
|
810
815
|
}
|
|
811
816
|
|
|
812
817
|
|
|
@@ -822,9 +827,8 @@ declare module "@tiptap/core" {
|
|
|
822
827
|
|
|
823
828
|
declare module "@tiptap/core" {
|
|
824
829
|
interface Commands<ReturnType> {
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
830
|
+
moodTracker: {
|
|
831
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
828
832
|
};
|
|
829
833
|
}
|
|
830
834
|
}
|
|
@@ -832,8 +836,10 @@ declare module "@tiptap/core" {
|
|
|
832
836
|
|
|
833
837
|
declare module "@tiptap/core" {
|
|
834
838
|
interface Commands<ReturnType> {
|
|
835
|
-
|
|
836
|
-
|
|
839
|
+
videoEmbed: {
|
|
840
|
+
setVideoEmbed: (options: {
|
|
841
|
+
src: string;
|
|
842
|
+
}) => ReturnType;
|
|
837
843
|
};
|
|
838
844
|
}
|
|
839
845
|
}
|
|
@@ -848,12 +854,6 @@ declare module "@tiptap/core" {
|
|
|
848
854
|
}
|
|
849
855
|
|
|
850
856
|
|
|
851
|
-
declare
|
|
852
|
-
|
|
853
|
-
videoEmbed: {
|
|
854
|
-
setVideoEmbed: (options: {
|
|
855
|
-
src: string;
|
|
856
|
-
}) => ReturnType;
|
|
857
|
-
};
|
|
858
|
-
}
|
|
857
|
+
declare namespace Calendar {
|
|
858
|
+
var displayName: string;
|
|
859
859
|
}
|
|
@@ -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-CpZHHGPt.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-CpZHHGPt.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]);
|