@factorialco/f0-react 2.27.0 → 2.28.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
@@ -4174,11 +4174,6 @@ declare module "gridstack" {
4174
4174
  }
4175
4175
 
4176
4176
 
4177
- declare namespace Calendar {
4178
- var displayName: string;
4179
- }
4180
-
4181
-
4182
4177
  declare module "@tiptap/core" {
4183
4178
  interface Commands<ReturnType> {
4184
4179
  aiBlock: {
@@ -4210,8 +4205,10 @@ declare module "@tiptap/core" {
4210
4205
 
4211
4206
  declare module "@tiptap/core" {
4212
4207
  interface Commands<ReturnType> {
4213
- transcript: {
4214
- insertTranscript: (data: TranscriptData) => ReturnType;
4208
+ videoEmbed: {
4209
+ setVideoEmbed: (options: {
4210
+ src: string;
4211
+ }) => ReturnType;
4215
4212
  };
4216
4213
  }
4217
4214
  }
@@ -4219,15 +4216,18 @@ declare module "@tiptap/core" {
4219
4216
 
4220
4217
  declare module "@tiptap/core" {
4221
4218
  interface Commands<ReturnType> {
4222
- videoEmbed: {
4223
- setVideoEmbed: (options: {
4224
- src: string;
4225
- }) => ReturnType;
4219
+ transcript: {
4220
+ insertTranscript: (data: TranscriptData) => ReturnType;
4226
4221
  };
4227
4222
  }
4228
4223
  }
4229
4224
 
4230
4225
 
4226
+ declare namespace Calendar {
4227
+ var displayName: string;
4228
+ }
4229
+
4230
+
4231
4231
  declare namespace F0GraphNodeWrapperInner {
4232
4232
  var displayName: string;
4233
4233
  }
package/dist/ai.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { D as e, F as r, a as t, e as i, f as o, c as n, d as F, I as C, P as A, b as l, u } from "./F0CanvasPanel-5xCiLQgH.js";
2
2
  import { defaultTranslations as m } from "./i18n-provider-defaults.js";
3
- import { A as c, C as I, h as P, s as v, t as f, w as p, m as T, j as g, q as y, x as S, p as x, r as H, k as V, e as b, g as M, l as O, F as k, i as w, a as D, n as j, o as q, b as z, f as B, v as E, c as L, d as G, u as J } from "./useChatHistory-Cq8UdI6Q.js";
3
+ import { A as c, C as I, h as P, s as v, t as f, w as p, m as T, j as g, q as y, x as S, p as x, r as H, k as V, e as b, g as M, l as O, F as k, i as w, a as D, n as j, o as q, b as z, f as B, v as E, c as L, d as G, u as J } from "./useChatHistory-D6KnQGF3.js";
4
4
  export {
5
5
  c as AiChatTranslationsProvider,
6
6
  I as ChatSpinner,
@@ -8539,11 +8539,6 @@ declare module "gridstack" {
8539
8539
  }
8540
8540
 
8541
8541
 
8542
- declare namespace Calendar {
8543
- var displayName: string;
8544
- }
8545
-
8546
-
8547
8542
  declare module "@tiptap/core" {
8548
8543
  interface Commands<ReturnType> {
8549
8544
  aiBlock: {
@@ -8575,8 +8570,10 @@ declare module "@tiptap/core" {
8575
8570
 
8576
8571
  declare module "@tiptap/core" {
8577
8572
  interface Commands<ReturnType> {
8578
- transcript: {
8579
- insertTranscript: (data: TranscriptData) => ReturnType;
8573
+ videoEmbed: {
8574
+ setVideoEmbed: (options: {
8575
+ src: string;
8576
+ }) => ReturnType;
8580
8577
  };
8581
8578
  }
8582
8579
  }
@@ -8584,15 +8581,18 @@ declare module "@tiptap/core" {
8584
8581
 
8585
8582
  declare module "@tiptap/core" {
8586
8583
  interface Commands<ReturnType> {
8587
- videoEmbed: {
8588
- setVideoEmbed: (options: {
8589
- src: string;
8590
- }) => ReturnType;
8584
+ transcript: {
8585
+ insertTranscript: (data: TranscriptData) => ReturnType;
8591
8586
  };
8592
8587
  }
8593
8588
  }
8594
8589
 
8595
8590
 
8591
+ declare namespace Calendar {
8592
+ var displayName: string;
8593
+ }
8594
+
8595
+
8596
8596
  declare namespace F0GraphNodeWrapperInner {
8597
8597
  var displayName: string;
8598
8598
  }
package/dist/f0.d.ts CHANGED
@@ -1544,10 +1544,13 @@ export declare type BorderStyleToken = "solid" | "dashed" | "dotted" | "double"
1544
1544
  /** Border width tokens */
1545
1545
  export declare type BorderWidthToken = "none" | "default" | "thick";
1546
1546
 
1547
+ export declare type BoxShadowToken = "none" | "md" | "lg" | "xl";
1548
+
1547
1549
  declare type BoxVariantProps = VariantProps<typeof boxVariants>;
1548
1550
 
1549
1551
  declare const boxVariants: (props?: ({
1550
1552
  zIndex?: "0" | "auto" | "10" | "20" | "50" | "40" | "30" | undefined;
1553
+ boxShadow?: "none" | "lg" | "md" | "xl" | undefined;
1551
1554
  divider?: "x" | "y" | undefined;
1552
1555
  dividerColor?: "info" | "bold" | "default" | "secondary" | "critical" | "warning" | "positive" | "promote" | "selected" | "critical-bold" | "info-bold" | "warning-bold" | "positive-bold" | "selected-bold" | undefined;
1553
1556
  overflow?: "hidden" | "auto" | "scroll" | "visible" | undefined;
@@ -15086,11 +15089,6 @@ declare module "gridstack" {
15086
15089
  }
15087
15090
 
15088
15091
 
15089
- declare namespace Calendar {
15090
- var displayName: string;
15091
- }
15092
-
15093
-
15094
15092
  declare module "@tiptap/core" {
15095
15093
  interface Commands<ReturnType> {
15096
15094
  aiBlock: {
@@ -15122,8 +15120,10 @@ declare module "@tiptap/core" {
15122
15120
 
15123
15121
  declare module "@tiptap/core" {
15124
15122
  interface Commands<ReturnType> {
15125
- transcript: {
15126
- insertTranscript: (data: TranscriptData) => ReturnType;
15123
+ videoEmbed: {
15124
+ setVideoEmbed: (options: {
15125
+ src: string;
15126
+ }) => ReturnType;
15127
15127
  };
15128
15128
  }
15129
15129
  }
@@ -15131,15 +15131,18 @@ declare module "@tiptap/core" {
15131
15131
 
15132
15132
  declare module "@tiptap/core" {
15133
15133
  interface Commands<ReturnType> {
15134
- videoEmbed: {
15135
- setVideoEmbed: (options: {
15136
- src: string;
15137
- }) => ReturnType;
15134
+ transcript: {
15135
+ insertTranscript: (data: TranscriptData) => ReturnType;
15138
15136
  };
15139
15137
  }
15140
15138
  }
15141
15139
 
15142
15140
 
15141
+ declare namespace Calendar {
15142
+ var displayName: string;
15143
+ }
15144
+
15145
+
15143
15146
  declare namespace F0GraphNodeWrapperInner {
15144
15147
  var displayName: string;
15145
15148
  }
package/dist/f0.js CHANGED
@@ -3,8 +3,8 @@ import { gg as Cme, D as Tme, aM as Dme, F as Ame, a as Mme, e as Eme, b0 as Lme
3
3
  import { jsx as w, jsxs as B, Fragment as kt } from "react/jsx-runtime";
4
4
  import * as Yn from "react";
5
5
  import He, { forwardRef as Jr, useRef as se, useImperativeHandle as EH, Children as Yv, createContext as en, useContext as _r, useState as ye, useMemo as ae, useEffect as _e, useCallback as te, useLayoutEffect as Zb, createElement as Xd, isValidElement as Lk, Fragment as Ig, memo as Nk, useReducer as LH, cloneElement as NH, useId as kg } from "react";
6
- import { y as IH, z as kH, U as nT, D as iT, B as $m, E as aT, G as RH, H as Oa, I as nl, J as PH, K as Gw, L as Rr, M as fi, N as OH, O as BH, P as Ik, Z as Ho, Q as VH, R as FH, S as zH, T as kk, V as Xv, W as Hw, X as Rk, Y as Pk, _ as pn, $ as GH, a0 as HH, a1 as Ok, a2 as Rg, a3 as WH, a4 as UH, a5 as Bk, a6 as $H, a7 as YH, a8 as XH, a9 as qH, aa as ZH, ab as jH, F as KH } from "./useChatHistory-Cq8UdI6Q.js";
7
- import { A as Sye, C as Cye, h as Tye, s as Dye, t as Aye, w as Mye, ag as Eye, m as Lye, j as Nye, q as Iye, x as kye, p as Rye, r as Pye, k as Oye, e as Bye, g as Vye, l as Fye, i as zye, a as Gye, n as Hye, ah as Wye, ae as Uye, ad as $ye, af as Yye, o as Xye, ac as qye, b as Zye, f as jye, v as Kye, c as Qye, d as Jye, u as e0e } from "./useChatHistory-Cq8UdI6Q.js";
6
+ import { y as IH, z as kH, U as nT, D as iT, B as $m, E as aT, G as RH, H as Oa, I as nl, J as PH, K as Gw, L as Rr, M as fi, N as OH, O as BH, P as Ik, Z as Ho, Q as VH, R as FH, S as zH, T as kk, V as Xv, W as Hw, X as Rk, Y as Pk, _ as pn, $ as GH, a0 as HH, a1 as Ok, a2 as Rg, a3 as WH, a4 as UH, a5 as Bk, a6 as $H, a7 as YH, a8 as XH, a9 as qH, aa as ZH, ab as jH, F as KH } from "./useChatHistory-D6KnQGF3.js";
7
+ import { A as Sye, C as Cye, h as Tye, s as Dye, t as Aye, w as Mye, ag as Eye, m as Lye, j as Nye, q as Iye, x as kye, p as Rye, r as Pye, k as Oye, e as Bye, g as Vye, l as Fye, i as zye, a as Gye, n as Hye, ah as Wye, ae as Uye, ad as $ye, af as Yye, o as Xye, ac as qye, b as Zye, f as jye, v as Kye, c as Qye, d as Jye, u as e0e } from "./useChatHistory-D6KnQGF3.js";
8
8
  import { createPortal as Vk, unstable_batchedUpdates as qd, flushSync as QH } from "react-dom";
9
9
  import { C as JH, y as eW, b as Fk, W as jb, X as zk, al as Gk, Z as Hk, aj as tW, _ as rW, a0 as Wk, a1 as Ww, am as nW, an as Uw, ae as iW, ao as aW, ap as oW, e as Pg, aq as sW, R as $w, u as Yw, $ as Uk, O as Xw, ar as lW, as as $k, i as Gu, m as Hu, p as md, at as qw, z as uW, j as cW, a9 as Yk, a4 as Xk, au as fW, av as dW, aw as hW, ax as vW, ay as pW, M as gW } from "./useDataCollectionSource-DtX_WySE.js";
10
10
  import { E as r0e, G as n0e, H as i0e, Q as a0e, aE as o0e, F as s0e, aC as l0e, ak as u0e, I as c0e, ag as f0e, ah as d0e, af as h0e, ai as v0e, J as p0e, P as g0e, N as m0e, T as y0e, K as b0e, U as x0e, w as _0e, x as w0e, az as S0e, aA as C0e, aB as T0e, aD as D0e, ac as A0e, Y as M0e, aF as E0e, aG as L0e, aH as N0e, h as I0e } from "./useDataCollectionSource-DtX_WySE.js";
@@ -841,11 +841,6 @@ declare module "gridstack" {
841
841
  }
842
842
 
843
843
 
844
- declare namespace Calendar {
845
- var displayName: string;
846
- }
847
-
848
-
849
844
  declare module "@tiptap/core" {
850
845
  interface Commands<ReturnType> {
851
846
  aiBlock: {
@@ -877,8 +872,10 @@ declare module "@tiptap/core" {
877
872
 
878
873
  declare module "@tiptap/core" {
879
874
  interface Commands<ReturnType> {
880
- transcript: {
881
- insertTranscript: (data: TranscriptData) => ReturnType;
875
+ videoEmbed: {
876
+ setVideoEmbed: (options: {
877
+ src: string;
878
+ }) => ReturnType;
882
879
  };
883
880
  }
884
881
  }
@@ -886,15 +883,18 @@ declare module "@tiptap/core" {
886
883
 
887
884
  declare module "@tiptap/core" {
888
885
  interface Commands<ReturnType> {
889
- videoEmbed: {
890
- setVideoEmbed: (options: {
891
- src: string;
892
- }) => ReturnType;
886
+ transcript: {
887
+ insertTranscript: (data: TranscriptData) => ReturnType;
893
888
  };
894
889
  }
895
890
  }
896
891
 
897
892
 
893
+ declare namespace Calendar {
894
+ var displayName: string;
895
+ }
896
+
897
+
898
898
  declare namespace F0GraphNodeWrapperInner {
899
899
  var displayName: string;
900
900
  }