@factorialco/f0-react 1.461.1 → 1.463.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/ai.d.ts CHANGED
@@ -510,6 +510,12 @@ export declare const aiTranslations: {
510
510
  readonly ask: "Ask One";
511
511
  readonly view: "View";
512
512
  readonly tools: "Tools";
513
+ readonly entityRef: {
514
+ readonly candidate: {
515
+ readonly source: "Source";
516
+ readonly applied: "Applied on";
517
+ };
518
+ };
513
519
  readonly credits: {
514
520
  readonly title: "Credits";
515
521
  readonly creditsLeft: "{{total}} left";
@@ -780,12 +786,13 @@ declare type BaseTag<T extends {
780
786
  * Profile data for a candidate entity (ATS applicant), resolved asynchronously
781
787
  * and displayed in the entity reference hover card.
782
788
  */
783
- declare type CandidateProfile = {
789
+ export declare type CandidateProfile = {
784
790
  id: string | number;
785
791
  firstName: string;
786
792
  lastName: string;
787
793
  avatarUrl?: string;
788
794
  source?: string;
795
+ appliedAt?: string;
789
796
  };
790
797
 
791
798
  /**
@@ -1695,6 +1702,12 @@ export declare const defaultTranslations: {
1695
1702
  readonly ask: "Ask One";
1696
1703
  readonly view: "View";
1697
1704
  readonly tools: "Tools";
1705
+ readonly entityRef: {
1706
+ readonly candidate: {
1707
+ readonly source: "Source";
1708
+ readonly applied: "Applied on";
1709
+ };
1710
+ };
1698
1711
  readonly credits: {
1699
1712
  readonly title: "Credits";
1700
1713
  readonly creditsLeft: "{{total}} left";
@@ -3249,9 +3262,9 @@ declare module "gridstack" {
3249
3262
 
3250
3263
  declare module "@tiptap/core" {
3251
3264
  interface Commands<ReturnType> {
3252
- aiBlock: {
3253
- insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
3254
- executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
3265
+ enhanceHighlight: {
3266
+ setEnhanceHighlight: (from: number, to: number) => ReturnType;
3267
+ clearEnhanceHighlight: () => ReturnType;
3255
3268
  };
3256
3269
  }
3257
3270
  }
@@ -3259,9 +3272,8 @@ declare module "@tiptap/core" {
3259
3272
 
3260
3273
  declare module "@tiptap/core" {
3261
3274
  interface Commands<ReturnType> {
3262
- enhanceHighlight: {
3263
- setEnhanceHighlight: (from: number, to: number) => ReturnType;
3264
- clearEnhanceHighlight: () => ReturnType;
3275
+ moodTracker: {
3276
+ insertMoodTracker: (data: MoodTrackerData) => ReturnType;
3265
3277
  };
3266
3278
  }
3267
3279
  }
@@ -3269,8 +3281,9 @@ declare module "@tiptap/core" {
3269
3281
 
3270
3282
  declare module "@tiptap/core" {
3271
3283
  interface Commands<ReturnType> {
3272
- moodTracker: {
3273
- insertMoodTracker: (data: MoodTrackerData) => ReturnType;
3284
+ aiBlock: {
3285
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
3286
+ executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
3274
3287
  };
3275
3288
  }
3276
3289
  }
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-YDkV85kH.js";
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-DUXsMmVI.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-CCNMPEHA.js";
4
4
  export {
5
5
  v as AiChatTranslationsProvider,
6
6
  t as ChatSpinner,
@@ -1362,6 +1362,7 @@ declare type CandidateProfile = {
1362
1362
  lastName: string;
1363
1363
  avatarUrl?: string;
1364
1364
  source?: string;
1365
+ appliedAt?: string;
1365
1366
  };
1366
1367
 
1367
1368
  /**
@@ -3059,6 +3060,12 @@ declare const defaultTranslations: {
3059
3060
  readonly ask: "Ask One";
3060
3061
  readonly view: "View";
3061
3062
  readonly tools: "Tools";
3063
+ readonly entityRef: {
3064
+ readonly candidate: {
3065
+ readonly source: "Source";
3066
+ readonly applied: "Applied on";
3067
+ };
3068
+ };
3062
3069
  readonly credits: {
3063
3070
  readonly title: "Credits";
3064
3071
  readonly creditsLeft: "{{total}} left";
@@ -8026,9 +8033,9 @@ declare module "gridstack" {
8026
8033
 
8027
8034
  declare module "@tiptap/core" {
8028
8035
  interface Commands<ReturnType> {
8029
- aiBlock: {
8030
- insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
8031
- executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
8036
+ enhanceHighlight: {
8037
+ setEnhanceHighlight: (from: number, to: number) => ReturnType;
8038
+ clearEnhanceHighlight: () => ReturnType;
8032
8039
  };
8033
8040
  }
8034
8041
  }
@@ -8036,9 +8043,8 @@ declare module "@tiptap/core" {
8036
8043
 
8037
8044
  declare module "@tiptap/core" {
8038
8045
  interface Commands<ReturnType> {
8039
- enhanceHighlight: {
8040
- setEnhanceHighlight: (from: number, to: number) => ReturnType;
8041
- clearEnhanceHighlight: () => ReturnType;
8046
+ moodTracker: {
8047
+ insertMoodTracker: (data: MoodTrackerData) => ReturnType;
8042
8048
  };
8043
8049
  }
8044
8050
  }
@@ -8046,8 +8052,9 @@ declare module "@tiptap/core" {
8046
8052
 
8047
8053
  declare module "@tiptap/core" {
8048
8054
  interface Commands<ReturnType> {
8049
- moodTracker: {
8050
- insertMoodTracker: (data: MoodTrackerData) => ReturnType;
8055
+ aiBlock: {
8056
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
8057
+ executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
8051
8058
  };
8052
8059
  }
8053
8060
  }
@@ -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-YDkV85kH.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-YDkV85kH.js";
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-fJsdE5rU.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-fJsdE5rU.js";
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
@@ -883,6 +883,12 @@ export declare const aiTranslations: {
883
883
  readonly ask: "Ask One";
884
884
  readonly view: "View";
885
885
  readonly tools: "Tools";
886
+ readonly entityRef: {
887
+ readonly candidate: {
888
+ readonly source: "Source";
889
+ readonly applied: "Applied on";
890
+ };
891
+ };
886
892
  readonly credits: {
887
893
  readonly title: "Credits";
888
894
  readonly creditsLeft: "{{total}} left";
@@ -1795,12 +1801,13 @@ export declare type CalendarView = "day" | "month" | "year" | "week" | "quarter"
1795
1801
  * Profile data for a candidate entity (ATS applicant), resolved asynchronously
1796
1802
  * and displayed in the entity reference hover card.
1797
1803
  */
1798
- declare type CandidateProfile = {
1804
+ export declare type CandidateProfile = {
1799
1805
  id: string | number;
1800
1806
  firstName: string;
1801
1807
  lastName: string;
1802
1808
  avatarUrl?: string;
1803
1809
  source?: string;
1810
+ appliedAt?: string;
1804
1811
  };
1805
1812
 
1806
1813
  /**
@@ -4165,6 +4172,12 @@ export declare const defaultTranslations: {
4165
4172
  readonly ask: "Ask One";
4166
4173
  readonly view: "View";
4167
4174
  readonly tools: "Tools";
4175
+ readonly entityRef: {
4176
+ readonly candidate: {
4177
+ readonly source: "Source";
4178
+ readonly applied: "Applied on";
4179
+ };
4180
+ };
4168
4181
  readonly credits: {
4169
4182
  readonly title: "Credits";
4170
4183
  readonly creditsLeft: "{{total}} left";
@@ -7022,6 +7035,190 @@ export declare function f0FormField<T extends ZodTypeAny, TConfig = undefined>(s
7022
7035
  */
7023
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>;
7024
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
+
7025
7222
  declare interface F0FormFieldCommonProps {
7026
7223
  /** Field definition (type, label, placeholder, etc.) */
7027
7224
  /** Current field value */
@@ -13350,9 +13547,9 @@ declare module "gridstack" {
13350
13547
 
13351
13548
  declare module "@tiptap/core" {
13352
13549
  interface Commands<ReturnType> {
13353
- aiBlock: {
13354
- insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
13355
- executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
13550
+ enhanceHighlight: {
13551
+ setEnhanceHighlight: (from: number, to: number) => ReturnType;
13552
+ clearEnhanceHighlight: () => ReturnType;
13356
13553
  };
13357
13554
  }
13358
13555
  }
@@ -13360,9 +13557,8 @@ declare module "@tiptap/core" {
13360
13557
 
13361
13558
  declare module "@tiptap/core" {
13362
13559
  interface Commands<ReturnType> {
13363
- enhanceHighlight: {
13364
- setEnhanceHighlight: (from: number, to: number) => ReturnType;
13365
- clearEnhanceHighlight: () => ReturnType;
13560
+ moodTracker: {
13561
+ insertMoodTracker: (data: MoodTrackerData) => ReturnType;
13366
13562
  };
13367
13563
  }
13368
13564
  }
@@ -13370,8 +13566,9 @@ declare module "@tiptap/core" {
13370
13566
 
13371
13567
  declare module "@tiptap/core" {
13372
13568
  interface Commands<ReturnType> {
13373
- moodTracker: {
13374
- insertMoodTracker: (data: MoodTrackerData) => ReturnType;
13569
+ aiBlock: {
13570
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
13571
+ executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
13375
13572
  };
13376
13573
  }
13377
13574
  }
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-YDkV85kH.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-YDkV85kH.js";
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-DUXsMmVI.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-DUXsMmVI.js";
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-fJsdE5rU.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-fJsdE5rU.js";
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,
@@ -415,6 +415,12 @@ export declare const defaultTranslations: {
415
415
  readonly ask: "Ask One";
416
416
  readonly view: "View";
417
417
  readonly tools: "Tools";
418
+ readonly entityRef: {
419
+ readonly candidate: {
420
+ readonly source: "Source";
421
+ readonly applied: "Applied on";
422
+ };
423
+ };
418
424
  readonly credits: {
419
425
  readonly title: "Credits";
420
426
  readonly creditsLeft: "{{total}} left";
@@ -801,9 +807,9 @@ declare module "gridstack" {
801
807
 
802
808
  declare module "@tiptap/core" {
803
809
  interface Commands<ReturnType> {
804
- aiBlock: {
805
- insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
806
- executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
810
+ enhanceHighlight: {
811
+ setEnhanceHighlight: (from: number, to: number) => ReturnType;
812
+ clearEnhanceHighlight: () => ReturnType;
807
813
  };
808
814
  }
809
815
  }
@@ -811,9 +817,8 @@ declare module "@tiptap/core" {
811
817
 
812
818
  declare module "@tiptap/core" {
813
819
  interface Commands<ReturnType> {
814
- enhanceHighlight: {
815
- setEnhanceHighlight: (from: number, to: number) => ReturnType;
816
- clearEnhanceHighlight: () => ReturnType;
820
+ moodTracker: {
821
+ insertMoodTracker: (data: MoodTrackerData) => ReturnType;
817
822
  };
818
823
  }
819
824
  }
@@ -821,8 +826,9 @@ declare module "@tiptap/core" {
821
826
 
822
827
  declare module "@tiptap/core" {
823
828
  interface Commands<ReturnType> {
824
- moodTracker: {
825
- insertMoodTracker: (data: MoodTrackerData) => ReturnType;
829
+ aiBlock: {
830
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
831
+ executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
826
832
  };
827
833
  }
828
834
  }
@@ -415,6 +415,12 @@ const e = {
415
415
  ask: "Ask One",
416
416
  view: "View",
417
417
  tools: "Tools",
418
+ entityRef: {
419
+ candidate: {
420
+ source: "Source",
421
+ applied: "Applied on"
422
+ }
423
+ },
418
424
  credits: {
419
425
  title: "Credits",
420
426
  creditsLeft: "{{total}} left",
@@ -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-YDkV85kH.js";
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-YDkV85kH.js";
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]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@factorialco/f0-react",
3
- "version": "1.461.1",
3
+ "version": "1.463.0",
4
4
  "private": false,
5
5
  "files": [
6
6
  "assets",